diff --git a/src/views/system/withdraw/index.vue b/src/views/system/withdraw/index.vue
index a00d975..74d3600 100644
--- a/src/views/system/withdraw/index.vue
+++ b/src/views/system/withdraw/index.vue
@@ -49,29 +49,36 @@
-
+
+
+
- {{d.row.money | money}}
+ {{d.row.money | money}} 元
- {{d.row.arrivalAmount | money}}
+ {{d.row.arrivalAmount | money}} 元
- {{d.row.serviceCharge | money}}
+ {{d.row.serviceCharge | money}} 元
-
+
+
+
+
+
+
@@ -109,28 +116,38 @@
/>
-
-
+
+
- {{approvalForm.billId}}
+
+ {{approvalForm.mchName | defaultVaule}}
+
- {{approvalForm.money | money}}
+ {{approvalForm.money | money}} 元
- {{approvalForm.arrivalAmount | money}}
+ {{approvalForm.arrivalAmount | money}} 元
- {{approvalForm.serviceCharge | money}}
+ {{approvalForm.serviceCharge | money}} 元
+
+
+
+
+
+
+
+
@@ -158,10 +175,12 @@ import {
passWithDrawBill,
rejectWithDrawBill, payWithDrawBill
} from "@/api/system/withdraw";
+import UserLink from '@/components/Business/SmUser/UserLink.vue'
export default {
name: "Bill",
- dicts: ['sm_transaction_bill_status', 'sm_transaction_bill_pay_type'],
+ components: { UserLink },
+ dicts: ['sm_transaction_bill_status', 'withdraw_type', 'sm_transaction_bill_pay_type'],
data() {
return {
// 遮罩层
@@ -201,6 +220,11 @@ export default {
billId: null,
remark: null,
},
+ approvalRules: {
+ withdrawType: [
+ { required: true, message: "请选择打款方式", trigger: "blur"}
+ ]
+ }
};
},
created() {