This commit is contained in:
熊成强 2020-11-23 11:20:50 +08:00
parent 888a476141
commit 707f3b753c

View File

@ -156,10 +156,10 @@ export default {
this.$loadingStart() this.$loadingStart()
let res = await apiGetAssessList(parmas) let res = await apiGetAssessList(parmas)
this.$loadingEnd() this.$loadingEnd()
res = res.data if (res.code !== 200) return this.$message.error(res.msg)
this.tableData = res.list this.tableData = res.data.list
this.params.totalCount = res.totalCount this.params.totalCount = res.data.totalCount
this.params.currPage = res.currPage this.params.currPage = res.data.currPage
} catch (error) { } catch (error) {
console.log('error: ', error) console.log('error: ', error)
} }