Compare commits

...

6 Commits

3 changed files with 4 additions and 5 deletions

View File

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

View File

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

View File

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