diff --git a/jsowell-ui/src/App.vue b/jsowell-ui/src/App.vue index 4c32ca13b..432b903ad 100644 --- a/jsowell-ui/src/App.vue +++ b/jsowell-ui/src/App.vue @@ -5,17 +5,21 @@ diff --git a/jsowell-ui/src/views/financial/financeDetail.vue b/jsowell-ui/src/views/financial/financeDetail.vue index fd5538a5a..7429dfe80 100644 --- a/jsowell-ui/src/views/financial/financeDetail.vue +++ b/jsowell-ui/src/views/financial/financeDetail.vue @@ -7,7 +7,7 @@
-
- 运营商: - {{ merchant }} -
-
- 商家性质:{{ merchantNature === "1" ? "对公" : "对私" }} -
-
开户状态:{{ adapayCorpMember.auditDesc }}
-
- 开户行名称:{{ cityBankCode(adapayCorpMember.bankCode) }} -
-
收款卡号:{{ adapayCorpMember.cardNo }}
-
预留手机:{{ adapayCorpMember.legalMp }}
+ + + + {{ merchant }} + + + + {{ + merchantNature === "1" ? "对公" : "对私" + }} + + + {{ adapayCorpMember.auditDesc }} + + + {{ + cityBankCode(adapayCorpMember.bankCode) + }} + + + {{ adapayCorpMember.cardNo }} + + + {{ adapayCorpMember.legalMp }} + +
@@ -97,38 +119,39 @@
未查询到运营商结算账户,提现功能现已关闭

@@ -266,15 +289,15 @@

可提现(元): - {{ adapayMember.avlBalance }} + {{ adapayMember.avlBalance }}

手续费(元): - {{ withdrawalFee.toFixed(2) }} + {{ withdrawalFee.toFixed(2) }}

实际到账(元): - + {{ adapayMember.avlBalance - withdrawalFee }} @@ -317,7 +340,7 @@ :visible.sync="dialogTableVisible" :before-close="orderClose" > - + @@ -356,6 +379,7 @@ export default { dicts: ["bill_status"], data() { return { + orderLoading: true, loading: true, operationStatus: null, adapayMember: {}, @@ -409,7 +433,7 @@ export default { let arr = bankList.find((item) => item.bankCode === code); // console.log("银行编码对应的银行名称 arr", arr); if (arr.bankName != null) { - this.bankName = arr.bankName + this.bankName = arr.bankName; } return this.bankName; }, @@ -453,13 +477,13 @@ export default { }, // 订单流水请求 getOrderList() { - this.loading = true; + this.orderLoading = true; console.log("this.getOrderParams", this.getOrderParams); getOrderReportDetail(this.getOrderParams).then((res) => { console.log("获取订单列表res", res); this.orderList = res.rows; this.orderTotal = res.total; - this.loading = false; + this.orderLoading = false; // console.log("this.orderTotal", this.orderTotal); }); }, @@ -567,13 +591,17 @@ export default {