|
@@ -123,13 +123,16 @@ export default {
|
|
|
// 列表
|
|
|
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
|
|
|
- }
|
|
|
- })
|
|
|
+ // 后端延迟
|
|
|
+ setTimeout(() => {
|
|
|
+ list(this.form).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ this.tableData = res.data.records
|
|
|
+ this.total = res.data.total
|
|
|
+ this.loading = false
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }, 300);
|
|
|
},
|
|
|
|
|
|
// 搜索
|