提交 8c8064922ca4aab44428aa6b16e310b72d26dcf2

作者 guomingshu
1 个父辈 f7526270

feat: 审核审批参数更改

... ... @@ -192,7 +192,7 @@
192 192
193 193 handelCancel() {
194 194 putRegistrationReviewApi({
195   - formIds: [this.registrationDetail.id],
  195 + ids: [this.registrationDetail.id],
196 196 status: 'reject',
197 197 }).then(data => {
198 198 if (data) {
... ... @@ -205,7 +205,7 @@
205 205
206 206 hancelSubmit() {
207 207 putRegistrationReviewApi({
208   - formIds: [this.registrationDetail.id],
  208 + ids: [this.registrationDetail.id],
209 209 status: 'pass',
210 210 }).then(data => {
211 211 if (data) {
... ...
... ... @@ -84,10 +84,11 @@
84 84 // this.loading = "loadmore";
85 85 // this.page = 0;
86 86 // this.list = [];
87   - this._getList();
  87 +
88 88 },
89 89
90 90 onShow() {
  91 + this._getList();
91 92 if (this.hasLogin) {
92 93
93 94 }
... ...
注册登录 后发表评论