Compare commits
No commits in common. "e1eee3c03004e52eb59cefbe8081929c3e5108cf" and "8a75afdf81bb760db3798341090b4327beb5f847" have entirely different histories.
e1eee3c030
...
8a75afdf81
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue