返回正确状态码
parent
419c30bc45
commit
03a1881fa6
|
@ -78,6 +78,9 @@ export default {
|
||||||
limit: 10,
|
limit: 10,
|
||||||
total: 0
|
total: 0
|
||||||
},
|
},
|
||||||
|
listLoading: false,
|
||||||
|
KEYWORDS: '',
|
||||||
|
varList: [],
|
||||||
add: false, // 新增按钮
|
add: false, // 新增按钮
|
||||||
del: false, // 删除按钮
|
del: false, // 删除按钮
|
||||||
edit: false // 修改按钮
|
edit: false // 修改按钮
|
||||||
|
@ -109,28 +112,20 @@ export default {
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
goKeyReset() {
|
goKeyReset() {
|
||||||
this.KEYWORDS = ''
|
|
||||||
this.STATUS = ''
|
this.STATUS = ''
|
||||||
this.getQuery()
|
this.getQuery()
|
||||||
},
|
},
|
||||||
getList() {
|
getList() {
|
||||||
this.listLoading = true
|
this.listLoading = true
|
||||||
requestFN(
|
requestFN(
|
||||||
'/dingWei/getMapList?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page,
|
'/dingWei/getMapList?showCount=' + this.listQuery.limit + '¤tPage=' + this.listQuery.page, {}
|
||||||
{
|
|
||||||
KEYWORDS: this.KEYWORDS,
|
|
||||||
STATUS: '1',
|
|
||||||
EMPLOY_FLAG: '1',
|
|
||||||
CHECK_STATUS: '1'
|
|
||||||
}
|
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
this.listLoading = false
|
this.listLoading = false
|
||||||
this.varList = data.list
|
this.varList = data.list
|
||||||
this.total = data.page.totalResult
|
this.total = data.page.total
|
||||||
|
}).catch((e) => {
|
||||||
|
this.listLoading = false
|
||||||
})
|
})
|
||||||
.catch((e) => {
|
|
||||||
this.listLoading = false
|
|
||||||
})
|
|
||||||
},
|
},
|
||||||
handleAdd() {
|
handleAdd() {
|
||||||
const _selectData = this.$refs.multipleTable.selection
|
const _selectData = this.$refs.multipleTable.selection
|
||||||
|
|
Loading…
Reference in New Issue