From a5cba9ab040f6f97558046885dce3017f9bab7e9 Mon Sep 17 00:00:00 2001
From: WXL (wul) <wl_5969728@163.com>
Date: 星期二, 11 八月 2026 14:12:29 +0800
Subject: [PATCH] 提交
---
src/views/patient/patient/outpatient.vue | 50 ++++++++++++++++++++++++++++++++++++++++++--------
1 files changed, 42 insertions(+), 8 deletions(-)
diff --git a/src/views/patient/patient/outpatient.vue b/src/views/patient/patient/outpatient.vue
index 528d697..5e18d72 100644
--- a/src/views/patient/patient/outpatient.vue
+++ b/src/views/patient/patient/outpatient.vue
@@ -62,6 +62,8 @@
v-model="queryParams.scopetype"
placeholder="榛樿鍏ㄩ儴"
:options="sourcetype"
+ filterable
+ clearable
:props="{ expandTrigger: 'hover' }"
@change="handleChange"
></el-cascader>
@@ -164,6 +166,18 @@
鎵归噺娣诲姞浠诲姟</el-button
>
</el-col>
+ <el-col :span="1.5">
+ <el-button
+ type="success"
+ plain
+ icon="el-icon-folder-add"
+ size="medium"
+ :disabled="multiple"
+ @click="handleCreateArchive"
+ >
+ 鎮h�呭缓妗�</el-button
+ >
+ </el-col>
<el-col :span="19">
<div class="documentf">
<div class="document">
@@ -211,7 +225,7 @@
align="center"
key="admitdate"
prop="admitdate"
- width="160"
+ width="140"
>
<template slot-scope="scope">
<span>{{ formatTime(scope.row.admitdate) }}</span>
@@ -225,6 +239,7 @@
/> -->
<el-table-column
label="鐥呮鍙�"
+ width="100"
align="center"
key="outhospno"
prop="outhospno"
@@ -297,7 +312,6 @@
align="center"
key="diagname"
prop="diagname"
- width="190"
/>
<!-- <el-table-column
label="涓昏堪"
@@ -311,14 +325,12 @@
align="center"
key="deptname"
prop="deptname"
- width="120"
/>
<el-table-column
label="鎺ヨ瘖鍖荤敓"
align="center"
key="drname"
prop="drname"
- width="120"
/>
<el-table-column
label="鏄惁瀛樺湪浠诲姟"
@@ -341,7 +353,6 @@
label="鎿嶄綔"
fixed="right"
align="center"
- width="160"
class-name="small-padding fixed-width"
>
<template slot-scope="scope">
@@ -570,6 +581,13 @@
<el-button @click="submitclose">鍙� 娑�</el-button>
</div>
</el-dialog>
+
+ <!-- 鎮h�呭缓妗e脊绐� -->
+ <ArchiveDialog
+ :visible.sync="archiveDialogVisible"
+ :patients="archivePatients"
+ source-page="outpatient"
+ />
</div>
</template>
@@ -592,11 +610,12 @@
import store from "@/store";
import { type } from "jquery";
+import ArchiveDialog from "@/views/patient/archives/components/ArchiveDialog.vue";
export default {
name: "Userhuanze",
dicts: ["sys_normal_disable", "sys_user_sex"],
- components: { Treeselect },
+ components: { Treeselect, ArchiveDialog },
data() {
return {
// 閬僵灞�
@@ -657,6 +676,9 @@
taskList: [], // 浠诲姟鍒楄〃
selectedTask: null, // 閫変腑鐨勪换鍔″垪琛�
batchLoading: false, // 鎵归噺鎻愪氦鍔犺浇鐘舵��
+ // 鎮h�呭缓妗�
+ archiveDialogVisible: false,
+ archivePatients: [],
deptcode: "",
Patientrange: [
{
@@ -668,6 +690,7 @@
id: 1,
},
],
+ orgName:localStorage.getItem("orgname"),
postData: {
XiaoXiTou: {
FaSongFCSJC: "ZJHES",
@@ -885,8 +908,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鏌ヨ鏃犵粨鏋�");
}
@@ -1202,6 +1225,17 @@
/** 鎵归噺娣诲姞鎮h�呬换鍔℃帴鍙� */
batchAddPatientTask(params) {},
+ /** 鎮h�呭缓妗� */
+ handleCreateArchive() {
+ if (this.ids.length === 0) {
+ this.$modal.msgWarning("璇疯嚦灏戦�変腑1鍚嶆偅鑰�");
+ return;
+ }
+ this.archivePatients = this.userList.filter((item) =>
+ this.ids.includes(item.patid)
+ );
+ this.archiveDialogVisible = true;
+ },
},
};
</script>
--
Gitblit v1.9.3