From 88bcabcbc56c6bc0a1b69bdf1075bc93216e58f1 Mon Sep 17 00:00:00 2001
From: ltlzx <942659938@qq.com>
Date: Wed, 27 Apr 2022 17:06:30 +0800
Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=9620220427=E6=96=87=E6=A1=A3?=
=?UTF-8?q?=E5=86=85=E5=AE=B9?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/components/orderDetails/index.vue | 8 +++++++-
.../page/fundSettlement/splitProportion.vue | 18 +++++++++++++-----
src/components/page/order/index.vue | 6 +++---
3 files changed, 23 insertions(+), 9 deletions(-)
diff --git a/src/components/orderDetails/index.vue b/src/components/orderDetails/index.vue
index d2e34c8..4ac8589 100644
--- a/src/components/orderDetails/index.vue
+++ b/src/components/orderDetails/index.vue
@@ -63,7 +63,7 @@
交易佣金:¥ {{order_info.service_charge}}
-->
- {{item.role_type==1?'委托方':item.role_type==2?'购买方':'平台方'}}分账比列:
+ {{item.role_type==2?'被授权方交易佣金':item.role_type==1?'授权商交易结算':'平台方结算'}}比列:
{{item.calculate==1?item.ratio:item.amount}}
@@ -235,6 +235,12 @@
this.bill=res.data.bill
this.buyuser=res.data.buyuser
this.ratio_setting=res.data.ratio_setting
+ this.ratio_setting.detail.splice(
+ 1,
+ 1,
+ ...this.ratio_setting.detail.splice(1 - 1, 1, this.ratio_setting.detail[1])
+ );
+ console.info(this.ratio_setting)
}else{
this.$message.error(res.msg);
}
diff --git a/src/components/page/fundSettlement/splitProportion.vue b/src/components/page/fundSettlement/splitProportion.vue
index 2a1fde2..37ccf3f 100644
--- a/src/components/page/fundSettlement/splitProportion.vue
+++ b/src/components/page/fundSettlement/splitProportion.vue
@@ -90,7 +90,7 @@
授权方
被授权方
- 深圳文化产权交易所
+ 平台方
@@ -101,7 +101,7 @@
- 交易佣金费用
+ {{item.role_type==2?'交易佣金':'交易结算'}}
@@ -143,8 +143,8 @@
- {{item.role_type==1?'授权方':item.role_type==2?'被授权方':'深圳文化产权交易所'}}:
- 交易服务费用({{item.calculate==1?'比例':'固定'}})
+ {{item.role_type==1?'授权方':item.role_type==2?'被授权方':'平台方'}}:
+ {{item.role_type==2?'交易佣金':'交易结算'}}({{item.calculate==1?'比例':'固定'}})
{{item.ratio}}%
{{item.amount}}%
@@ -165,8 +165,8 @@ export default {
return{
query1:{
ratio:[
- {role_type:'1',cost_type:'1',calculate:'1',amount:'',ratio:null,},
{role_type:'2',cost_type:'1',calculate:'1',amount:'',ratio:null,},
+ {role_type:'1',cost_type:'1',calculate:'1',amount:'',ratio:null,},
{role_type:'3',cost_type:'1',calculate:'1',amount:'',ratio:null,},
],
rule_name:''
@@ -245,6 +245,12 @@ export default {
if(res.code==200){
this.visible=true
this.ruleList=res.data
+ this.ruleList.splice(
+ 1,
+ 1,
+ ...this.ruleList.splice(1 - 1, 1, this.ruleList[1])
+ );
+
}else{
this.$message.error(res.msg);
}
@@ -362,6 +368,8 @@ export default {
}
.rule_item1{
margin-bottom: 22px;
+ padding-bottom: 10px;
+ border-bottom: 1px solid rgb(153, 153, 153);
}
.rule_item1 span{
display: inline-block;
diff --git a/src/components/page/order/index.vue b/src/components/page/order/index.vue
index 8d99981..2632853 100644
--- a/src/components/page/order/index.vue
+++ b/src/components/page/order/index.vue
@@ -185,7 +185,7 @@ export default {
// },
{
title: '交易方式',
- // width:'90px',
+ width:'90px',
dataIndex: 'entrust_type',
// align:'center'
},
@@ -196,14 +196,14 @@ export default {
},
{
title: '交易状态',
- // width:'90px',
+ width:'90px',
dataIndex: 'status',
scopedSlots: { customRender: 'status' },
// align:'center'
},
{
title: '操作',
- // width:'170px',
+ width:'170px',
scopedSlots: { customRender: 'operation' },
// align:'center'
},