This commit is contained in:
2024-04-09 08:56:25 +08:00
parent 2dab7cb5b3
commit a1b91be54b

View File

@ -124,8 +124,16 @@
</template>
</el-table-column>
<el-table-column label="意向来源" align="center" prop="intentionalSource"
v-if="queryParams.serviceStatus == 'INTENTIONAL_SIGNING'" />
<el-table-column label="患者来源" align="center" prop="intentionalSource" v-else />
v-if="queryParams.serviceStatus == 'INTENTIONAL_SIGNING'">
<template slot-scope="scope">
<dict-tag :options="dict.type.patient_source" :value="scope.row.intentionalSource" />
</template>
</el-table-column>
<el-table-column label="患者来源" align="center" prop="intentionalSource" v-else>
<template slot-scope="scope">
<dict-tag :options="dict.type.patient_source" :value="scope.row.intentionalSource" />
</template>
</el-table-column>
<el-table-column label="签约时间" align="center" prop="signTime" width="180"
v-if="queryParams.serviceStatus == 'SERVICE_CENTER'">
<template slot-scope="scope">
@ -190,7 +198,7 @@ import { listSignRecord, getSignRecord, delSignRecord, addSignRecord, updateSign
import { selectAgencyList, getDepartmentList, getAgencyList } from "@/api/manage/selectAgencyList";
export default {
dicts: ['visit_method'],
dicts: ['visit_method', 'patient_source'],
name: "SignRecord",
data() {
return {