From bc9538a9e071259ca8bbb6de52c60c9d7a55a03b Mon Sep 17 00:00:00 2001
From: WXL (wul) <wl_5969728@163.com>
Date: 星期三, 23 九月 2026 14:02:44 +0800
Subject: [PATCH] 测试完成
---
src/views/patient/patient/hospital.vue | 48 ++++++++++++++++++++++++++++++++++++++++--------
1 files changed, 40 insertions(+), 8 deletions(-)
diff --git a/src/views/patient/patient/hospital.vue b/src/views/patient/patient/hospital.vue
index 69db263..9058f8a 100644
--- a/src/views/patient/patient/hospital.vue
+++ b/src/views/patient/patient/hospital.vue
@@ -60,6 +60,8 @@
v-model="queryParams.scopetype"
placeholder="榛樿鍏ㄩ儴绉戝"
:options="sourcetype"
+ filterable
+ clearable
:props="{ expandTrigger: 'hover' }"
@change="handleChange"
></el-cascader>
@@ -74,6 +76,17 @@
start-placeholder="寮�濮嬫棩鏈�"
end-placeholder="缁撴潫鏃ユ湡"
></el-date-picker>
+ </el-form-item>
+ <el-form-item label="搴婂彿鎺掑簭" prop="bedSort">
+ <el-select
+ v-model="queryParams.bedSort"
+ placeholder="涓嶆寜搴婂彿鎺掑簭"
+ style="width: 160px"
+ >
+ <el-option label="涓嶆寜搴婂彿鎺掑簭" :value="null"></el-option>
+ <el-option label="鎸夊簥鍙锋搴�" :value="1"></el-option>
+ <el-option label="鎸夊簥鍙峰�掑簭" :value="2"></el-option>
+ </el-select>
</el-form-item>
<el-row>
@@ -115,7 +128,7 @@
size="medium"
:disabled="single"
@click="handleUpdate"
- v-hasPermi="['system:user:edit']"
+
>淇敼</el-button
>
</el-col> -->
@@ -203,7 +216,7 @@
scope.row.idcardno,
scope.row.drcode,
scope.row.drname,
- scope.row.patid,
+ scope.row.patid
)
"
><span class="button-textsc">{{
@@ -402,7 +415,11 @@
width="120"
align="center"
/>
- <el-table-column prop="leaveldeptname" label="绉戝" align="center" />
+ <el-table-column
+ prop="leaveldeptname"
+ label="绉戝"
+ align="center"
+ />
<el-table-column
prop="leavehospitaldistrictname"
label="鐥呭尯"
@@ -429,7 +446,7 @@
<el-table
:data="taskList"
border
- height="680"
+ height="680"
style="width: 100%"
size="small"
@current-change="handleTaskSelectionChange"
@@ -613,7 +630,12 @@
import Treeselect from "@riophae/vue-treeselect";
import { listDept } from "@/api/system/dept";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
-import { query360PatInfo,query360PatInfonh, getTasklist, addSubtask } from "@/api/AiCentre/index";
+import {
+ query360PatInfo,
+ query360PatInfonh,
+ getTasklist,
+ addSubtask,
+} from "@/api/AiCentre/index";
import store from "@/store";
@@ -783,6 +805,7 @@
pageNum: 1,
pageSize: 10,
cry: 1,
+ bedSort: null,
searchscope: 3,
scopetype: [],
leaveldeptcodes: [],
@@ -843,8 +866,8 @@
const orgname = localStorage.getItem("orgname");
if (orgname == "鍗楀崕澶у闄勫睘绗竴鍖婚櫌") {
query360PatInfonh(id).then((res) => {
- if (res.url) {
- window.open(res.url, "_blank");
+ if (res.data) {
+ window.open(res.data, "_blank");
} else {
this.$modal.msgWarning("360鏌ヨ鏃犵粨鏋�");
}
@@ -925,7 +948,12 @@
pageSize: 100, // 璁剧疆杈冨ぇ鐨勫垎椤佃幏鍙栨洿澶氫换鍔�
type: 2, // 鏍规嵁瀹為檯鎯呭喌璋冩暣
};
-
+ topqueryParams.deptcodes = store.getters.belongDepts.map(
+ (obj) => obj.deptCode
+ );
+ topqueryParams.hospitaldistrictcodes = store.getters.belongWards.map(
+ (obj) => obj.districtCode
+ );
getTasklist(topqueryParams)
.then((response) => {
this.taskList = response.rows;
@@ -1013,6 +1041,9 @@
}
this.batchTaskVisible = false;
+ this.$router.push({
+ path: "/followvisit/Continue",
+ });
this.getList(); // 鍒锋柊鎮h�呭垪琛�
} catch (error) {
this.$modal.msgError("鎵归噺娣诲姞浠诲姟杩囩▼涓嚭閿欙細" + error.message);
@@ -1128,6 +1159,7 @@
pageNum: 1,
pageSize: 10,
cry: 1,
+ bedSort: null,
searchscope: 3,
scopetype: [],
leaveldeptcodes: [],
--
Gitblit v1.9.3