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/archivesChange.vue   |   10 +++++-----
 src/views/user/search.vue           |    6 +++---
 src/views/user/inemployees.vue      |    2 +-
 src/views/user/archivesEdit.vue     |   10 +++++-----
 src/views/user/outemployess.vue     |    2 +-
 src/views/user/Informationinput.vue |   10 +++++-----
 src/views/dashboard/sbUser.vue      |    4 ++--
 7 files changed, 22 insertions(+), 22 deletions(-)

diff --git a/src/views/dashboard/sbUser.vue b/src/views/dashboard/sbUser.vue
index 56daddd..fcd3916 100644
--- a/src/views/dashboard/sbUser.vue
+++ b/src/views/dashboard/sbUser.vue
@@ -36,7 +36,7 @@
         <el-table-column show-overflow-tooltip prop="certificateNumb" label="身份证号码" width="140" />
         <el-table-column show-overflow-tooltip prop="applayDate" label="社保申请日期" min-width="120" />
         <el-table-column show-overflow-tooltip prop="proposer" label="申请人" width="80" />
-        <el-table-column show-overflow-tooltip prop="insuranceGaers" :formatter="insuranceGaersFormat" label="社保档位" width="100" />
+        <el-table-column show-overflow-tooltip prop="insuranceGaers" :formatter="insuranceGaersFormat" label="保险类型" width="100" />
         <el-table-column show-overflow-tooltip prop="reportStatus" :formatter="reportStatusFormat" label="是否已报告" width="100" />
         <el-table-column show-overflow-tooltip prop="applayStatus" :formatter="applayStatusFormat" label="状态" width="80" />
         <el-table-column show-overflow-tooltip prop="auditor" label="审核人" width="80" />
@@ -113,7 +113,7 @@
   },
   mounted() {
     setTimeout(() => {
-      this.getDicts('insuranceGaers').then(response => {
+      this.getDicts('INSURANCETYPE').then(response => {
         this.insuranceGaersOptions = response.data
       })
       this.getDicts('applayStatus').then(response => {
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 => {
diff --git a/src/views/user/archivesChange.vue b/src/views/user/archivesChange.vue
index 2151155..f09be17 100644
--- a/src/views/user/archivesChange.vue
+++ b/src/views/user/archivesChange.vue
@@ -892,7 +892,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" />
@@ -1933,8 +1933,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"
@@ -2836,7 +2836,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' }]
@@ -3557,7 +3557,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 => {
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 => {
diff --git a/src/views/user/inemployees.vue b/src/views/user/inemployees.vue
index 44d0d59..ebd9c78 100644
--- a/src/views/user/inemployees.vue
+++ b/src/views/user/inemployees.vue
@@ -1274,7 +1274,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 => {
diff --git a/src/views/user/outemployess.vue b/src/views/user/outemployess.vue
index ec2b52e..5e60570 100644
--- a/src/views/user/outemployess.vue
+++ b/src/views/user/outemployess.vue
@@ -793,7 +793,7 @@
                 <td><input type="checkbox"></td>
                 <td>申请时间</td>
                 <td>申请人</td>
-                <td>社保档位</td>
+                <td>保险类型</td>
                 <td>是否已报告</td>
                 <td>状态</td>
                 <td>审批人</td>
diff --git a/src/views/user/search.vue b/src/views/user/search.vue
index e4bf861..53ff69a 100644
--- a/src/views/user/search.vue
+++ b/src/views/user/search.vue
@@ -1175,7 +1175,7 @@
             </el-col>
           </el-row>
           <el-row>
-            <el-col :span="4">社保档位:
+            <el-col :span="4">保险类型:
               <el-select v-model="queryParams.insuranceGaers" style="width:100px">
                 <el-option value="" label="全部" />
                 <el-option value="1" label="深户(五险一档)" />
@@ -1229,7 +1229,7 @@
             <el-table-column show-overflow-tooltip prop="certificateNumb" label="身份证号码" width="150" sortable="custom" :sort-orders="['ascending', 'descending']" />
             <el-table-column show-overflow-tooltip prop="applayDate" label="社保申请日期" width="150" sortable="custom" :sort-orders="['ascending', 'descending']" />
             <el-table-column show-overflow-tooltip prop="proposer" label="申请人" width="100" />
-            <el-table-column show-overflow-tooltip prop="insuranceGaers" label="社保档位" width="100" :formatter="insuranceGaersFormat" />
+            <el-table-column show-overflow-tooltip prop="insuranceGaers" label="保险类型" width="100" :formatter="insuranceGaersFormat" />
             <el-table-column show-overflow-tooltip prop="reportStatus" label="是否已报告" width="100" :formatter="reportStatusFormat" />
             <el-table-column show-overflow-tooltip prop="applayStatus" label="状态" width="100" :formatter="applayStatusFormat" />
             <el-table-column show-overflow-tooltip prop="auditor" label="审核人" width="100" />
@@ -2348,7 +2348,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