From 2698387e653c6a25059c3ae9976f18b814eba892 Mon Sep 17 00:00:00 2001
From: WXL <wl_5969728@163.com>
Date: 星期五, 12 九月 2025 15:16:46 +0800
Subject: [PATCH] 医疗权限
---
src/views/project/indexstatistics/index.vue | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
diff --git a/src/views/project/indexstatistics/index.vue b/src/views/project/indexstatistics/index.vue
index 194474d..fc284ba 100644
--- a/src/views/project/indexstatistics/index.vue
+++ b/src/views/project/indexstatistics/index.vue
@@ -602,6 +602,7 @@
import { listOrganallocation } from "@/api/project/organallocation";
import RankChart from "./components/rankbarchart";
+import request from '@/utils/request'
import OrganNumChart from "./components/organnumchart";
import { listDonatebaseinfo } from "@/api/project/donatebaseinfo";
import dayjs from "dayjs";
@@ -649,6 +650,7 @@
year: "閫夋嫨骞翠唤",
isloading: false,
maxHeight: 0,
+ areaJson: "/project/dict/treeselect", // 鎻愬墠瀛樺偍鍦板潃鏁版嵁鎺ュ彛
CommonOrgan: null,
provinceData: [
{ label: "鍏ㄩ儴鍦板競", value: "" },
@@ -698,6 +700,38 @@
value1: 0,
code: "C22"
+ },
+ {
+ key: "Lefthalfliver",
+ name: "宸﹀崐鑲�",
+ value: 0,
+ value1: 0,
+
+ code: "C22L"
+ },
+ {
+ key: "Leftouterlobe",
+ name: "宸﹀鍙�",
+ value: 0,
+ value1: 0,
+
+ code: "C22L0"
+ },
+ {
+ key: "Righthalfliver",
+ name: "鍙冲崐鑲�",
+ value: 0,
+ value1: 0,
+
+ code: "C22R"
+ },
+ {
+ key: "RML",
+ name: "鍙充笁鍙�",
+ value: 0,
+ value1: 0,
+
+ code: "C22R0"
},
{
@@ -882,6 +916,7 @@
this.value = "鏉窞甯�";
this.GetOrgDonateNumNew();
this.GetOrgDonateNum();
+ this.getAddressData();
});
},
methods: {
@@ -906,6 +941,20 @@
}
});
},
+ // 鎻愬墠缂撳瓨鏁版嵁
+ getAddressData() {
+ var that = this;
+ request({
+ url: that.areaJson,
+ method: "get",
+ }).then(function (response) {
+ if (response.code === 200) {
+ //鑾峰彇鍦板潃
+ let addressArray = response.data;
+ this.$store.commit('updateMyData', addressArray);
+ }
+ });
+ },
// 纭畾宸茶
clickMessageDetailed(item) {
let data = item;
--
Gitblit v1.9.3