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