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