|
|
@ -32,7 +32,7 @@ |
|
|
|
<div |
|
|
|
class="btn-dl-ty" |
|
|
|
:class="{ 'btn-dl-gl': flag === 1 }" |
|
|
|
@click="handleFlag(1)" |
|
|
|
@click="flag = 1" |
|
|
|
> |
|
|
|
同意 |
|
|
|
</div> |
|
|
@ -44,6 +44,11 @@ |
|
|
|
不同意 |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<div class="submit-box"> |
|
|
|
<el-button type="primary" class="submit-box-but" @click="handleStep"> |
|
|
|
下一步 |
|
|
|
</el-button> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</template> |
|
|
|
|
|
|
@ -60,7 +65,14 @@ export default { |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
// 同意不同意 |
|
|
|
handleFlag(_flag) { |
|
|
|
handleStep() { |
|
|
|
if (!this.flag) { |
|
|
|
this.$message({ |
|
|
|
type: "error", |
|
|
|
message: "清先同意南宁市健康体重管理活动知情同意书", |
|
|
|
}); |
|
|
|
return; |
|
|
|
} |
|
|
|
this.flag = _flag; |
|
|
|
this.$router.push({ |
|
|
|
path: "/screening/h5eva", |
|
|
@ -194,7 +206,7 @@ export default { |
|
|
|
background: #c6a268; |
|
|
|
width: 100%; |
|
|
|
font-size: 16px; |
|
|
|
margin-bottom: 10px; |
|
|
|
margin: 14px 0; |
|
|
|
} |
|
|
|
.card { |
|
|
|
padding: 16px; |
|
|
|