diff --git a/lvdao-miniapp/pages/accepting/accepting.vue b/lvdao-miniapp/pages/accepting/accepting.vue index 461ab0e..988b37b 100644 --- a/lvdao-miniapp/pages/accepting/accepting.vue +++ b/lvdao-miniapp/pages/accepting/accepting.vue @@ -4,7 +4,7 @@ - + {{ diff --git a/lvdao-miniapp/pages/complaint/complaint.vue b/lvdao-miniapp/pages/complaint/complaint.vue index b115aac..12c7b63 100644 --- a/lvdao-miniapp/pages/complaint/complaint.vue +++ b/lvdao-miniapp/pages/complaint/complaint.vue @@ -143,13 +143,15 @@ } this.ruleForm.applicationTime = this.currentTime() this.ruleForm.createUser = uni.getStorageSync('user').phone - this.ruleForm.onSitePhoto.map(item=>{ - item.replace(this.$img,'') + this.ruleForm.onSitePhoto = this.ruleForm.onSitePhoto.map(item=>{ + return item.replace(this.$img,''); }) + let info = { ...this.ruleForm, onSitePhoto:this.ruleForm.onSitePhoto.join(','), } + this.$http.sendRequest('/cereComplaintsSuggestions/add', 'POST',info,1).then(res => { uni.navigateTo({ url: '/pages/serve/serve' diff --git a/lvdao-miniapp/pages/record/record.vue b/lvdao-miniapp/pages/record/record.vue index 7b905a9..9696aaf 100644 --- a/lvdao-miniapp/pages/record/record.vue +++ b/lvdao-miniapp/pages/record/record.vue @@ -28,20 +28,21 @@ return { recordList:'', pageindex: { + auditStatus:1, pageNumber: 0, pageSize: 10 }, activesType: [ { - value: 0, - label: '商铺申请记录' - },{ value: 1, - label: '场地申请记录' + label: '待审核' + },{ + value:2, + label: '待签约' }, { - value: 2, - label: '广告位申请记录' + value: 3, + label: '已驳回' } ], typeShow:false, @@ -71,19 +72,9 @@ }) }, typeChange(e) { - this.pageindex.start = e[0].labels - if(e[0].value == 2){ - this.$http.sendRequest('/cereAdvertiserInfo/queryByPage', 'POST', this.pageindex, 1).then(item => { - this.recordList = item.data.data.content - }) - }else{ - this.$http.sendRequest('/cereBusinessInfo/queryByPage', 'POST', this.pageindex,1).then(res => { - this.recordList = res.data.data.content - }) - } - - this.getALL() + this.pageindex.auditStatus = e[0].value + this.getALL() }, } } diff --git a/lvdao-miniapp/pages/repair/repair.vue b/lvdao-miniapp/pages/repair/repair.vue index cfe2824..55abd1f 100644 --- a/lvdao-miniapp/pages/repair/repair.vue +++ b/lvdao-miniapp/pages/repair/repair.vue @@ -5,7 +5,7 @@