提交 88c41e59 编写于 作者: 史文彬's avatar 史文彬

fix: 修复问题

上级 63aff1f5
此差异已折叠。
此差异已折叠。
......@@ -16,6 +16,8 @@
<van-datetime-picker
type="date"
title="选择年月日"
:value="currentDate"
:min-date="minDate"
:max-date="maxDate"
@confirm="handleConfirm"
@cancel="visible = false"
......@@ -37,6 +39,7 @@ export default {
return {
visible: false,
currentDate: new Date(),
minDate: new Date(1900, 0, 1),
maxDate: new Date(),
};
},
......@@ -56,6 +59,7 @@ export default {
</script>
<style scoped>
.pica-date-picker {
width: 100%;
.van-cell {
padding: 3px 0;
}
......
......@@ -58,6 +58,7 @@
:rules="rules"
/>
<van-field
v-if="dectionForm.idType != 1"
class="appoint-form-items"
required
label="参保人性别"
......@@ -178,14 +179,22 @@
<van-popup
v-model="showCardTypeVisible"
position="bottom"
:style="{ height: '230px' }"
:style="{ height: '280px' }"
>
<van-cell
v-for="(item, index) in cardTypes"
:key="index"
:title="item.value"
style="display: flex; align-items: center"
@click="handleChooseCardType(item)"
/>
>
<template #right-icon>
<van-icon
v-if="dectionForm.idType == item.no"
name="success"
/>
</template>
</van-cell>
</van-popup>
</div>
</template>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册