提交 08ed9e81 authored 作者: 王天霸's avatar 王天霸

123

上级 77dad863
......@@ -10,12 +10,12 @@
保证金
</div>
<div class="securityFund-content">
<div style="display: flex; align-items: center;" v-if="isPay">
<div style="display: flex; align-items: center;" v-if="isPay1">
<span><i class="el-icon-success" style="color: #67c23a; font-size: 26px;"></i></span>
<span style="margin: 0 20px 0 5px; font-size: 16px;">已缴纳保证金</span>
<span>合约期内保证金不能提现,合作到期后双方如终止合作则退还保证金。</span>
</div>
<div style="display: flex; align-items: center;" v-if="!isPay">
<div style="display: flex; align-items: center;" v-if="!isPay1">
<span><i class="el-icon-error" style="color: red; font-size: 26px;"></i></span>
<span style="margin: 0 20px 0 5px; font-size: 16px;">未缴纳保证金</span>
<span>根据您的商品所在类目,需缴纳【{{ getFixed(cate_bond - bond) }}元】保证金,您还未缴纳!保证金用于您的信用保障和消费者的权益保护,如果您有违约责任,平台将根据规定扣除您一定比例的保证金。</span>
......@@ -327,6 +327,7 @@
cate_bond: 0, // 初始应缴
payRadio: '1',
isPay: true, // 是否需要缴纳保证金
isPay1: true, // 是否需要缴纳保证金
isSubmit: false,
cancellationDialog: false,
ruleDialog: false,
......@@ -452,17 +453,17 @@
this.payForm.money = this.getFixed(this.cate_bond - this.bond)
// 是否需要缴纳保证金 0关闭 1打开
// if (res.data.is_take_bond == 1) {
// this.isPay = true
// } else {
// this.isPay = false
// }
// 是否缴纳保证金 0未缴纳 大于0已缴纳
if (res.data.bond > 0) {
if (res.data.is_take_bond == 1) {
this.isPay = true
} else {
this.isPay = false
}
// 是否缴纳保证金 0未缴纳 大于0已缴纳
if (res.data.bond > 0) {
this.isPay1 = true
} else {
this.isPay1 = false
}
this.getAccountList()
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论