diff --git a/src/views/modules/appManage/advertisement-add-or-update.vue b/src/views/modules/appManage/advertisement-add-or-update.vue new file mode 100644 index 0000000..1cc5104 --- /dev/null +++ b/src/views/modules/appManage/advertisement-add-or-update.vue @@ -0,0 +1,440 @@ + + + + + diff --git a/src/views/modules/appManage/advertisement.vue b/src/views/modules/appManage/advertisement.vue new file mode 100644 index 0000000..f99619c --- /dev/null +++ b/src/views/modules/appManage/advertisement.vue @@ -0,0 +1,386 @@ + + + diff --git a/src/views/modules/appManage/shopproductTable.vue b/src/views/modules/appManage/shopproductTable.vue new file mode 100644 index 0000000..42478cb --- /dev/null +++ b/src/views/modules/appManage/shopproductTable.vue @@ -0,0 +1,350 @@ + + + + \ No newline at end of file diff --git a/src/views/modules/book/book.vue b/src/views/modules/book/book.vue index ccbdaf5..f17658f 100644 --- a/src/views/modules/book/book.vue +++ b/src/views/modules/book/book.vue @@ -20,7 +20,7 @@ - + - + - - - + + + + - + diff --git a/src/views/modules/book/bookchapter.vue b/src/views/modules/book/bookchapter.vue index a3b2ba8..be7f531 100644 --- a/src/views/modules/book/bookchapter.vue +++ b/src/views/modules/book/bookchapter.vue @@ -1,5 +1,6 @@ @@ -132,7 +135,8 @@ totalPage: 0, dataListLoading: false, dataListSelections: [], - addOrUpdateVisible: false + addOrUpdateVisible: false, + bookInfo:{}, } }, components: { @@ -147,6 +151,7 @@ this.upPageIndex = this.$route.query.pageIndex; console.log(this.bookid) this.getDataList() + this.getInfo() }, methods: { // 获取数据列表 @@ -172,6 +177,19 @@ this.dataListLoading = false }) }, + // 获取数据列表 + getInfo () { + + this.$http({ + url: this.$http.adornUrl(`/book/book/info/${this.$route.query.id}`), + method: 'post', + + }).then(({data}) => { + console.log('data at line 182:', data) + this.bookInfo=data.book + + }) + }, // 每页数 sizeChangeHandle (val) { this.pageSize = val