Browse Source

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

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

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

@ -215,7 +215,7 @@
handleQuery() {
this.queryParams.param.haveQueue = ''
if(this.haveQueue){
this.queryParams.param.haveQueue = 0
this.queryParams.param.haveQueue = 0
}
this.queryParams.pageNum = 1;
this.getList();
@ -240,7 +240,7 @@
handleUpdate(row) {
this.open = true;
this.title = "队列管理";
let queueList = row.queueList.map((item) => item.queueId);
let queueList = row.queueList?.map((item) => item.queueId) || [];
this.form = JSON.parse(
JSON.stringify({
...row,
@ -324,4 +324,4 @@
</style>
<!-- >>> .el-input__inner {
padding: 0 15px !important;
} -->
} -->

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

@ -134,7 +134,7 @@
<span>{{ status[scope.row.status] }}</span>
</template>
</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">
<div v-if="scope.row.queueVoList && scope.row.queueVoList.length">
{{ scope.row.queueVoList.map((i) => i.queueName).join(",") }}
@ -1193,7 +1193,7 @@
handleUpdate(row) {
this.open = true;
this.title = "修改诊疗档案";
let queueList = row.queueVoList.map((item) => item.queueId);
let queueList = row.queueVoList?.map((item) => item.queueId) || [];
this.form = {
...JSON.parse(JSON.stringify(row)),
queueIdList: queueList

Loading…
Cancel
Save