115 lines
2.7 KiB
Vue
115 lines
2.7 KiB
Vue
<template>
|
|
<el-dialog
|
|
title="审核"
|
|
:visible.sync="dialogVisible"
|
|
width="500px"
|
|
append-to-body
|
|
@open="handleOpen"
|
|
>
|
|
<el-form :model="form" :rules="rules" ref="form" label-width="6em" v-loading="loading" size="small">
|
|
<el-form-item label="审核意见" prop="remark">
|
|
<el-input v-model="form.remark" type="textarea" placeholder="请输入审核意见" show-word-limit maxlength="200" />
|
|
</el-form-item>
|
|
</el-form>
|
|
<div slot="footer" class="dialog-footer">
|
|
<el-button type="primary" @click="handleSubmit(true)">通过</el-button>
|
|
<el-button type="danger" @click="handleSubmit(false)">驳回</el-button>
|
|
</div>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script>
|
|
import {getOrder, verifyOrder} from '@/api/bst/order'
|
|
|
|
export default {
|
|
props: {
|
|
id: {
|
|
type: String,
|
|
default: ''
|
|
},
|
|
visible: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
detail: {},
|
|
form: {},
|
|
loading: false,
|
|
rules: {
|
|
remark: [
|
|
{ required: true, message: '请输入备注', trigger: 'blur' },
|
|
],
|
|
}
|
|
}
|
|
},
|
|
computed: {
|
|
dialogVisible: {
|
|
get() {
|
|
return this.visible;
|
|
},
|
|
set(val) {
|
|
this.$emit('update:visible', val);
|
|
}
|
|
},
|
|
// 可退款金额
|
|
canRefundAmount() {
|
|
let payAmount = this.detail.payAmount || 0;
|
|
let payRefunded = this.detail.payRefunded || 0;
|
|
let payRefunding = this.detail.payRefunding || 0;
|
|
return payAmount - payRefunded - payRefunding;
|
|
}
|
|
},
|
|
methods: {
|
|
getDetail() {
|
|
this.loading = true;
|
|
getOrder(this.id).then(response => {
|
|
this.detail = response.data;
|
|
this.form.amount = this.canRefundAmount;
|
|
}).finally(() => {
|
|
this.loading = false;
|
|
});
|
|
},
|
|
handleOpen() {
|
|
this.getDetail();
|
|
this.reset();
|
|
},
|
|
reset() {
|
|
this.form = {
|
|
id: this.id,
|
|
pass: null,
|
|
remark: null,
|
|
};
|
|
this.resetForm('form');
|
|
},
|
|
handleSubmit(pass) {
|
|
this.$refs.form.validate().then(() => {
|
|
this.$confirm(`确定${pass ? '通过' : '驳回'}吗?`, '提示', {
|
|
confirmButtonText: '确定',
|
|
cancelButtonText: '取消',
|
|
type: 'warning'
|
|
}).then(() => {
|
|
this.form.pass = pass;
|
|
this.loading = true;
|
|
verifyOrder(this.form).then((response) => {
|
|
if (response.code == 200) {
|
|
this.$message.success('操作成功');
|
|
this.dialogVisible = false;
|
|
this.$emit('success');
|
|
}
|
|
}).finally(() => {
|
|
this.loading = false;
|
|
});
|
|
});
|
|
});
|
|
}
|
|
|
|
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style> |