From fc44d69e2243a55d28b087c229a05b34b26330b8 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E6=9D=8E=E5=8A=B2=E9=BE=99?= <2860996570@qq.com>
Date: Mon, 30 Oct 2023 10:00:19 +0800
Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=94=B9=E4=BA=86=E7=94=BB=E5=83=8F?=
=?UTF-8?q?=EF=BC=8C=E6=A0=87=E7=AD=BE=EF=BC=8C=E4=B8=AD=E8=8D=AF?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/App.vue | 4 +-
src/api/Myapi/frimCenter/index.js | 16 +-
src/api/Myapi/productDetails/index.js | 3 +-
.../drugInfo/drugBasicInfo/drugBasicInfo.vue | 68 +++--
src/views/firmContent/drugInfo/index.vue | 133 +++++++--
.../drugInfo/zhongyao/drugBasicInfo.vue | 263 ++++++++++++++++++
.../drugInfo/zhongyao/qxBasicInfo/index.vue | 28 ++
.../zhongyaobiangeng/adverseReaction.vue | 205 ++++++++++++++
8 files changed, 660 insertions(+), 60 deletions(-)
create mode 100644 src/views/firmContent/drugInfo/zhongyao/drugBasicInfo.vue
create mode 100644 src/views/firmContent/drugInfo/zhongyao/qxBasicInfo/index.vue
create mode 100644 src/views/firmContent/drugInfo/zhongyaobiangeng/adverseReaction.vue
diff --git a/src/App.vue b/src/App.vue
index 25c1f63..5f2150d 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -42,12 +42,14 @@ export default {
const flag = params.get("flag");
const data = params.get("data");
const token = params.get("token");
+ const leixing = params.get("leixing") || "";
let obj = {
type,
flag,
data,
- token
+ token,
+ leixing
}
console.log(888,obj);
if (
diff --git a/src/api/Myapi/frimCenter/index.js b/src/api/Myapi/frimCenter/index.js
index 125c6d4..1bb462f 100644
--- a/src/api/Myapi/frimCenter/index.js
+++ b/src/api/Myapi/frimCenter/index.js
@@ -95,5 +95,19 @@ export default {
},
params
});
- }
+ },
+ //分页条件查询传统中药制剂备案-历史变更记录
+ deasCorpTcmpFilingChangeHis(params) {
+ return request({
+ url: `/pharmaceuticals/deasCorpTcmpFilingChangeHis`,
+ method: "get",
+ params
+ });
+ },
+ deasCorpTcmpFiling(id) {
+ return request({
+ url: `/pharmaceuticals/deasCorpTcmpFiling/${id}`,
+ method: "get",
+ });
+ },
};
diff --git a/src/api/Myapi/productDetails/index.js b/src/api/Myapi/productDetails/index.js
index fd776df..800f1a9 100644
--- a/src/api/Myapi/productDetails/index.js
+++ b/src/api/Myapi/productDetails/index.js
@@ -27,5 +27,6 @@ export default {
url: `/pharmaceuticals/ylqxJnyelcp/${data}`,
method: "get",
});
- }
+ },
+
}
\ No newline at end of file
diff --git a/src/views/firmContent/drugInfo/drugBasicInfo/drugBasicInfo.vue b/src/views/firmContent/drugInfo/drugBasicInfo/drugBasicInfo.vue
index 1b21b2d..ec66378 100644
--- a/src/views/firmContent/drugInfo/drugBasicInfo/drugBasicInfo.vue
+++ b/src/views/firmContent/drugInfo/drugBasicInfo/drugBasicInfo.vue
@@ -5,14 +5,8 @@