From 401c8356fba9004e3f3301002bbb2267cb1f973f Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期三, 16 四月 2025 20:04:16 +0800 Subject: [PATCH] 测试完成 --- src/views/patient/patient/behospitalized.vue | 126 ++++++++++++++++++++++++++++------------- 1 files changed, 85 insertions(+), 41 deletions(-) diff --git a/src/views/patient/patient/behospitalized.vue b/src/views/patient/patient/behospitalized.vue index 3c386b7..8c16f65 100644 --- a/src/views/patient/patient/behospitalized.vue +++ b/src/views/patient/patient/behospitalized.vue @@ -35,31 +35,26 @@ @keyup.enter.native="handleQuery" /> </el-form-item> - <el-form-item label="浣忛櫌鍙�" prop="patid"> + <el-form-item label="浣忛櫌鍙�" prop="inhospno"> <el-input - v-model="queryParams.patid" + v-model="queryParams.inhospno" placeholder="璇疯緭鍏ユ偅鑰呯紪鍙�" clearable @keyup.enter.native="handleQuery" /> </el-form-item> - <el-form-item label="鎮h�呰寖鍥�" prop="tagId"> - <el-select - v-model="queryParams.searchscope" - placeholder="璇烽�夋嫨鎮h�呰寖鍥�" - > - <el-option - v-for="item in source" - :key="item.value" - :label="item.label" - :value="item.value" - > - </el-option> - </el-select> - </el-form-item> + <el-form-item label="鎮h�呰寖鍥�" prop="status"> + <el-cascader + v-model="queryParams.scopetype" + placeholder="榛樿鍏ㄩ儴" + :options="sourcetype" + :props="{ expandTrigger: 'hover' }" + @change="handleChange" + ></el-cascader> + </el-form-item> <el-form-item label=" 鍏ラ櫌鏃ユ湡 " prop="createTime"> - <el-date-picker + <!-- <el-date-picker v-model="dateRange" style="width: 240px" value-format="yyyy-MM-dd" @@ -67,7 +62,16 @@ range-separator="-" start-placeholder="寮�濮嬫棩鏈�" end-placeholder="缁撴潫鏃ユ湡" - ></el-date-picker> + ></el-date-picker> --> + <el-date-picker + v-model="dateRange" + type="datetimerange" + value-format="yyyy-MM-dd HH:mm:ss" + start-placeholder="寮�濮嬫棩鏈�" + end-placeholder="缁撴潫鏃ユ湡" + :default-time="['12:00:00']" + > + </el-date-picker> </el-form-item> <el-row> @@ -218,16 +222,16 @@ align="center" key="deptname" prop="deptname" - width="120" + width="180" /> <el-table-column label="鐥呭尯" align="center" key="leavehospitaldistrictname" prop="leavehospitaldistrictname" - width="120" + width="180" /> - <!-- <el-table-column + <el-table-column label="搴婁綅鍙�" align="center" key="bedNo" @@ -247,13 +251,12 @@ key="nurseName" prop="nurseName" width="120" - /> --> + /> <el-table-column label="鎿嶄綔" fixed="right" align="center" - width="160" class-name="small-padding fixed-width" > <template slot-scope="scope"> @@ -453,6 +456,22 @@ label: "鐥呭尯鎮h��", }, ], + sourcetype: [ + { + value: 1, + label: "绉戝", + children: [], + }, + { + value: 2, + label: "鐥呭尯", + children: [], + }, + { + value: 3, + label: "鍏ㄩ儴", + }, + ], // 琛ㄥ崟鍙傛暟 form: { name: "", @@ -508,11 +527,9 @@ pageSize: 10, cry: 0, searchscope: 2, - idcardno: undefined, - name: undefined, - status: undefined, - tagIds: undefined, - telcode: undefined, + scopetype: [], + leaveldeptcodes: [], + leavehospitaldistrictcodes: [], }, // 琛ㄥ崟鏍¢獙 rules: { @@ -572,21 +589,24 @@ this.getList(); this.listDept(); this.gettabList(); + this.sourcetype[0].children = store.getters.belongDepts.map((dept) => { + return { + label: dept.deptName, + value: dept.deptCode, + }; + }); + this.sourcetype[1].children = store.getters.belongWards.map((dept) => { + return { + label: dept.districtName, + value: dept.districtCode, + }; + }); }, methods: { /** 鏌ヨ鎮h�呭垪琛� */ getList() { this.loading = true; - if (this.queryParams.searchscope == 1) { - this.queryParams.leaveldeptcodes = store.getters.belongDepts.map( - (obj) => obj.deptCode - ); - this.queryParams.leavehospitaldistrictcodes = null; - } else if (this.queryParams.searchscope == 2) { - this.queryParams.leavehospitaldistrictcodes = - store.getters.belongWards.map((obj) => obj.districtCode); - this.queryParams.leaveldeptcodes = null; - } else { + if (this.queryParams.searchscope == 3) { this.queryParams.leaveldeptcodes = store.getters.belongDepts.map( (obj) => obj.deptCode ); @@ -605,6 +625,25 @@ this.deptList = res.data; console.log(this.deptList, "this.deptList"); }); + }, + // 鎮h�呰寖鍥村鐞� + handleChange(value) { + let type = value[0]; + let code = value.slice(-1)[0]; + this.queryParams.leavehospitaldistrictcodes = []; + this.queryParams.leaveldeptcodes = []; + + if (type == 1) { + this.queryParams.leaveldeptcodes.push(code); + this.queryParams.leavehospitaldistrictcodes = []; + this.queryParams.searchscope = 1; + } else if (type == 2) { + this.queryParams.leavehospitaldistrictcodes.push(code); + this.queryParams.leaveldeptcodes = []; + this.queryParams.searchscope = 2; + } else { + this.queryParams.searchscope = 3; + } }, /** 鏌ヨ鏍囩鍒楄〃 */ gettabList() { @@ -662,8 +701,8 @@ }, /** 鎼滅储鎸夐挳鎿嶄綔 */ handleQuery() { - this.queryParams.startInHospTime = this.dateRange[0]; - this.queryParams.endInHospTime = this.dateRange[1]; + this.queryParams.beginTime = this.dateRange[0]; + this.queryParams.endTime = this.dateRange[1]; this.queryParams.pageNum = 1; this.getList(); }, @@ -671,7 +710,12 @@ resetQuery() { this.dateRange = []; this.resetForm("queryForm"); - this.$refs.tree.setCurrentKey(null); + this.queryParams= { + pageNum: 1, + pageSize: 10, + cry: 0, + searchscope: 2, + }, this.handleQuery(); }, // 澶氶�夋閫変腑鏁版嵁 -- Gitblit v1.9.3