更改微信提现状态

master
pikachu 2021-07-27 19:45:46 +08:00
parent 83f0f01233
commit 083576ab3f
1 changed files with 6 additions and 6 deletions

View File

@ -37,8 +37,8 @@
</FormItem> </FormItem>
<FormItem label="是否通过" prop="result" v-if="handleStatus =='edit'"> <FormItem label="是否通过" prop="result" v-if="handleStatus =='edit'">
<RadioGroup v-model="result" type="button" button-style="solid"> <RadioGroup v-model="result" type="button" button-style="solid">
<Radio label="PASS">通过</Radio> <Radio label="VIA_AUDITING">通过</Radio>
<Radio label="REFUSE">拒绝</Radio> <Radio label="FAIL_AUDITING">拒绝</Radio>
</RadioGroup> </RadioGroup>
</FormItem> </FormItem>
</Form> </Form>
@ -64,7 +64,7 @@ export default {
loading: true, // loading: true, //
modalVisible: false, // modalVisible: false, //
modalTitle: "", // modalTitle: "", //
result: 'REFUSE', // result: 'FAIL_AUDITING', //
searchForm: { // searchForm: { //
pageNumber: 1, // pageNumber: 1, //
pageSize: 10, // pageSize: 10, //
@ -115,10 +115,10 @@ export default {
if (params.row.distributionCashStatus == 'APPLY') { if (params.row.distributionCashStatus == 'APPLY') {
return h("div", "待处理"); return h("div", "待处理");
} }
if (params.row.distributionCashStatus == 'PASS') { if (params.row.distributionCashStatus == 'VIA_AUDITING') {
return h("div", "通过"); return h("div", "通过");
} }
if (params.row.distributionCashStatus == 'REFUSE') { if (params.row.distributionCashStatus == 'FAIL_AUDITING') {
return h("div", "审核拒绝"); return h("div", "审核拒绝");
} }
}, },
@ -220,7 +220,7 @@ export default {
// //
handleSubmit() { handleSubmit() {
let result = "拒绝" let result = "拒绝"
if(this.result == 'PASS'){ if(this.result == 'VIA_AUDITING'){
result = "通过" result = "通过"
} }
this.$refs.form.validate(valid => { this.$refs.form.validate(valid => {