This commit is contained in:
liuye
2022-04-26 14:15:12 +08:00
parent 5c3e626df1
commit bc9a255a3f

View File

@@ -526,7 +526,7 @@
</el-form-item>
</el-form>
</ai-dialog>
<ai-dialog
<ai-dialog customFooter
:visible.sync="isShowDetail"
width="1000px"
height="500px"
@@ -543,9 +543,7 @@
<el-form-item label="身份证号" prop="name">{{
familyInfo.name
}}</el-form-item>
<el-form-item label="身份证号" prop="name">{{
familyInfo.idNumber
}}</el-form-item>
<el-form-item label="身份证号" prop="name"><ai-id mode="show" :value="familyInfo.idNumber" /></el-form-item>
<el-form-item label="性别" prop="sex">{{
dict.getLabel("sex", familyInfo.sex)
}}</el-form-item>
@@ -613,6 +611,9 @@
<span v-for="(item, index) in familyInfo.healthyStatusList" :key="index"><span v-if="index > 0">,</span>{{dict.getLabel("fpHealth", item)}}</span>
</el-form-item>
</el-form>
<template slot="footer">
<el-button @click="isShowDetail=false">关闭</el-button>
</template>
</ai-dialog>
<ai-dialog :visible.sync="isShowApply" :title="dialogTitle" @closed="applyInfo={},applyFileList=[]" @onConfirm="submitApply" width="600px">
<el-form :model="applyInfo" :rules="rulesApply" ref="dialogApplyInfo" size="small" label-width="120px">
@@ -1076,6 +1077,10 @@ export default {
}
}
::v-deep .AiPersonSelect .el-button {
color: #fff;
}
::v-deep.el-tabs__content {
max-height: calc(100vh - 136px);
overflow-y: auto;