mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-22 08:16:43 +08:00
开门红需求-电投提示:电投提示处理初版代码提交 --提交人:阳华祥
This commit is contained in:
@@ -2,20 +2,16 @@
|
||||
<div class="main-risk-list-container pt10 redRadioCheckbox">
|
||||
<van-radio-group v-model="result">
|
||||
<van-cell-group>
|
||||
<van-cell v-for="(item, index) in list" clickable @click="result = item" :key="index">
|
||||
<div v-if="checkItemShow(item)">
|
||||
<p slot="default">
|
||||
<van-tag plain class="green fs12 mr10">{{ item.productType }}</van-tag>
|
||||
<span class="c-gray-dark fs14">{{ item.riskName }}</span>
|
||||
</p>
|
||||
<van-radio checked-color="red" slot="right-icon" :name="item" />
|
||||
</div>
|
||||
<van-cell v-for="(item, index) in list" clickable @click="result = item" :key="index" v-show="checkItemShow(item)">
|
||||
<p slot="default">
|
||||
<van-tag plain class="green fs12 mr10">{{ item.productType }}</van-tag>
|
||||
<span class="c-gray-dark fs14">{{ item.riskName }}</span>
|
||||
</p>
|
||||
<van-radio checked-color="red" slot="right-icon" :name="item" />
|
||||
</van-cell>
|
||||
<van-cell> </van-cell>
|
||||
<van-cell> </van-cell>
|
||||
</van-cell-group>
|
||||
</van-radio-group>
|
||||
|
||||
<div class="white_block"></div>
|
||||
<van-button class="bottom-btn" type="danger" @click="nextStep">完成</van-button>
|
||||
</div>
|
||||
</template>
|
||||
@@ -354,4 +350,9 @@ export default {
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped></style>
|
||||
<style lang="scss" scoped>
|
||||
.white_block {
|
||||
width: 100%;
|
||||
height: 11.73333vw;
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user