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/Informationinput.vue |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/views/user/Informationinput.vue b/src/views/user/Informationinput.vue
index 4926cf2..a4100b8 100644
--- a/src/views/user/Informationinput.vue
+++ b/src/views/user/Informationinput.vue
@@ -405,7 +405,7 @@
           <el-table-column show-overflow-tooltip prop="certificateNumb" label="身份证号码" width="120" />
           <el-table-column show-overflow-tooltip prop="applayDate" label="社保申请日期" width="140" sortable="custom" :sort-orders="['ascending', 'descending']" />
           <el-table-column show-overflow-tooltip prop="proposer" label="申请人" width="80" />
-          <el-table-column show-overflow-tooltip prop="insuranceGaers" label="社保档位" :formatter="insuranceGaersFormat" width="80" />
+          <el-table-column show-overflow-tooltip prop="insuranceGaers" label="保险类型" :formatter="insuranceGaersFormat" width="80" />
           <el-table-column prop="reportStatus " label="是否已报告" width="100" :formatter="reportStatusFormat" />
           <el-table-column prop="applayStatus" label="状态" width="80" :formatter="applayStatusFormat" />
           <el-table-column prop="auditor" label="审核人" width="80" />
@@ -1534,8 +1534,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"
@@ -2337,7 +2337,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' }]
@@ -3121,7 +3121,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