1
This commit is contained in:
@ -35,6 +35,9 @@
|
||||
</template>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
<el-form-item v-if="form.status==='approved'" label="交易Hash" prop="hash">
|
||||
<el-input v-model="form.hash" placeholder="交易Hash" />
|
||||
</el-form-item>
|
||||
<el-form-item label="备注" prop="remark">
|
||||
<el-input v-model="form.remark" type="textarea" maxlength="200" show-word-limit placeholder="备注" />
|
||||
</el-form-item>
|
||||
@ -118,7 +121,7 @@ export default {
|
||||
this.loading = false
|
||||
})
|
||||
} else if (this.form.status === 'approved') { //确认提现
|
||||
confirm({ id: this.form.id, confirmVal: this.form.approveStatus, remark: this.form.remark }).then(res => {
|
||||
confirm({ id: this.form.id, confirmVal: this.form.approveStatus, remark: this.form.remark ,hash:this.form.hash}).then(res => {
|
||||
console.log("res", res)
|
||||
if (res.code === 200) {
|
||||
this.msgSuccess(res.msg)
|
||||
|
||||
Reference in New Issue
Block a user