|
@@ -92,10 +92,12 @@ export default {
|
|
methods: {
|
|
methods: {
|
|
// 列表
|
|
// 列表
|
|
getList() {
|
|
getList() {
|
|
|
|
+ this.loading = true
|
|
list(this.form).then(res => {
|
|
list(this.form).then(res => {
|
|
if (res.code === 0) {
|
|
if (res.code === 0) {
|
|
this.tableData = res.data.records
|
|
this.tableData = res.data.records
|
|
this.total = res.data.total
|
|
this.total = res.data.total
|
|
|
|
+ this.loading = false
|
|
}
|
|
}
|
|
})
|
|
})
|
|
},
|
|
},
|