|
@@ -126,7 +126,7 @@ export default {
|
|
|
{ id: 'test3', name: '下级分项' },
|
|
|
{ id: 'test4', name: '滑动平均滑动平均' }
|
|
|
],
|
|
|
- page: 1,
|
|
|
+ // page: 1,
|
|
|
size: 10,
|
|
|
total: 1,
|
|
|
sbjc: '',
|
|
@@ -149,7 +149,7 @@ export default {
|
|
|
computed: {
|
|
|
...mapGetters(['floorSelect'])
|
|
|
},
|
|
|
- props: ['row', 'major'],
|
|
|
+ props: ['row', 'major','sonpage'],
|
|
|
mounted() {
|
|
|
this.queryTableList()
|
|
|
this.tabFind()
|
|
@@ -164,7 +164,9 @@ export default {
|
|
|
},
|
|
|
//序号的方法
|
|
|
indexMethod(index) {
|
|
|
- return (this.page - 1) * this.size + index + 1
|
|
|
+ if(this.sonpage){
|
|
|
+ return (this.sonpage - 1) * this.size + index + 1
|
|
|
+ }
|
|
|
},
|
|
|
//多余输入框监听
|
|
|
confirm(fws, manufacturer) {
|
|
@@ -231,7 +233,7 @@ export default {
|
|
|
})
|
|
|
},
|
|
|
pageChanged(page) {
|
|
|
- this.page = page
|
|
|
+ this.sonpage = page
|
|
|
this.queryTableList()
|
|
|
},
|
|
|
queryTableList() {
|
|
@@ -252,7 +254,7 @@ export default {
|
|
|
let data = {
|
|
|
major: major,
|
|
|
plazaId: this.$store.state.plazaId,
|
|
|
- page: this.page,
|
|
|
+ page: this.sonpage,
|
|
|
size: this.size
|
|
|
}
|
|
|
//输入框搜索
|