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

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

parent e5f78cba
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
&::after { &::after {
content: " "; content: " ";
display: block; display: block;
height: 60px; height: 80px;
} }
} }
.cul-hd { .cul-hd {
......
...@@ -70,7 +70,7 @@ ...@@ -70,7 +70,7 @@
<strong>{{ item.firstPrice && item.firstPrice.split("")[0] }}</strong> <strong>{{ item.firstPrice && item.firstPrice.split("")[0] }}</strong>
{{ item.firstPrice && item.firstPrice.split("")[1] }} {{ item.firstPrice && item.firstPrice.split("")[1] }}
</div> </div>
<cr-button type="warning" @click="goDetail(detailIndex)"> <cr-button type="warning" @click="goDetail(item.detailIndex)">
去投保 去投保
</cr-button> </cr-button>
</div> </div>
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
&::after { &::after {
content: " "; content: " ";
display: block; display: block;
height: 60px; height: 80px;
} }
} }
.cul-hd { .cul-hd {
......
...@@ -94,12 +94,20 @@ export default { ...@@ -94,12 +94,20 @@ export default {
case 1: case 1:
break; break;
case 2: case 2:
item.disabled = if (a === 4 && +p === 6) {
p === "1" || (+p >= 4 && +p <= 6 && a > 3) || (a === 3 && (+p === 1 || +p === 4)); item.disabled = false;
} else {
item.disabled =
p === "1" || (+p >= 4 && +p <= 6 && a > 3) || (a === 3 && (+p === 1 || +p === 4));
}
break; break;
case 3: case 3:
item.disabled = if (a === 2 && +p !== 3) {
+p < 3 || (a > 1 && +p !== 6) || (a === 1 && +p === 4) || (a >= 3 && +p === 6); item.disabled = true;
} else {
item.disabled =
+p < 3 || (a > 1 && +p !== 6) || (a === 1 && +p === 4) || (a >= 3 && +p === 6);
}
break; break;
default: default:
break; break;
......
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
&::after { &::after {
content: " "; content: " ";
display: block; display: block;
height: 60px; height: 80px;
} }
} }
.goods-head { .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