Compare commits

..

No commits in common. "e1eee3c03004e52eb59cefbe8081929c3e5108cf" and "8a75afdf81bb760db3798341090b4327beb5f847" have entirely different histories.

3 changed files with 5 additions and 4 deletions

View File

@ -366,8 +366,8 @@ export default {
this.loading = true
getAzFrameworkList(this.queryParams).then((res) => {
if (res.code === 200) {
this.tableData = res.rows
this.total = res.total
this.tableData = res.data.rows
this.total = res.data.total
}
}).finally(() => {
this.loading = false

View File

@ -370,6 +370,7 @@ export default {
onExpand(e, data) {
},
getSearch() {
console.log(this.queryParams, '...this.')
if (!this.queryParams.childNode || !this.queryParams.memberCode) {
this.$message.warning('会员编号和子点位不能为空')
return

View File

@ -172,8 +172,8 @@ export default {
this.loading = true
getMemberPointList(this.queryParams).then((res) => {
if (res.code === 200) {
this.tableData = res.rows
this.total = res.total
this.tableData = res.data.rows
this.total = res.data.total
}
}).finally(() => {
this.loading = false