Commit ba8e1dbb authored by 786817560's avatar 786817560

Merge branch 'ren' into develop

parents 8d98250c acc42ddc
......@@ -97,15 +97,22 @@ export default {
}
},
watch: {
'num': {
handler (newVal, oldVal) {
if (newVal === 2) {
if (!this.approvedFlag) {
this.getLists()
}
// 'num': {
// handler (newVal, oldVal) {
// if (newVal === 2) {
// if (!this.approvedFlag) {
// this.getLists()
// }
// }
// },
// immediate: true,
// },
num () {
if (this.num === 2) {
if (!this.approvedFlag) {
this.getLists()
}
},
immediate: true,
}
},
searchInput () {
let vm = this
......@@ -199,6 +206,7 @@ export default {
}
},
loadMore () {
console.log('lodeMore')
let vm = this
if (vm.num === 1) {
vm.submitPagenum++
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment