| | |
| | | > |
| | | <el-option |
| | | v-for="item in Filterreason" |
| | | :key="item.id" |
| | | :label="item.name" |
| | | :value="item.id" |
| | | :key="item.value" |
| | | :label="item.label" |
| | | :value="item.value" |
| | | > |
| | | </el-option> |
| | | </el-select> |
| | |
| | | |
| | | <script> |
| | | import { delUser } from "@/api/system/user"; |
| | | import { |
| | | listpat_archive, |
| | | getpat_archive, |
| | | addpat_archive, |
| | | updatepat_archive, |
| | | delpat_archive, |
| | | } from "@/api/smartorpor/pat_archive"; |
| | | |
| | | import { |
| | | messagelistpatient, |
| | | alterpatient, |
| | |
| | | import { listtag } from "@/api/system/label"; |
| | | import { getToken } from "@/utils/auth"; |
| | | import Treeselect from "@riophae/vue-treeselect"; |
| | | import store from "@/store"; |
| | | import "@riophae/vue-treeselect/dist/vue-treeselect.css"; |
| | | |
| | | export default { |
| | |
| | | id: 2, |
| | | }, |
| | | ], |
| | | Filterreason: [ |
| | | { |
| | | name: "患者死亡", |
| | | id: 1, |
| | | }, |
| | | { |
| | | name: "频繁就诊", |
| | | id: 2, |
| | | }, |
| | | { |
| | | name: "患者拒绝服务", |
| | | id: 3, |
| | | }, |
| | | { |
| | | name: "联系方式无效", |
| | | id: 4, |
| | | }, |
| | | { |
| | | name: "黑名单", |
| | | id: 5, |
| | | }, |
| | | ], |
| | | Filterreason: [], |
| | | defaultProps: { |
| | | children: "children", |
| | | label: "label", |
| | |
| | | created() { |
| | | this.getList(); |
| | | this.gettabList(); |
| | | this.Filterreason = store.getters.Filterreason; |
| | | }, |
| | | methods: { |
| | | /** 查询患者列表 */ |