|
@@ -68,7 +68,7 @@
|
|
|
<el-form-item label="机构名称:" prop="name" class="labelItem">
|
|
|
<div>{{readForm.name}}</div>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="依托单位:" prop="userJcjgProfile.dtRelyOnUnit" class="labelItem">
|
|
|
+ <el-form-item label="依托单位:" prop="dtRelyOnUnit" class="labelItem">
|
|
|
<div>{{readForm.dtRelyOnUnit}}</div>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="审核状态:" prop="userJcjgProfile.flag" class="labelItem">
|
|
@@ -76,10 +76,10 @@
|
|
|
<div v-else>未通过</div>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="机构性质:" prop="userJcjgProfile.properties" class="labelItem">
|
|
|
- <div v-if="readForm.properties=='1'">政府部分</div>
|
|
|
+ <!-- <div v-if="readForm.properties=='1'">政府部分</div>
|
|
|
<div v-else-if="readForm.properties=='2'">事业单位</div>
|
|
|
- <div v-else>企业</div>
|
|
|
- </el-form-item>
|
|
|
+ <div v-else>企业</div> -->
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="统一社会信用代码:" prop="userJcjgProfile.dtCode" class="labelItem">
|
|
|
<div>{{readForm.dtCode}}</div>
|
|
|
</el-form-item>
|
|
@@ -162,7 +162,7 @@ export default {
|
|
|
width: 230
|
|
|
},{
|
|
|
label: '依托单位',
|
|
|
- prop: 'userJcjgProfile.dtRelyOnUnit',
|
|
|
+ prop: 'dtRelyOnUnit',
|
|
|
width: 180
|
|
|
},
|
|
|
// {
|
|
@@ -170,29 +170,25 @@ export default {
|
|
|
// prop: 'dtCode',
|
|
|
// width: 180
|
|
|
// },
|
|
|
- {
|
|
|
- label: '法人姓名',
|
|
|
- prop: 'userJcjgProfile.user_fa',
|
|
|
- width: 100
|
|
|
- },{
|
|
|
+ {
|
|
|
label: 'cma证书编码',
|
|
|
- prop: 'userJcjgProfile.cma_code',
|
|
|
+ prop: 'cma_code',
|
|
|
width: 150
|
|
|
},{
|
|
|
- label: 'mara证书编码',
|
|
|
- prop: 'userJcjgProfile.mara_code',
|
|
|
- width: 140
|
|
|
+ label: '农业农村部认可编号',
|
|
|
+ prop: 'mara_code',
|
|
|
+ width: 160
|
|
|
},{
|
|
|
label: '机构性质',
|
|
|
- prop: 'properties',
|
|
|
+ prop: 'jgxz',
|
|
|
width: 150
|
|
|
},{
|
|
|
label: '产品范围',
|
|
|
- prop: 'userJcjgProfile.cpfw',
|
|
|
+ prop: 'cpfw',
|
|
|
width: 150
|
|
|
},{
|
|
|
label: '认证参数数量',
|
|
|
- prop: 'userJcjgProfile.canshu',
|
|
|
+ prop: 'canshu',
|
|
|
width: 150
|
|
|
}
|
|
|
],
|
|
@@ -208,17 +204,17 @@ export default {
|
|
|
value: '3',
|
|
|
label: '县级'
|
|
|
}],
|
|
|
- jxgzList: [
|
|
|
- {
|
|
|
- value: '1',
|
|
|
- label: '政府部门'
|
|
|
- }, {
|
|
|
- value: '2',
|
|
|
- label: '事业单位'
|
|
|
- }, {
|
|
|
- value: '3',
|
|
|
- label: '企业'
|
|
|
- }],
|
|
|
+ // jxgzList: [
|
|
|
+ // {
|
|
|
+ // value: '1',
|
|
|
+ // label: '政府部门'
|
|
|
+ // }, {
|
|
|
+ // value: '2',
|
|
|
+ // label: '事业单位'
|
|
|
+ // }, {
|
|
|
+ // value: '3',
|
|
|
+ // label: '企业'
|
|
|
+ // }],
|
|
|
cpfwList: [
|
|
|
{
|
|
|
value: '1',
|
|
@@ -247,15 +243,15 @@ export default {
|
|
|
this.tableData = res.data.rows
|
|
|
this.total = res.data.total
|
|
|
console.log(this.tableData)
|
|
|
- for(let i= 0; i < this.tableData.length; i++) {
|
|
|
- if (this.tableData[i].properties == 1){
|
|
|
- this.tableData[i].properties ='政府部门';
|
|
|
- }else if(this.tableData[i].properties == 2){
|
|
|
- this.tableData[i].properties ='事业单位';
|
|
|
- }else{
|
|
|
- this.tableData[i].properties ='企业';
|
|
|
- }
|
|
|
- }
|
|
|
+ // for(let i= 0; i < this.tableData.length; i++) {
|
|
|
+ // if (this.tableData[i].properties == 1){
|
|
|
+ // this.tableData[i].properties ='政府部门';
|
|
|
+ // }else if(this.tableData[i].properties == 2){
|
|
|
+ // this.tableData[i].properties ='事业单位';
|
|
|
+ // }else{
|
|
|
+ // this.tableData[i].properties ='企业';
|
|
|
+ // }
|
|
|
+ // }
|
|
|
},
|
|
|
//查询
|
|
|
async searchData(){
|
|
@@ -303,21 +299,18 @@ export default {
|
|
|
// 查看主体信息详情
|
|
|
async readDialogVisible1(row) {
|
|
|
this.readForm.name = row.name
|
|
|
- this.readForm.dtRelyOnUnit = row.userJcjgProfile.dtRelyOnUnit
|
|
|
- this.readForm.flag = row.userJcjgProfile.flag
|
|
|
- this.readForm.dtCode = row.userJcjgProfile.dtCode
|
|
|
- this.readForm.address = row.userJcjgProfile.address
|
|
|
- this.readForm.user_fa = row.userJcjgProfile.user_fa
|
|
|
- this.readForm.zipcode = row.userJcjgProfile.zipcode
|
|
|
- this.readForm.user_js = row.userJcjgProfile.user_js
|
|
|
- this.readForm.user_zl = row.userJcjgProfile.user_zl
|
|
|
+ this.readForm.dtRelyOnUnit = row.dtRelyOnUnit
|
|
|
+ this.readForm.flag = row.flag
|
|
|
+ this.readForm.dtCode = row.dtCode
|
|
|
+ this.readForm.address = row.address
|
|
|
this.readForm.catl_code = row.catl_code
|
|
|
this.readForm.calt_expiration = row.calt_expiration
|
|
|
- this.readForm.cma_code = row.userJcjgProfile.cma_code
|
|
|
- this.readForm.cma_expiration = row.userJcjgProfile.cma_expiration
|
|
|
- this.readForm.cpfw = row.userJcjgProfile.cpfw
|
|
|
- this.readForm.shuliang = row.userJcjgProfile.shuliang
|
|
|
- this.readForm.canshu = row.userJcjgProfile.canshu
|
|
|
+ this.readForm.cma_code = row.cma_code
|
|
|
+ this.readForm.cma_expiration = row.cma_expiration
|
|
|
+ this.readForm.cpfw = row.cpfw
|
|
|
+ this.readForm.shuliang = row.shuliang
|
|
|
+ this.readForm.canshu = row.canshu
|
|
|
+ this.readForm.jgxz = row.jgxz
|
|
|
// console.log(this.readForm.dtRelyOnUnit)
|
|
|
this.readDialogVisible = true
|
|
|
|