Commit 045101e1 authored by 郭志伟's avatar 郭志伟

fix: 华贵试算问题解决;顾问计划跳转问题解决

parent e5f78cba
......@@ -27,7 +27,7 @@
&::after {
content: " ";
display: block;
height: 60px;
height: 80px;
}
}
.cul-hd {
......
......@@ -70,7 +70,7 @@
<strong>{{ item.firstPrice && item.firstPrice.split("")[0] }}</strong>
{{ item.firstPrice && item.firstPrice.split("")[1] }}
</div>
<cr-button type="warning" @click="goDetail(detailIndex)">
<cr-button type="warning" @click="goDetail(item.detailIndex)">
去投保
</cr-button>
</div>
......
......@@ -22,7 +22,7 @@
&::after {
content: " ";
display: block;
height: 60px;
height: 80px;
}
}
.cul-hd {
......
......@@ -94,12 +94,20 @@ export default {
case 1:
break;
case 2:
item.disabled =
p === "1" || (+p >= 4 && +p <= 6 && a > 3) || (a === 3 && (+p === 1 || +p === 4));
if (a === 4 && +p === 6) {
item.disabled = false;
} else {
item.disabled =
p === "1" || (+p >= 4 && +p <= 6 && a > 3) || (a === 3 && (+p === 1 || +p === 4));
}
break;
case 3:
item.disabled =
+p < 3 || (a > 1 && +p !== 6) || (a === 1 && +p === 4) || (a >= 3 && +p === 6);
if (a === 2 && +p !== 3) {
item.disabled = true;
} else {
item.disabled =
+p < 3 || (a > 1 && +p !== 6) || (a === 1 && +p === 4) || (a >= 3 && +p === 6);
}
break;
default:
break;
......
......@@ -7,7 +7,7 @@
&::after {
content: " ";
display: block;
height: 60px;
height: 80px;
}
}
.goods-head {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment