|
|
@@ -72,13 +72,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
- <pagination
|
|
|
- v-show="total > 0"
|
|
|
- :total="total"
|
|
|
- v-model:page="queryParams.pageNum"
|
|
|
- v-model:limit="queryParams.pageSize"
|
|
|
- @pagination="getList"
|
|
|
- />
|
|
|
+ <pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize" @pagination="getList" />
|
|
|
</el-card>
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane label="特殊资质认证" name="tab2">
|
|
|
@@ -119,13 +113,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
- <pagination
|
|
|
- v-show="total2 > 0"
|
|
|
- :total="total2"
|
|
|
- v-model:page="queryParams2.pageNum"
|
|
|
- v-model:limit="queryParams2.pageSize"
|
|
|
- @pagination="getList2"
|
|
|
- />
|
|
|
+ <pagination v-show="total2 > 0" :total="total2" v-model:page="queryParams2.pageNum" v-model:limit="queryParams2.pageSize" @pagination="getList2" />
|
|
|
</el-card>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
|
@@ -155,17 +143,13 @@
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
<el-divider>证明材料</el-divider>
|
|
|
- <component :is="component1" :data="form.certType == '1' ? form.certMaterials : form.specialCertMaterials"> </component>
|
|
|
+ <component :is="component1" :data="form.certType == '1' ? form.certMaterials : form.specialCertMaterials"></component>
|
|
|
</el-form>
|
|
|
<template #footer>
|
|
|
<el-form ref="approvalFormRef" :model="approvalForm" :rules="approvalRules" label-width="100px" :disabled="viewmode">
|
|
|
<el-form-item label="审核结果" prop="res">
|
|
|
<el-select v-model="approvalForm.res" placeholder="审核结果" clearable>
|
|
|
- <el-option
|
|
|
- v-for="dict in cpy_res_status.filter((x: any) => x.value != '0')"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- ></el-option>
|
|
|
+ <el-option v-for="dict in cpy_res_status.filter((x: any) => x.value != '0')" :label="dict.label" :value="dict.value"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="原因" prop="msg">
|
|
|
@@ -192,9 +176,7 @@ const companyCertificateList = ref<CompanyCertificateVO[]>([]);
|
|
|
const loading = ref(true);
|
|
|
const showSearch = ref(true);
|
|
|
const total = ref(0);
|
|
|
-const { cpy_res_status, enterprise_type, industry_type, cert_base_input_type } = toRefs<any>(
|
|
|
- proxy?.useDict('cpy_res_status', 'cpy_type', 'en', 'enterprise_type', 'industry_type', 'cert_base_input_type')
|
|
|
-);
|
|
|
+const { cpy_res_status, enterprise_type, industry_type, cert_base_input_type } = toRefs<any>(proxy?.useDict('cpy_res_status', 'cpy_type', 'en', 'enterprise_type', 'industry_type', 'cert_base_input_type'));
|
|
|
const special_type = [
|
|
|
{ label: 'GAP基地认证登记', value: '1' },
|
|
|
{ label: '地理标志保护产品专用标志可用认证', value: '2' },
|
|
|
@@ -202,7 +184,9 @@ const special_type = [
|
|
|
{ label: '绿色食品认证', value: '4' },
|
|
|
{ label: '农产品地理标志可用认证', value: '5' },
|
|
|
{ label: '中国良好农业规范认证(GAP)', value: '6' },
|
|
|
- { label: '其他认证', value: '7' }
|
|
|
+ { label: '其他认证', value: '7' },
|
|
|
+ { label: '“三无一全”基地认证', value: '8' },
|
|
|
+ { label: '“三无一全”饮片认证"', value: '9' }
|
|
|
];
|
|
|
const queryFormRef = ref<ElFormInstance>();
|
|
|
const initFormData = (): CompanyCertificateForm => ({
|