-
+
@@ -117,12 +123,14 @@
@change="onchangeAuditTime"
clearable
:picker-options="pickerOptions"
- style="width: 280px;"
+ style="width: 280px"
/>
- 搜索
- 重置
+ 搜索
+ 重置
@@ -131,7 +139,7 @@
-
-
- {{(scope.row.merchant&&scope.row.merchant.mer_name) || scope.row.mer_name}}
+
+
+ {{
+ (scope.row.merchant && scope.row.merchant.mer_name) ||
+ scope.row.mer_name
+ }}
@@ -168,7 +176,13 @@
min-width="100"
>
- {{ scope.row.type==10?'保证金':scope.row.type==30?'技术服务费':'上架费' }}
+ {{
+ scope.row.type == 10
+ ? "保证金"
+ : scope.row.type == 30
+ ? "技术服务费"
+ : "上架费"
+ }}
-
-
- {{(scope.row.merchant&&scope.row.merchant.real_name) || scope.row.real_name}}
+
+
+ {{
+ (scope.row.merchant && scope.row.merchant.real_name) ||
+ scope.row.real_name
+ }}
-
-
+
{{ scope.row.financial_type == 3 ? "线下" : "线上" }}
-
+
- {{ scope.row.marginOrder && scope.row.marginOrder[0] && scope.row.marginOrder[0]['create_time'] }}
+ {{
+ scope.row.marginOrder &&
+ scope.row.marginOrder[0] &&
+ scope.row.marginOrder[0]["create_time"]
+ }}
{{ scope.row.pay_price }}
-
+
- {{ scope.row.is_service == 1 ? scope.row.service_cost : (scope.row.ot_service_cost-scope.row.service_cost).toFixed(2) }}
+ {{
+ scope.row.is_service == 1
+ ? scope.row.service_cost
+ : (scope.row.ot_service_cost - scope.row.service_cost).toFixed(
+ 2
+ )
+ }}
-
+
- {{ scope.row.is_goods == 1 ? scope.row.goods_cost : (scope.row.ot_goods_cost-scope.row.goods_cost).toFixed(2) }}
+ {{
+ scope.row.is_goods == 1
+ ? scope.row.goods_cost
+ : (scope.row.ot_goods_cost - scope.row.goods_cost).toFixed(2)
+ }}
-
+
-
+
{{ type == 0 ? scope.row.admin_mark : scope.row.mark }}
-
+
- {{ scope.row.status == 0 ? '待审核':scope.row.status == 1 ? '同意': '失败' }}
+ {{
+ scope.row.status == 0
+ ? "待审核"
+ : scope.row.status == 1
+ ? "同意"
+ : "失败"
+ }}
-
+
-
+
保证金扣费
操作记录
财务审核
+ >财务审核
@@ -459,14 +495,14 @@
保证金额度:
@@ -475,8 +511,10 @@
扣费金额:
{{
- (marginData.financial_account.pay_price -
- marginData.merchant.margin).toFixed(2)
+ (
+ marginData.financial_account.pay_price -
+ marginData.merchant.margin
+ ).toFixed(2)
}}元
@@ -484,35 +522,54 @@
{{ marginData.financial_status == 1 ? "已审核" : "待审核" }}
- 退回方式:
- {{ marginData.financial_type == 3 ? "线下退回" : "线上退回" }}
+ 退回方式:
+ {{ marginData.financial_type == 3 ? "线下退回" : "线上退回" }}
- 应退回保证金金额:
+ 应退回保证金金额:
{{ marginData.extract_money }}元
-
+