From 4f736e9566e5a8184463d24d1eb8d3170f396ea4 Mon Sep 17 00:00:00 2001
From: yijiusmile <253281376@qq.com>
Date: 星期三, 07 四月 2021 13:59:07 +0800
Subject: [PATCH] 社保档次和保险类型合并成一个

---
 src/views/user/archivesEdit.vue |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/views/user/archivesEdit.vue b/src/views/user/archivesEdit.vue
index 0aa91a2..f5e59da 100644
--- a/src/views/user/archivesEdit.vue
+++ b/src/views/user/archivesEdit.vue
@@ -981,7 +981,7 @@
                 <el-table-column v-if="fsnumShow" show-overflow-tooltip prop="insuranceId" label="" />
                 <el-table-column show-overflow-tooltip prop="applayDate" label="社保申请日期" width="180" />
                 <el-table-column show-overflow-tooltip prop="proposer" label="申请人" width="180" />
-                <el-table-column show-overflow-tooltip prop="insuranceGaers" label="社保档位" :formatter="insuranceGaersFormat" />
+                <el-table-column show-overflow-tooltip prop="insuranceGaers" label="保险类型" :formatter="insuranceGaersFormat" />
                 <el-table-column show-overflow-tooltip prop="reportStatus" label="是否已报告" :formatter="reportStatusFormat" />
                 <el-table-column show-overflow-tooltip prop="applayStatus" label="状态" :formatter="applayStatusFormat" />
                 <el-table-column show-overflow-tooltip prop="auditor" label="审核人" width="180" />
@@ -2067,8 +2067,8 @@
                   placeholder="选择社保申请日期"
                 />
               </el-form-item>
-              <el-form-item label="社保档位" prop="insuranceGaers">
-                <el-select v-model="insuranceForm.insuranceGaers" placeholder="请选择社保档位">
+              <el-form-item label="保险类型" prop="insuranceGaers">
+                <el-select v-model="insuranceForm.insuranceGaers" placeholder="请选择保险类型">
                   <el-option
                     v-for="dict in insuranceGaersOptions"
                     :key="dict.dicItemCode"
@@ -2997,7 +2997,7 @@
           message: '长度不超过40个字符',
           trigger: 'blur'
         }],
-        insuranceGaers: [{ required: true, message: '请选择社保档位', trigger: 'change' }],
+        insuranceGaers: [{ required: true, message: '请选择保险类型', trigger: 'change' }],
         auditor: [{ max: 40, message: '长度不超过40个字符', trigger: 'blur' }],
         remark: [{ max: 512, message: '长度不超过512个字符', trigger: 'blur' }],
         applayStatus: [{ required: true, message: '请选择申请状态', trigger: 'change' }]
@@ -3689,7 +3689,7 @@
     this.getDicts('LEAVETYPE').then(response => {
       this.leaveTypeOptions = response.data
     })
-    this.getDicts('insuranceGaers').then(response => {
+    this.getDicts('INSURANCETYPE').then(response => {
       this.insuranceGaersOptions = response.data
     })
     this.getDicts('applayStatus').then(response => {

--
Gitblit v1.8.0