|
|
|
@ -90,7 +90,7 @@ |
|
|
|
<a-select v-model="item.role_type"> |
|
|
|
<a-select-option value="1">授权方</a-select-option> |
|
|
|
<a-select-option value="2">被授权方</a-select-option> |
|
|
|
<a-select-option value="3">深圳文化产权交易所</a-select-option> |
|
|
|
<a-select-option value="3">平台方</a-select-option> |
|
|
|
<!-- <a-select-option value="4">区域中心</a-select-option> |
|
|
|
<a-select-option value="5">第三方服务机构</a-select-option> --> |
|
|
|
</a-select> |
|
|
|
@ -101,7 +101,7 @@ |
|
|
|
<!-- <a-select-option value="1">委托服务费用</a-select-option> |
|
|
|
<a-select-option value="2">交易服务费用</a-select-option> |
|
|
|
<a-select-option value="3">认证服务费用</a-select-option> --> |
|
|
|
<a-select-option value="1">交易佣金费用</a-select-option> |
|
|
|
<a-select-option value="1">{{item.role_type==2?'交易佣金':'交易结算'}}</a-select-option> |
|
|
|
</a-select> |
|
|
|
</a-col> |
|
|
|
<a-col :span="7" class="query_item rule_item"> |
|
|
|
@ -143,8 +143,8 @@ |
|
|
|
<!-- 查看规则 --> |
|
|
|
<a-modal v-model="visible" title="查看规则" width="570px" :bodyStyle="{'height':'300px'}"> |
|
|
|
<div class="rule_item1" v-for="(item,i) in ruleList" :key="i"> |
|
|
|
<span>{{item.role_type==1?'授权方':item.role_type==2?'被授权方':'深圳文化产权交易所'}}:</span> |
|
|
|
<span class="rule_item1_span">交易服务费用({{item.calculate==1?'比例':'固定'}})</span> |
|
|
|
<span>{{item.role_type==1?'授权方':item.role_type==2?'被授权方':'平台方'}}:</span> |
|
|
|
<span class="rule_item1_span">{{item.role_type==2?'交易佣金':'交易结算'}}({{item.calculate==1?'比例':'固定'}})</span> |
|
|
|
<span v-if="item.calculate==1">{{item.ratio}}%</span> |
|
|
|
<span v-if="item.calculate==2">{{item.amount}}%</span> |
|
|
|
</div> |
|
|
|
@ -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; |
|
|
|
|