提交 889b241b authored 作者: 郑伟娜's avatar 郑伟娜

修改bug

上级 63818c08
...@@ -106,10 +106,10 @@ export default { ...@@ -106,10 +106,10 @@ export default {
shopInfo().then(res => { shopInfo().then(res => {
if (res.code == 1) { if (res.code == 1) {
// 是否需要缴纳保证金 0否 1是 // 是否需要缴纳保证金 0否 1是
if (res.data.is_take_bond == 0 && res.data.bond > res.data.cate_bond / 2) { if (res.data.is_take_bond == 1 && res.data.bond < res.data.cate_bond / 2) {
this.dialogVisible = false
} else {
this.dialogVisible = true this.dialogVisible = true
} else {
this.dialogVisible = false
} }
} }
}) })
......
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
</div> </div>
</div> </div>
<div style="text-align: center; margin-top: 50px; width: 100%;"> <div style="text-align: center; margin-top: 50px; width: 100%;">
<el-button type="primary" size="mini" style="width: 80px;" @click="payDialog = true" :disabled="isPay || !isShowPay">充值</el-button> <el-button type="primary" size="mini" style="width: 80px;" @click="payDialog = true" :disabled="!isPay || bond >= cate_bond || !isShowPay">充值</el-button>
<el-button size="mini" style="width: 80px;" @click="cancellationDialog = true" :disabled="bond <= 0">申请退保</el-button> <el-button size="mini" style="width: 80px;" @click="cancellationDialog = true" :disabled="bond <= 0">申请退保</el-button>
</div> </div>
</div> </div>
...@@ -220,7 +220,7 @@ ...@@ -220,7 +220,7 @@
<!-- 提交成功提示 --> <!-- 提交成功提示 -->
<div style="text-align: center;" v-if="isSubmit"> <div style="text-align: center;" v-if="isSubmit">
<div><i class="el-icon-success" style="color: #67c23a; font-size: 34px;"></i></div> <div><i class="el-icon-success" style="color: #67c23a; font-size: 34px;"></i></div>
<div style="margin: 10px 0 30px;">请已提交,工作人员将与您联系,请注意来电</div> <div style="margin: 10px 0 30px;">请已提交,工作人员将与您联系,请注意来电</div>
<div style="background: rgba(58, 160, 255, .05); padding: 20px; line-height: 30px;"> <div style="background: rgba(58, 160, 255, .05); padding: 20px; line-height: 30px;">
<div>感谢您使用云仓!</div> <div>感谢您使用云仓!</div>
<div>您的退保申请已提交,工作人员将与您取得联系核实情况,大约需要1-3个工作日,请您耐心等待。</div> <div>您的退保申请已提交,工作人员将与您取得联系核实情况,大约需要1-3个工作日,请您耐心等待。</div>
...@@ -447,8 +447,8 @@ ...@@ -447,8 +447,8 @@
this.payForm.money = this.getFixed(this.cate_bond - this.bond) this.payForm.money = this.getFixed(this.cate_bond - this.bond)
// 是否需要缴纳保证金 0否 1是 // 是否需要缴纳保证金 0关闭 1打开
if (res.data.is_take_bond == 0 && this.bond > this.cate_bond / 2) { if (res.data.is_take_bond == 1) {
this.isPay = true this.isPay = true
} else { } else {
this.isPay = false this.isPay = false
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论