zhangyu 2 years ago
parent
commit
ec6a49ad87
  1. 7
      src/views/index.vue
  2. 2
      src/views/module/bookDetails.vue

7
src/views/index.vue

@ -11,7 +11,7 @@
</div>
<!-- 智慧书架导航 -->
<ul class="book-nav">
<li>
<li @click="toSearch">
<img src="~@/assets/images/home/nav1.png" />
<p>图书检索</p>
</li>
@ -93,6 +93,9 @@ export default {
mounted() {
},
methods: {
toSearch() {
window.location.href = 'http://219.140.69.151/opac'
},
toPath(path) {
if (path === '/CurrentRackBook') {
const query = { leftShelfNo: this.leftShelfNo, rightShelfNo: this.rightShelfNo }
@ -103,7 +106,7 @@ export default {
},
toRoomNav() {
const linkSrc = process.env.VUE_APP_BASE_API
window.location.href = linkSrc + '/anchoring/initVenueNavigation.do?libcode='+this.libcode
window.location.href = linkSrc + '/anchoring/initVenueNavigation.do?libcode=' + this.libcode
},
// -
getNewBookList() {

2
src/views/module/bookDetails.vue

@ -59,7 +59,7 @@ export default {
methods: {
toBookNav(index) {
const linkSrc = process.env.VUE_APP_BASE_API
window.location.href = linkSrc + '/anchoring/goNavigation.do?=libcode' + this.libcode + '&eqmNo=001&barcode=' + this.bookData.places[index].barcode
window.location.href = linkSrc + '/anchoring/goNavigation.do?libcode=' + this.libcode + '&eqmNo=001&barcode=' + this.bookData.places[index].barcode
}
}
}

Loading…
Cancel
Save