|
@ -0,0 +1,428 @@
|
|
|
<div class="copd-service-record-box">
|
|
|
<el-radio-group v-model="changeModule" style="margin-bottom: 20px">
|
|
|
<el-radio-button label="1" style="margin-right: 0px">基本信息</el-radio-button>
|
|
|
<el-radio-button label="2" style="margin-right: 0px">乳腺评估信息</el-radio-button>
|
|
|
<el-radio-button label="3" style="margin-right: 0px">宫颈评估信息</el-radio-button>
|
|
|
</el-radio-group>
|
|
|
<div class="service-base-info">
|
|
|
<div class="base-title ki-title ta-title">{{changeModule == 1 ? '基本信息' : changeModule == 2 ? '乳腺评估信息' : '宫颈评估信息'}}</div>
|
|
|
<div class="base-content" v-if="changeModule == 1">
|
|
|
<div class="base-info-item">姓名:{{detailInfo.name}}</div>
|
|
|
<div class="base-info-item">性别:{{detailInfo.sexName}}</div>
|
|
|
<div class="base-info-item">证件号码:{{detailInfo.idcard}}</div>
|
|
|
<div class="base-info-item">联系电话:{{detailInfo.mobile}}</div>
|
|
|
</div>
|
|
|
<div class="base-content" v-else-if="changeModule == 2">
|
|
|
<div class="base-info-item">乳腺评估机构:{{detailInfo.name}}</div>
|
|
|
<div class="base-info-item">乳腺评估人:{{detailInfo.sexName}}</div>
|
|
|
<div class="base-info-item">乳腺初筛时间:{{detailInfo.idcard}}</div>
|
|
|
<div class="base-info-item">乳腺评估时间:{{detailInfo.mobile}}</div>
|
|
|
</div>
|
|
|
<div class="base-content" v-else-if="changeModule == 3">
|
|
|
<div class="base-info-item">宫颈评估机构:{{detailInfo.name}}</div>
|
|
|
<div class="base-info-item">宫颈评估人:{{detailInfo.sexName}}</div>
|
|
|
<div class="base-info-item">宫颈初筛时间:{{detailInfo.idcard}}</div>
|
|
|
<div class="base-info-item">宫颈评估时间:{{detailInfo.mobile}}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="service-record-timeline">
|
|
|
<div class="title">服务记录</div>
|
|
|
<div>
|
|
|
<!-- <div class="mb10 mt10" style="display: flex; align-items: center">
|
|
|
<span>服务年份:</span>
|
|
|
<el-radio-group v-model="serviceYear" @input="getDealRecord">
|
|
|
<el-radio-button :label="item.value" v-for="item in yearList" :key="item.value">{{item.label}}</el-radio-button>
|
|
|
</el-radio-group>
|
|
|
<el-date-picker
|
|
|
v-model="customizeYear"
|
|
|
style="width: 400px"
|
|
|
type="daterange"
|
|
|
range-separator="至"
|
|
|
start-placeholder="开始日期"
|
|
|
end-placeholder="结束日期"
|
|
|
v-if="serviceYear=='customize'"
|
|
|
value-format="yyyy-MM-dd"
|
|
|
@change="getDealRecord"></el-date-picker>
|
|
|
</div> -->
|
|
|
<div style="display: flex; align-items: center; margin-top: 20px">
|
|
|
<div style="width: 180px">服务节点:</div>
|
|
|
<el-radio-group v-model="serviceNode" @input="getDealRecord" style="display: flex; flex-wrap: wrap">
|
|
|
<el-radio-button :label="item.value" v-for="item in nodeList" :key="item.value" style="margin-bottom: 15px">{{item.label}}</el-radio-button>
|
|
|
<div @click="getMore" style="display: flex; align-items: center; color: #409eff; font-size: 16px; cursor: pointer; margin-top: -20px">
|
|
|
{{moreFlag? '更多':'收起'}}
|
|
|
<i :class="moreFlag ?'el-icon-arrow-down ': 'el-icon-arrow-up' " style="font-size: 22px; color: #409eff; font-weight: bold; margin-left: 5px"></i>
|
|
|
</div>
|
|
|
</el-radio-group>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="record-list time-line">
|
|
|
<div class="timeline" v-loading="loading">
|
|
|
<div v-for="(event, eI) in events" :key="eI">
|
|
|
<div class="timeline-item" v-if="event.flag">
|
|
|
<div class="timeline-time" :id="'left-' + eI">{{ event.createTime&&event.createTime.substring(0,4)}}</div>
|
|
|
</div>
|
|
|
<div class="timeline-item" :class="{'timeline-item-blue-dot': event.createTime != null}">
|
|
|
<div class="timeline-time" :id="'left-' + eI">{{event.createTime&& event.createTime.slice(5) }}</div>
|
|
|
<div class="timeline-content" :id="'right-' + eI">
|
|
|
<div class="data-item">
|
|
|
<div class="data-title">{{getTypeName(event.type)}}</div>
|
|
|
<div class="data-cont" v-if="event.type == 1">
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">预约医院:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">预约时间:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">证件号码:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">医保卡号:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.doctorName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="data-cont" v-else-if="event.type == 2 ||event.type == 3 ||event.type == 4 ||event.type == 6 || event.type == 13|| event.type == 15">
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">{{event.type == 13 || event.type == 15 ? '是否检查' : '是否拒检'}} :</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.type == 13 || event.type == 15 ? event.hospitalName : event.hospitalName }}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查机构:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查人员:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查时间:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.doctorName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="data-cont" v-else-if="event.type == 5 ||event.type == 14|| event.type == 16">
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">{{event.type == 14|| event.type == 16 ? '检查情况' : '是否检查'}} :</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.type == 14|| event.type == 16 ? event.hospitalName : event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">随访机构:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">随访人员:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">随访时间:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.doctorName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="data-cont" v-else-if="event.type == 7">
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">是否治疗:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">随访机构:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">随访人员:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">随访时间:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.doctorName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="data-cont" v-else-if="event.type == 8">
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">是否随访:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">随访机构:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">随访人员:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">随访时间:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.doctorName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="data-cont" v-else-if="event.type == 9">
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">是否拒检:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查机构:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查人员(妇科检查):</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查人员(分泌物):</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.doctorName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查时间:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.doctorName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="data-cont" v-else-if="event.type == 10">
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查机构:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查人员:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="data-cont" v-else-if="event.type == 11">
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查机构:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查人员:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查时间:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="data-cont" v-else-if="event.type == 12">
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">临床评估意见:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查机构:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查人员:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查时间:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="data-cont" v-else-if="event.type == 17">
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">最后诊断:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查机构:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查人员:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
<div style="width: 50%">
|
|
|
<span style="color: #9fa2a8">检查时间:</span>
|
|
|
<span style="color: #656565">
|
|
|
<template>{{event.hospitalName}}</template>
|
|
|
</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<div class="data-title" style="color: #12b7f5; font-size: 14px; cursor: pointer" @click="showDetail(event)">查看随访详情</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="cops-service-record-bottom-box">
|
|
|
<el-button @click="recordBack">返回</el-button>
|
|
|
</div>
|
|
|
<el-dialog title="随访详情" :visible.sync="dialog" width="50%" :destroy-on-close="true">
|
|
|
<div class="copd-follow-up-dialog-box">
|
|
|
<div class="copd-bb-record-info">
|
|
|
<div class="title ki-title ta-title">随访信息</div>
|
|
|
<div class="copd-bb-base-content">
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.createTime">随访时间:{{followInfo.createTime}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.doctorName">随访医生:{{followInfo.doctorName}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.hospitalName">随访机构: {{followInfo.hospitalName}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followup">随访状态:{{followup}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.status==4">失访原因:{{followInfo.lostReason}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.status==3">不详原因:{{followInfo.lostReason}}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<template v-if="followInfo.status!='4'&&followInfo.status!='3'&&followInfo.status!='2'">
|
|
|
<div class="copd-bb-record-info">
|
|
|
<div class="title ki-title">基本信息</div>
|
|
|
<div class="copd-bb-base-content">
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.name">姓名:{{followInfo.name}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.sex">性别:{{followInfo.sex==1?'男':'女'}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="nationName">民族:{{nationName}}</div>
|
|
|
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.birthday">出生日期:{{followInfo.birthday}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="idcardTypeName">证件类型:{{idcardTypeName}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.idcard">证件号码:{{followInfo.idcard}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.mobile">联系电话:{{followInfo.mobile}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="educational">学历:{{educational}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="marriageName">婚姻状况:{{marriageName}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="occupation">职业类型:{{occupation}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.liveProvinceName">
|
|
|
常住地区:{{followInfo.liveProvinceName}}{{followInfo.liveCityName}}{{followInfo.liveTownName}}{{followInfo.liveStreetName}}
|
|
|
</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.liveAddress">常住地址:{{followInfo.liveAddress}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.registProvinceName">
|
|
|
户籍地区:{{followInfo.registProvinceName}}{{followInfo.registCityName}}{{followInfo.registTownName}}{{followInfo.registStreetName}}
|
|
|
</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.registAddress">户籍地址:{{followInfo.registAddress}}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="copd-bb-record-info">
|
|
|
<div class="title ki-title ta-title">随访情况</div>
|
|
|
<div class="copd-bb-base-content">
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.isLive">生存状态:{{followInfo.isLive==1?'生存':'死亡'}}</div>
|
|
|
<template v-if="followInfo.isLive==1">
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.hasSmoke">是否抽烟:{{followInfo.hasSmoke==1?'是':followInfo.hasSmoke==0?'否':'已戒烟'}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.hasDrink">是否饮酒:{{followInfo.hasDrink==1?'是':followInfo.hasDrink==0?'否':'已戒酒'}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="diseaseConversion">病情归转:{{diseaseConversion}}</div>
|
|
|
</template>
|
|
|
|
|
|
<!-- <div class="copd-bb-base-info-item">
|
|
|
是否做过肺功能检查:{{followInfo.hasLung}}
|
|
|
</div> -->
|
|
|
<!-- <div class="copd-bb-base-info-item">e
|
|
|
是否做过胸部CT或X线检查:{{followInfo.birthday}}
|
|
|
</div> -->
|
|
|
</div>
|
|
|
</div>
|
|
|
<template v-if="followInfo.isLive==1">
|
|
|
<div class="copd-bb-record-info">
|
|
|
<div class="title ki-title ta-title">首次确诊情况</div>
|
|
|
<div class="copd-bb-base-content">
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.firstVisitTime">慢阻肺首次诊断时间:{{followInfo.firstVisitTime}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.firstVisitArea">慢阻肺首次诊断地区:{{followInfo.firstVisitArea}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="orGlevelName">
|
|
|
<!-- 慢阻肺首次诊断机构级别:{{
|
|
|
followInfo.firstVisitOrgLevel == 1 ? '三级医院' :
|
|
|
followInfo.firstVisitOrgLevel == 2 ? '二级医院' :
|
|
|
followInfo.firstVisitOrgLevel == 3 ? '村卫生室' :
|
|
|
followInfo.firstVisitOrgLevel == 4 ? '乡镇卫生院/社区卫生服务机构' :
|
|
|
followInfo.firstVisitOrgLevel == 5 ? '其他医疗卫生机构' :
|
|
|
''
|
|
|
}} -->
|
|
|
慢阻肺首次诊断机构级别:{{orGlevelName}}
|
|
|
</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.firstVisitOrg">首次诊断机构:{{followInfo.firstVisitOrg}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="diagnosticBasisName">最高诊断依据:{{diagnosticBasisName}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="symptom">症状:{{symptom}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.drugBefore">使用支气管扩张剂前FEV1/FVC(%):{{followInfo.drugBefore}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.drugAfter">使用支气管扩张剂后FEV1/FVC(%):{{followInfo.drugAfter}}</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
<div class="copd-bb-record-info" v-if="followInfo.isLive!=1">
|
|
|
<div class="title ki-title ta-title">死亡情况</div>
|
|
|
<div class="copd-bb-base-content">
|
|
|
<template v-if="followInfo.isLive!=1">
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.deathTime">死亡时间:{{followInfo.deathTime}}</div>
|
|
|
<div class="copd-bb-base-info-item" v-if="followInfo.deathReason">死亡原因:{{followInfo.deathReason}}</div>
|
|
|
</template>
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
</div>
|
|
|
<span slot="footer" class="dialog-footer">
|
|
|
<el-button @click="dialog = false">关闭</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
<el-dialog title="记录" :visible.sync="formDialogVisible" width="50%">
|
|
|
<lasc-cervical-cytology-inspect-entityList></lasc-cervical-cytology-inspect-entityList>
|
|
|
</el-dialog>
|
|
|
</div>
|