diff --git a/src/App.vue b/src/App.vue
index e66704d..d11c4fb 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -5,6 +5,7 @@
@@ -53,6 +52,7 @@ export default {
width: 0 !important;
}
::-webkit-scrollbar {
- width: 0 !important;height: 0;
+ width: 0 !important;
+ height: 0;
}
diff --git a/src/api/cosmetics/index.js b/src/api/cosmetics/index.js
index 603e8de..f61b7fe 100644
--- a/src/api/cosmetics/index.js
+++ b/src/api/cosmetics/index.js
@@ -28,4 +28,18 @@ export default {
method: "get",
})
},
+ //通过批准文号查询单条药品批件信息
+ getYaoPin(e){
+ return request({
+ url: `/pharmaceuticals/vRdgYpwhGxwz/${e}`,
+ method: "get",
+ })
+ },
+ //通过注册证编号查询单条器械品种数据
+ getQiXie(e){
+ return request({
+ url: `/pharmaceuticals/ylqxJnyelcp/${e}`,
+ method: "get",
+ })
+ }
}
\ No newline at end of file
diff --git a/src/api/index.js b/src/api/index.js
index a01f69d..eb6370f 100644
--- a/src/api/index.js
+++ b/src/api/index.js
@@ -1,7 +1,9 @@
// 召回
import frimCenter from "./Myapi/frimCenter/index.js";
-
+import cosmetics from './cosmetics/index.js'
+import yaoPin from './yaoPin/index.js'
export default {
frimCenter,
cosmetics,
+ yaoPin
};
diff --git a/src/api/yaoPin/index.js b/src/api/yaoPin/index.js
new file mode 100644
index 0000000..65963c8
--- /dev/null
+++ b/src/api/yaoPin/index.js
@@ -0,0 +1,26 @@
+import request from "@/utils/request";
+export default {
+ //分页条件查询国家药品抽检数据-抽样信息表
+ getYPList(query) {
+ return request({
+ url: `/pharmaceuticals/gjypcjsjCyxxb`,
+ method: "get",
+ params:query
+ })
+ },
+ //通过主键查询单条国家药品抽检数据-抽样信息表
+ getSingle(id){
+ return request({
+ url: `/pharmaceuticals/gjypcjsjCyxxb/${id}`,
+ method: "get",
+ })
+ },
+ //分页条件查询国家药品抽检数据-检验项目表
+ jyList(query){
+ return request({
+ url: `/pharmaceuticals/gjypcjsjJyxmb`,
+ method: "get",
+ params:query
+ })
+ }
+}
\ No newline at end of file
diff --git a/src/components/Pagination/index.vue b/src/components/Pagination/index.vue
index 56f5a6b..cb95d5a 100644
--- a/src/components/Pagination/index.vue
+++ b/src/components/Pagination/index.vue
@@ -1,113 +1,127 @@
-