Browse Source

添加随访次数,即将超期、超期未随访、超期已随访添加颜色效果

newMaster
1747191978@qq.com 1 year ago
parent
commit
37eac6c37c
  1. 2
      acupuncture-前台/src/views/followFile/subjects.vue
  2. 4
      acupuncture-前台/src/views/medicalFile/index.vue

2
acupuncture-前台/src/views/followFile/subjects.vue

@ -240,7 +240,7 @@
handleUpdate(row) { handleUpdate(row) {
this.open = true; this.open = true;
this.title = "队列管理"; this.title = "队列管理";
let queueList = row.queueList.map((item) => item.queueId); let queueList = row.queueList?.map((item) => item.queueId) || [];
this.form = JSON.parse( this.form = JSON.parse(
JSON.stringify({ JSON.stringify({
...row, ...row,

4
acupuncture-前台/src/views/medicalFile/index.vue

@ -134,7 +134,7 @@
<span>{{ status[scope.row.status] }}</span> <span>{{ status[scope.row.status] }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="随访队列" align="center" prop="" show-overflow-tooltip width="200"> <el-table-column fixed="right" label="随访队列" align="center" prop="" show-overflow-tooltip width="200">
<template slot-scope="scope"> <template slot-scope="scope">
<div v-if="scope.row.queueVoList && scope.row.queueVoList.length"> <div v-if="scope.row.queueVoList && scope.row.queueVoList.length">
{{ scope.row.queueVoList.map((i) => i.queueName).join(",") }} {{ scope.row.queueVoList.map((i) => i.queueName).join(",") }}
@ -1193,7 +1193,7 @@
handleUpdate(row) { handleUpdate(row) {
this.open = true; this.open = true;
this.title = "修改诊疗档案"; this.title = "修改诊疗档案";
let queueList = row.queueVoList.map((item) => item.queueId); let queueList = row.queueVoList?.map((item) => item.queueId) || [];
this.form = { this.form = {
...JSON.parse(JSON.stringify(row)), ...JSON.parse(JSON.stringify(row)),
queueIdList: queueList queueIdList: queueList

Loading…
Cancel
Save