修改
This commit is contained in:
parent
2dab7cb5b3
commit
a1b91be54b
@ -124,8 +124,16 @@
|
|||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="意向来源" align="center" prop="intentionalSource"
|
<el-table-column label="意向来源" align="center" prop="intentionalSource"
|
||||||
v-if="queryParams.serviceStatus == 'INTENTIONAL_SIGNING'" />
|
v-if="queryParams.serviceStatus == 'INTENTIONAL_SIGNING'">
|
||||||
<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="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"
|
<el-table-column label="签约时间" align="center" prop="signTime" width="180"
|
||||||
v-if="queryParams.serviceStatus == 'SERVICE_CENTER'">
|
v-if="queryParams.serviceStatus == 'SERVICE_CENTER'">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
@ -190,7 +198,7 @@ import { listSignRecord, getSignRecord, delSignRecord, addSignRecord, updateSign
|
|||||||
import { selectAgencyList, getDepartmentList, getAgencyList } from "@/api/manage/selectAgencyList";
|
import { selectAgencyList, getDepartmentList, getAgencyList } from "@/api/manage/selectAgencyList";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
dicts: ['visit_method'],
|
dicts: ['visit_method', 'patient_source'],
|
||||||
name: "SignRecord",
|
name: "SignRecord",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user