Compare commits
3 Commits
Lvtianfang
...
duhanyu
Author | SHA1 | Date |
---|---|---|
|
e98d558676 | 2 years ago |
|
e764c12f0e | 2 years ago |
|
5905dc1d06 | 2 years ago |
@ -1,45 +0,0 @@
|
||||
import request from "@/utils/request";
|
||||
export default {
|
||||
// 通过批准文号查询单条药品批件信息
|
||||
vRdgYpwhGxwz(data) {
|
||||
return request({
|
||||
url: `/pharmaceuticals/vRdgYpwhGxwz/${data}`,
|
||||
method: "get",
|
||||
});
|
||||
},
|
||||
// 根据备案号查询进口化妆品数据
|
||||
jkcp(data) {
|
||||
return request({
|
||||
url: `/pharmaceuticals/jkcp/${data}`,
|
||||
method: "get",
|
||||
});
|
||||
},
|
||||
// 通过注册证号查询单条进口特殊化妆品数据
|
||||
jktshzp(data) {
|
||||
return request({
|
||||
url: `/pharmaceuticals/jktshzp/${data}`,
|
||||
method: "get",
|
||||
});
|
||||
},
|
||||
// 根据备案号查询单条国产化妆品数据
|
||||
gccp(data) {
|
||||
return request({
|
||||
url: `/pharmaceuticals/gccp/${data}`,
|
||||
method: "get",
|
||||
});
|
||||
},
|
||||
// 通过注册证号查询单条国产特殊化妆品
|
||||
gctshzp(data) {
|
||||
return request({
|
||||
url: `/pharmaceuticals/gctshzp/${data}`,
|
||||
method: "get",
|
||||
});
|
||||
},
|
||||
// 通过注册证编号查询单条器械品种数据
|
||||
ylqxJnyelcp(data) {
|
||||
return request({
|
||||
url: `/pharmaceuticals/ylqxJnyelcp/${data}`,
|
||||
method: "get",
|
||||
});
|
||||
}
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
import request from "@/utils/request";
|
||||
export default {
|
||||
//根据备案号查询单条国产化妆品数据
|
||||
getChina1(e) {
|
||||
return request({
|
||||
url: `/pharmaceuticals/gccp/${e}`,
|
||||
method: "get",
|
||||
})
|
||||
},
|
||||
//通过注册证号查询单条国产特殊化妆品
|
||||
getChinaSpecial(e) {
|
||||
return request({
|
||||
url: `pharmaceuticals/gctshzp/${e}`,
|
||||
method: "get",
|
||||
})
|
||||
},
|
||||
//根据备案号查询进口化妆品数据
|
||||
getInlet(e) {
|
||||
return request({
|
||||
url: `/pharmaceuticals/jkcp/${e}`,
|
||||
method: "get",
|
||||
})
|
||||
},
|
||||
//通过注册证号查询单条进口特殊化妆品数据
|
||||
getInletSpecial(e) {
|
||||
return request({
|
||||
url: `/pharmaceuticals/jktshzp/${e}`,
|
||||
method: "get",
|
||||
})
|
||||
},
|
||||
//通过批准文号查询单条药品批件信息
|
||||
getYaoPin(e){
|
||||
return request({
|
||||
url: `/pharmaceuticals/vRdgYpwhGxwz/${e}`,
|
||||
method: "get",
|
||||
})
|
||||
},
|
||||
//通过注册证编号查询单条器械品种数据
|
||||
getQiXie(e){
|
||||
return request({
|
||||
url: `/pharmaceuticals/ylqxJnyelcp/${e}`,
|
||||
method: "get",
|
||||
})
|
||||
}
|
||||
}
|
@ -1,8 +1,9 @@
|
||||
// 召回
|
||||
import frimCenter from "./Myapi/frimCenter/index.js";
|
||||
import productDetails from "./Myapi/productDetails/index.js"
|
||||
|
||||
import cosmetics from './cosmetics/index.js'
|
||||
import yaoPin from './yaoPin/index.js'
|
||||
export default {
|
||||
frimCenter,
|
||||
productDetails
|
||||
cosmetics,
|
||||
yaoPin
|
||||
};
|
||||
|
@ -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
|
||||
})
|
||||
}
|
||||
}
|
@ -0,0 +1,45 @@
|
||||
<template>
|
||||
<div>
|
||||
<el-table :data="list" style="width: 100%" v-loading="loading" border>
|
||||
<el-table-column type="index" label="序号" width="50">
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
v-for="(item,index) in labels"
|
||||
:key="index"
|
||||
:prop="item.value"
|
||||
header-align="center"
|
||||
:width="item.width"
|
||||
:label="item.header"
|
||||
>
|
||||
</el-table-column>
|
||||
|
||||
</el-table>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
};
|
||||
},
|
||||
props:{
|
||||
list:{
|
||||
type:Array,
|
||||
default:[]
|
||||
},
|
||||
labels:{
|
||||
type:Array,
|
||||
default:[]
|
||||
},
|
||||
loading:{
|
||||
type:Boolean,
|
||||
default:false
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
</style>
|
||||
|
@ -1,152 +1,473 @@
|
||||
<template>
|
||||
<block-header title="国家药品抽检信息">
|
||||
<my-descriptions :descriptions="descriptions" width></my-descriptions>
|
||||
<my-descriptions
|
||||
:descriptions="descriptions"
|
||||
width
|
||||
v-loading="loading"
|
||||
></my-descriptions>
|
||||
</block-header>
|
||||
</template>
|
||||
<script>
|
||||
import blockHeader from "@/views/firmContent/components/blockHeader/index.vue"
|
||||
import myDescriptions from "@/views/firmContent/components/descriptions/index.vue"
|
||||
import blockHeader from "@/views/firmContent/components/blockHeader/index.vue";
|
||||
import myDescriptions from "@/views/firmContent/components/descriptions/index.vue";
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
descriptions:[
|
||||
{
|
||||
id:1,
|
||||
label:'药品通用名称',
|
||||
value:'注射用冷冻干燥用氯化丁基橡胶塞'
|
||||
},{
|
||||
id:2,
|
||||
label:'药品商品名称',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:3,
|
||||
label:'药品批准文号',
|
||||
value:'药包材登记号B20190008023'
|
||||
},{
|
||||
id:4,
|
||||
label:'药品类别',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:5,
|
||||
label:'药品上市许可持有人',
|
||||
value:'重庆市沛玲三海兰陵有限责任公司'
|
||||
},{
|
||||
id:6,
|
||||
label:'药品上市许可持有人统一社会信用代码',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:7,
|
||||
label:'药品上市许可持有人地址',
|
||||
value:'xxxxxxxxxxxxx'
|
||||
},{
|
||||
id:8,
|
||||
label:'药品上市许可持有人所在省份',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:9,
|
||||
label:'剂型',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:10,
|
||||
label:'制剂规格',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:11,
|
||||
label:'包装规格',
|
||||
value:'xxxxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:12,
|
||||
label:'抽样编号',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:13,
|
||||
label:'抽样数量',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:14,
|
||||
label:'效期',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:15,
|
||||
label:'来源',
|
||||
value:'xxxxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:16,
|
||||
label:'抽样环节',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:17,
|
||||
label:'批号',
|
||||
value:'xxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:18,
|
||||
label:'有效期截止日期',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:19,
|
||||
label:'被抽样单位统一社会信用代码',
|
||||
value:'xxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:20,
|
||||
label:'被抽样单位名称',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:21,
|
||||
label:'被抽样单位地址',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:22,
|
||||
label:'抽样地点性质',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:23,
|
||||
label:'药品单价',
|
||||
value:'xxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:24,
|
||||
label:'抽样单位所在省份',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:25,
|
||||
label:'生产日期',
|
||||
value:'xxxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:26,
|
||||
label:'药品总价',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:27,
|
||||
label:'药品存放现场湿度',
|
||||
value:'xxxxxxxx'
|
||||
},{
|
||||
id:28,
|
||||
label:'样品存放现场温度',
|
||||
value:'xxxxxxxxxxxxxxx'
|
||||
},{
|
||||
id:29,
|
||||
label:'抽样级别',
|
||||
value:'xxxxxxx'
|
||||
},{
|
||||
id:30,
|
||||
label:'抽样日期',
|
||||
value:'xxxxxxxxxxxx'
|
||||
},{
|
||||
id:31,
|
||||
label:'承检机构',
|
||||
value:'xxxxxxxxx'
|
||||
},{
|
||||
id:32,
|
||||
label:'抽样单位经手人',
|
||||
value:'xxxxxxxxxxxxxx'
|
||||
},
|
||||
]
|
||||
// descriptions:[
|
||||
// {
|
||||
// id:1,
|
||||
// label:'药品通用名称',
|
||||
// value:'注射用冷冻干燥用氯化丁基橡胶塞'
|
||||
// },{
|
||||
// id:2,
|
||||
// label:'药品商品名称',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:3,
|
||||
// label:'药品批准文号',
|
||||
// value:'药包材登记号B20190008023'
|
||||
// },{
|
||||
// id:4,
|
||||
// label:'药品类别',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:5,
|
||||
// label:'药品上市许可持有人',
|
||||
// value:'重庆市沛玲三海兰陵有限责任公司'
|
||||
// },{
|
||||
// id:6,
|
||||
// label:'药品上市许可持有人统一社会信用代码',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:7,
|
||||
// label:'药品上市许可持有人地址',
|
||||
// value:'xxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:8,
|
||||
// label:'药品上市许可持有人所在省份',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:9,
|
||||
// label:'剂型',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:10,
|
||||
// label:'制剂规格',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:11,
|
||||
// label:'包装规格',
|
||||
// value:'xxxxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:12,
|
||||
// label:'抽样编号',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:13,
|
||||
// label:'抽样数量',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:14,
|
||||
// label:'效期',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:15,
|
||||
// label:'来源',
|
||||
// value:'xxxxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:16,
|
||||
// label:'抽样环节',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:17,
|
||||
// label:'批号',
|
||||
// value:'xxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:18,
|
||||
// label:'有效期截止日期',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:19,
|
||||
// label:'被抽样单位统一社会信用代码',
|
||||
// value:'xxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:20,
|
||||
// label:'被抽样单位名称',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:21,
|
||||
// label:'被抽样单位地址',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:22,
|
||||
// label:'抽样地点性质',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:23,
|
||||
// label:'药品单价',
|
||||
// value:'xxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:24,
|
||||
// label:'抽样单位所在省份',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:25,
|
||||
// label:'生产日期',
|
||||
// value:'xxxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:26,
|
||||
// label:'药品总价',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:27,
|
||||
// label:'药品存放现场湿度',
|
||||
// value:'xxxxxxxx'
|
||||
// },{
|
||||
// id:28,
|
||||
// label:'样品存放现场温度',
|
||||
// value:'xxxxxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:29,
|
||||
// label:'抽样级别',
|
||||
// value:'xxxxxxx'
|
||||
// },{
|
||||
// id:30,
|
||||
// label:'抽样日期',
|
||||
// value:'xxxxxxxxxxxx'
|
||||
// },{
|
||||
// id:31,
|
||||
// label:'承检机构',
|
||||
// value:'xxxxxxxxx'
|
||||
// },{
|
||||
// id:32,
|
||||
// label:'抽样单位经手人',
|
||||
// value:'xxxxxxxxxxxxxx'
|
||||
// },
|
||||
// ],
|
||||
// descriptions: [
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "药品通用名称",
|
||||
// value: "",
|
||||
// data: "yptymc",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "药品商品名称",
|
||||
// value: "",
|
||||
// data: "ypspmc",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "药品批准文号",
|
||||
// value: "",
|
||||
// data: "yppzwh",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "药品类别",
|
||||
// value: "",
|
||||
// data: "yplb",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "药品上市许可持有人",
|
||||
// value: "",
|
||||
// data: "ypssxkcyr",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "药品上市许可持有人统一社会信用代码",
|
||||
// value: "",
|
||||
// data: "ypssxkcyrtyshxxdm",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "药品上市许可持有人地址",
|
||||
// value: "",
|
||||
// data: "ypssxkcyrdz",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "药品上市持有人所在省份",
|
||||
// value: "",
|
||||
// data: "ypssxkcyrszsf",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "剂型",
|
||||
// value: "",
|
||||
// data: "jx",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "制剂规格",
|
||||
// value: "",
|
||||
// data: "zjgg",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "包装规格",
|
||||
// value: "",
|
||||
// data: "bzgg",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "抽样编号",
|
||||
// value: "",
|
||||
// data: "cybh",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "抽样数量",
|
||||
// value: "",
|
||||
// data: "cysl",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "有效期",
|
||||
// value: "",
|
||||
// data: "xq",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "来源",
|
||||
// value: "",
|
||||
// data: "ly",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "抽样环节",
|
||||
// value: "",
|
||||
// data: "cyhj",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "批号",
|
||||
// value: "",
|
||||
// data: "ph",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "有效期截至日期",
|
||||
// value: "",
|
||||
// data: "yxqjzrq",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "被抽样单位统一社会信用代码",
|
||||
// value: "",
|
||||
// data: "bcydwshyxdm",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "被抽样单位名称",
|
||||
// value: "",
|
||||
// data: "bcydwmc",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "被抽样单位地址",
|
||||
// value: "",
|
||||
// data: "bcydwdz",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "抽样地点性质",
|
||||
// value: "",
|
||||
// data: "cyddxz",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "抽样单位名称全称",
|
||||
// value: "",
|
||||
// data: "cydwmc",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "抽样单位所在省份",
|
||||
// value: "",
|
||||
// data: "cydwszsf",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "药品单价",
|
||||
// value: "",
|
||||
// data: "ypdj",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "药品总价",
|
||||
// value: "",
|
||||
// data: "ypzj",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "生产日期",
|
||||
// value: "",
|
||||
// data: "scrq",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "样品存放现场温度",
|
||||
// value: "",
|
||||
// data: "ypcfxcwd",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "样品存放现场湿度",
|
||||
// value: "",
|
||||
// data: "ypcfxcsd",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "抽样日期",
|
||||
// value: "",
|
||||
// data: "cyrq",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "抽样级别",
|
||||
// value: "",
|
||||
// data: "cyjb",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "抽样单位经手人",
|
||||
// value: "",
|
||||
// data: "cydwjsr",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "承检机构",
|
||||
// value: "",
|
||||
// data: "cjjg",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "生产企业是否否认生产",
|
||||
// value: "",
|
||||
// data: "scqysffrsc",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "基本药物 ",
|
||||
// value: "",
|
||||
// data: "jbyw",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "抽样任务",
|
||||
// value: "",
|
||||
// data: "cyrw",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "最终检验结论",
|
||||
// value: "",
|
||||
// data: "zzjyjl",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "检验证书编号",
|
||||
// value: "",
|
||||
// data: "jybgsbh",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "报告签发日期",
|
||||
// value: "",
|
||||
// data: "bgqfrq",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "复检结论",
|
||||
// value: "",
|
||||
// data: "fjjl",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "复检检验依据",
|
||||
// value: "",
|
||||
// data: "fjjyyj",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "复检报告书编号",
|
||||
// value: "",
|
||||
// data: "fjbgsbh",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "复检报告签发日期",
|
||||
// value: "",
|
||||
// data: "fjbgqfrq",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "收样或退样日期",
|
||||
// value: "",
|
||||
// data: "syhtyrq",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "原检结论",
|
||||
// value: "",
|
||||
// data: "yjjl",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "补充检验结果",
|
||||
// value: "",
|
||||
// data: "bcjyjg",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "计划ID",
|
||||
// value: "",
|
||||
// data: "planId",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "计划名称",
|
||||
// value: "",
|
||||
// data: "planName",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "编辑时间",
|
||||
// value: "",
|
||||
// data: "bjsj",
|
||||
// },
|
||||
// {
|
||||
// span: 1,
|
||||
// label: "更新时间",
|
||||
// value: "",
|
||||
// data: "gxsj",
|
||||
// },
|
||||
// ],
|
||||
// loading: true,
|
||||
};
|
||||
},
|
||||
props: {
|
||||
descriptions:{
|
||||
type:Array,
|
||||
default:[]
|
||||
},
|
||||
loading:{
|
||||
type:Boolean,
|
||||
default:true
|
||||
}
|
||||
},
|
||||
components:{blockHeader,myDescriptions},
|
||||
methods:{
|
||||
components: { blockHeader, myDescriptions },
|
||||
created() {
|
||||
},
|
||||
mounted(){
|
||||
},
|
||||
}
|
||||
methods: {
|
||||
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
|
||||
</style>
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,267 +0,0 @@
|
||||
<template>
|
||||
<block-header title="基本信息">
|
||||
<el-descriptions :column="2" :colon="false" border labelClassName='labelClassName' contentClassName="contentClassName">
|
||||
<el-descriptions-item label="产品名称">{{ cpmc }}</el-descriptions-item>
|
||||
<el-descriptions-item label="注册厂家"></el-descriptions-item>
|
||||
<el-descriptions-item label="统一社会信用代码">{{ shxydm }}</el-descriptions-item>
|
||||
<el-descriptions-item label="生产地址">{{ scdz }}</el-descriptions-item>
|
||||
<el-descriptions-item label="注册人住所/备案人注册地址">{{ sczdz }}</el-descriptions-item>
|
||||
<el-descriptions-item label="注册人/备案人所在地区">{{ zcrszx }}</el-descriptions-item>
|
||||
<el-descriptions-item label="注册人/备案人所在市">{{ zcrszshi }}</el-descriptions-item>
|
||||
<el-descriptions-item label="产品类型">{{ cplx }}</el-descriptions-item>
|
||||
<el-descriptions-item label="行政区划代码">{{ xzqydm }}</el-descriptions-item>
|
||||
<el-descriptions-item label="结构特征">{{ ylqxjgtz }}</el-descriptions-item>
|
||||
<el-descriptions-item label="注册证编号/备案号">{{ zczh }}</el-descriptions-item>
|
||||
<el-descriptions-item label="创新产品">{{ sfCxcp }}</el-descriptions-item>
|
||||
<el-descriptions-item label="分类编码">{{ ylqxflbm }}</el-descriptions-item>
|
||||
<el-descriptions-item label="产品管理类别">{{ cplb }}</el-descriptions-item>
|
||||
<el-descriptions-item label="结构及组成或主要组成部分" span="2">{{ jgjzccf }}</el-descriptions-item>
|
||||
<el-descriptions-item label="结构及组成或主要组成部分附件" span="2">
|
||||
<div class="fileBox">
|
||||
<span>
|
||||
<i class="el-icon-s-marketing"></i>
|
||||
</span>
|
||||
<div>{{ jgjzccffj }}</div>
|
||||
<div class="file-icon">
|
||||
<!-- jgjzccflj 下载地址字段 -->
|
||||
<i class="el-icon-download"></i>
|
||||
下载
|
||||
</div>
|
||||
</div>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="适用范围或预期用途" span="2">{{ cpsyfw }}</el-descriptions-item>
|
||||
<el-descriptions-item label="适用范围或预期用途附件" span="2">
|
||||
<div class="fileBox">
|
||||
<span>
|
||||
<i class="el-icon-s-marketing"></i>
|
||||
</span>
|
||||
<div>{{ cpsyfwfj }}</div>
|
||||
<div class="file-icon">
|
||||
<!-- cpsyfwlj -->
|
||||
<i class="el-icon-download"></i>
|
||||
下载
|
||||
</div>
|
||||
</div>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="规格型号/包装规格" span="2">{{ xhgg }}</el-descriptions-item>
|
||||
<el-descriptions-item label="规格型号/包装规格附件" span="2">
|
||||
<div class="fileBox">
|
||||
<span>
|
||||
<i class="el-icon-s-marketing"></i>
|
||||
</span>
|
||||
<div>{{ xhggfj }}</div>
|
||||
<div class="file-icon" @click="downloadFile(xhgglj)">
|
||||
<!-- xhgglj -->
|
||||
<i class="el-icon-download"></i>
|
||||
下载
|
||||
</div>
|
||||
</div>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="产品存储条件/产品有效期" span="2">{{ cpyxq }}</el-descriptions-item>
|
||||
<el-descriptions-item label="批准日期">{{ pzrq }}</el-descriptions-item>
|
||||
<el-descriptions-item label="生效日期">{{ sxrq }}</el-descriptions-item>
|
||||
<el-descriptions-item label="批准有效期">{{ pzyxq }}</el-descriptions-item>
|
||||
<el-descriptions-item label="批准有效期至疫情结束">{{ pzyxqzyqjs }}</el-descriptions-item>
|
||||
<el-descriptions-item label="产品技术要求" span="2">{{ cpjsyq }}</el-descriptions-item>
|
||||
<el-descriptions-item label="产品技术要求附件" span="2">
|
||||
<div class="fileBox">
|
||||
<span>
|
||||
<i class="el-icon-s-marketing"></i>
|
||||
</span>
|
||||
<div>A项目检验报告.doc</div>
|
||||
<div class="file-icon">
|
||||
<!-- cpjsyqlj -->
|
||||
<i class="el-icon-download"></i>
|
||||
下载
|
||||
</div>
|
||||
</div>
|
||||
</el-descriptions-item>
|
||||
<el-descriptions-item label="产品状态"></el-descriptions-item>
|
||||
<el-descriptions-item label="首次上报标志">{{ isUpload == 1 ? "是":"否" }}</el-descriptions-item>
|
||||
<el-descriptions-item label="审批部门/备案部门">{{ spbm }}</el-descriptions-item>
|
||||
<el-descriptions-item label="注册证状态/备案凭证状态">{{ ppztDm }}</el-descriptions-item>
|
||||
<el-descriptions-item label="注销/撤销/吊销/取消备案时间" span="2">{{ zxsj }}</el-descriptions-item>
|
||||
<el-descriptions-item label="原注册证号">{{ yzczh }}</el-descriptions-item>
|
||||
<!-- xkztpfjId附件id字段 -->
|
||||
<el-descriptions-item label="许可证图片附件"></el-descriptions-item>
|
||||
<el-descriptions-item label="延续注册次数">{{ yxzccs }}</el-descriptions-item>
|
||||
<el-descriptions-item label="联系人">{{ lxr }}</el-descriptions-item>
|
||||
<el-descriptions-item label="电话号码">{{ lxdh }}</el-descriptions-item>
|
||||
<el-descriptions-item label="传真">{{ cz }}</el-descriptions-item>
|
||||
<el-descriptions-item label="电子邮箱">{{ dzyx }}</el-descriptions-item>
|
||||
<el-descriptions-item label="是否为优先注册产品">{{ sfYxz }}</el-descriptions-item>
|
||||
<el-descriptions-item label="是否为应急注册产品">{{ sfYjzccp }}</el-descriptions-item>
|
||||
<el-descriptions-item label="是否为组合包装类产品">{{ sfZhlcp }}</el-descriptions-item>
|
||||
<el-descriptions-item label="是否为一次性适用产品">{{ sfYcxsycp }}</el-descriptions-item>
|
||||
<el-descriptions-item label="是否为附条件审批产品">{{ sfFjtjspcp }}</el-descriptions-item>
|
||||
<!-- smslj -->
|
||||
<el-descriptions-item label="说明书附件" span="2">{{ sms ? sms:'-' }}</el-descriptions-item>
|
||||
<el-descriptions-item label="变更内容" span="2">{{ bgqk }}</el-descriptions-item>
|
||||
<el-descriptions-item label="变更日期" span="2">{{ bgrq }}</el-descriptions-item>
|
||||
<el-descriptions-item label="变更历史记录" span="2">{{ bglsjl }}</el-descriptions-item>
|
||||
<el-descriptions-item label="其他内容" span="2">{{ qtnr }}</el-descriptions-item>
|
||||
<el-descriptions-item label="备注" span="2">{{ bz }}</el-descriptions-item>
|
||||
</el-descriptions>
|
||||
</block-header>
|
||||
</template>
|
||||
<script>
|
||||
import blockHeader from "@/views/firmContent/components/blockHeader/index.vue"
|
||||
import downloadFilebox from "@/views/firmContent/components/downloadFileBox/index.vue"
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
files:[
|
||||
{
|
||||
id:1,
|
||||
name:'A项目检验报告.pdf',
|
||||
size:'44KB',
|
||||
}
|
||||
],
|
||||
cpmc:'-',
|
||||
shxydm:'-',
|
||||
scdz:'-',
|
||||
sczdz:'-',
|
||||
zcrszx:'-',
|
||||
zcrszshi:'-',
|
||||
cplx:'-',
|
||||
xzqydm:'-',
|
||||
ylqxjgtz:'-',
|
||||
zczh:'-',
|
||||
sfCxcp:'-',
|
||||
ylqxflbm:'-',
|
||||
cplb:'-',
|
||||
jgjzccf:'-',
|
||||
jgjzccffj:'-',
|
||||
cpsyfw:'-',
|
||||
cpsyfwfj:'-',
|
||||
xhgg:'-',
|
||||
xhggfj:'-',
|
||||
cpyxq:'-',
|
||||
pzrq:'-',
|
||||
sxrq:'-',
|
||||
pzyxq:'-',
|
||||
pzyxqzyqjs:'-',
|
||||
cpjsyq:'-',
|
||||
isUpload:'-',
|
||||
spbm:'-',
|
||||
ppztDm:'-',
|
||||
zxsj:'-',
|
||||
yzczh:'-',
|
||||
yxzccs:'-',
|
||||
lxr:'-',
|
||||
lxdh:'-',
|
||||
cz:'-',
|
||||
dzyx:'-',
|
||||
sfYxz:'-',
|
||||
sfYjzccp:'-',
|
||||
sfZhlcp:'-',
|
||||
sfYcxsycp:'-',
|
||||
sfFjtjspcp:'-',
|
||||
sms:'-',
|
||||
bgqk:'-',
|
||||
bgrq:'-',
|
||||
bglsjl:'-',
|
||||
qtnr:'-',
|
||||
bz:'-',
|
||||
xhgglj:null,
|
||||
}
|
||||
},
|
||||
props:['myzczh'],
|
||||
components:{blockHeader,downloadFilebox},
|
||||
methods:{
|
||||
async ylqxJnyelcp(){
|
||||
let data = await this.$api.productDetails.ylqxJnyelcp(this.myzczh);
|
||||
this.cpmc = data.data.cpmc;
|
||||
this.shxydm = data.data.shxydm;
|
||||
this.scdz = data.data.scdz;
|
||||
this.sczdz = data.data.sczdz;
|
||||
this.zcrszx = data.data.zcrszx;
|
||||
this.zcrszshi = data.data.zcrszshi;
|
||||
this.cplx = data.data.cplx;
|
||||
this.xzqydm = data.data.xzqydm;
|
||||
this.ylqxjgtz = data.data.ylqxjgtz;
|
||||
this.zczh = data.data.zczh;
|
||||
this.sfCxcp = data.data.sfCxcp;
|
||||
this.ylqxflbm = data.data.ylqxflbm;
|
||||
this.cplb = data.data.cplb;
|
||||
this.jgjzccf = data.data.jgjzccf;
|
||||
this.jgjzccffj = data.data.jgjzccffj;
|
||||
this.cpsyfw = data.data.cpsyfw;
|
||||
this.cpsyfwfj = data.data.cpsyfwfj;
|
||||
this.xhgg = data.data.xhgg;
|
||||
this.xhggfj = data.data.xhggfj;
|
||||
this.cpyxq = data.data.cpyxq;
|
||||
this.pzrq = data.data.pzrq;
|
||||
this.sxrq = data.data.sxrq;
|
||||
this.pzyxq = data.data.pzyxq;
|
||||
this.pzyxqzyqjs = data.data.pzyxqzyqjs;
|
||||
this.cpjsyq = data.data.cpjsyq;
|
||||
this.isUpload = data.data.isUpload;
|
||||
this.spbm = data.data.spbm;
|
||||
this.ppztDm = data.data.ppztDm;
|
||||
this.zxsj = data.data.zxsj;
|
||||
this.yzczh = data.data.yzczh;
|
||||
this.yxzccs = data.data.yxzccs;
|
||||
this.lxr = data.data.lxr;
|
||||
this.lxdh = data.data.lxdh;
|
||||
this.cz = data.data.cz;
|
||||
this.dzyx = data.data.dzyx;
|
||||
this.sfYxz = data.data.sfYxz;
|
||||
this.sfYjzccp = data.data.sfYjzccp;
|
||||
this.sfZhlcp = data.data.sfZhlcp;
|
||||
this.sfYcxsycp = data.data.sfYcxsycp;
|
||||
this.sfFjtjspcp = data.data.sfFjtjspcp;
|
||||
this.sms = data.data.sms;
|
||||
this.bgqk = data.data.bgqk;
|
||||
this.bgrq = data.data.bgrq;
|
||||
this.bglsjl = data.data.bglsjl;
|
||||
this.qtnr = data.data.qtnr;
|
||||
this.bz = data.data.bz;
|
||||
this.xhgglj = data.data.xhgglj;
|
||||
},
|
||||
downloadFile(url){
|
||||
console.log(url)
|
||||
}
|
||||
},
|
||||
mounted(){
|
||||
this.ylqxJnyelcp()
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import "@/assets/styles/utils.scss";
|
||||
::v-deep .el-descriptions__body {
|
||||
.labelClassName{
|
||||
background-color: #F7FAFC;
|
||||
width: vw(246);
|
||||
font-size: vw(16);
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #6A6C6F;
|
||||
}
|
||||
.contentClassName{
|
||||
font-size: vw(16);
|
||||
font-family: Source Han Sans CN;
|
||||
font-weight: 400;
|
||||
color: #292F38;
|
||||
.my--file {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 95%;
|
||||
}
|
||||
}
|
||||
.fileBox {
|
||||
margin-top: 8px;
|
||||
display: flex;
|
||||
color: #333;
|
||||
cursor: pointer;
|
||||
& > span {
|
||||
font-size: 14px;
|
||||
}
|
||||
.file-icon {
|
||||
color: #02d1a6;
|
||||
margin-left: 40px;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
Loading…
Reference in new issue