|
|
@ -34,7 +34,7 @@ |
|
|
|
<span>当前图书暂未查到位置信息</span> |
|
|
|
</li> |
|
|
|
<!-- --> |
|
|
|
<li v-for="(item,index) in bookData.places" v-else :key="index" class="local-list-info" @click="toBookNav( bookData.barcode)"> |
|
|
|
<li v-for="(item,index) in bookData.places" v-else :key="index" class="local-list-info" @click="toBookNav(index)"> |
|
|
|
<svg class="icon svg-icon" aria-hidden="true"> |
|
|
|
<use xlink:href="#icon-weizhi" /> |
|
|
|
</svg> |
|
|
@ -61,9 +61,9 @@ export default { |
|
|
|
created() { |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
toBookNav(barcode) { |
|
|
|
toBookNav(index) { |
|
|
|
const linkSrc = process.env.VUE_APP_BASE_API |
|
|
|
window.location.href = linkSrc + '/anchoring/goNavigation.do?libcode=1201&eqmNo=001&barcode=' + barcode |
|
|
|
window.location.href = linkSrc + '/anchoring/goNavigation.do?libcode=1201&eqmNo=001&barcode=' + this.bookData.places[index].barcode |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|