From 3a45da15c947c2d478a44a51bd0f926647b1b841 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期五, 11 四月 2025 16:33:17 +0800
Subject: [PATCH] 提交

---
 company/src/components/business/OperaWtbApplyShopWindow.vue |   73 +++++++++++++++++++++++++++---------
 1 files changed, 54 insertions(+), 19 deletions(-)

diff --git a/company/src/components/business/OperaWtbApplyShopWindow.vue b/company/src/components/business/OperaWtbApplyShopWindow.vue
index a1b815a..e6dde8a 100644
--- a/company/src/components/business/OperaWtbApplyShopWindow.vue
+++ b/company/src/components/business/OperaWtbApplyShopWindow.vue
@@ -11,7 +11,7 @@
                 <div class="desc_item_label" v-if="userInfo.type === 1 && model.status ===27 ">
                     <div class="desc_item_label_left">
                         <span>淇濋櫓鍒版湡杩樻湁 <b style="color: #F95601;">{{model.loseEfficacyDays ? model.loseEfficacyDays : '-'}}</b> 澶�</span>
-                        <el-button type="primary" v-if="model.status === 27" @click="$refs.OperaInsuranceApplyAddWindow.open('缁繚', {id: dataId,type: 1 })">涓�閿画淇�</el-button>
+                        <el-button type="primary" v-if="model.status === 27" @click="goYjxb">涓�閿画淇�</el-button>
                         <el-button type="primary" v-if="model.status === 27 && ( model.loseEfficacyDays ||!model.loseEfficacyDays)" @click="$refs.additionSubtractionApplication.open('鍔犲噺淇濈敵璇�', { id: dataId })">鍔犲噺淇濈敵璇�</el-button>
                         <el-button type="primary" v-if="model.status === 27 &&  ( model.loseEfficacyDays ||!model.loseEfficacyDays)" @click="$refs.factoryChange.open('鏇存崲娲鹃仯鍗曚綅鐢宠', { id: dataId })">鏇存崲娲鹃仯鍗曚綅鐢宠</el-button>
                     </div>
@@ -73,35 +73,48 @@
                         <el-table-column
                             prop="startTime"
                             align="center"
-                            label="淇濋櫓鐢熸晥璧锋湡">
+                            :label="getApplyTimeTitle(0,model.solutionType,model)">
                         </el-table-column>
                         <el-table-column
                             prop="endTime"
                             align="center"
-                            label="淇濋櫓鐢熸晥姝㈡湡">
+                            :label="getApplyTimeTitle(1,model.solutionType,model)">
                         </el-table-column>
                         <el-table-column
                             prop="insureNum"
                             align="center"
                             label="鎶曚繚浜烘暟">
+                          <template scope="{row}">
+                            <span>{{row.insureNum||0}} 浜�</span>
+                          </template>
                         </el-table-column>
-                      <el-table-column prop="guaranteeNum"  align="center" label="鍦ㄤ繚浜烘暟" ></el-table-column>
+                      <el-table-column prop="guaranteeNum"  align="center" label="鍦ㄤ繚浜烘暟" >
+                        <template scope="{row}">
+                          <span>{{row.guaranteeNum||0}} 浜�</span>
+                        </template>
+                      </el-table-column>
                         <el-table-column
                             prop="serviceDays"
                             align="center"
-                            label="淇濆崟鏃堕暱锛堝ぉ锛�">
+                            label="淇濆崟鏃堕暱">
+                          <template scope="{row}">
+                            <span>{{row.serviceDays||0}} 澶�</span>
+                          </template>
                         </el-table-column>
                         <el-table-column
                             prop="currentFee"
                             align="center"
-                            label="宸蹭骇鐢熻垂鐢�(鍏�)">
+                            label="宸蹭骇鐢熻垂鐢�">
+                          <template scope="{row}">
+                            <span>{{row.currentFee!=null?row.currentFee+' 鍏�': '-'}}</span>
+                          </template>
                         </el-table-column>
                         <el-table-column
                             prop="fee"
                             align="center"
-                            label="鎬昏垂鐢�(鍏�)">
+                            label="鎬昏垂鐢�">
                           <template slot-scope="{row}">
-                            <span>{{row.fee!=null?row.fee: '-'}}</span>
+                            <span>{{row.fee!=null?row.fee+' 鍏�': '-'}}</span>
                           </template>
                         </el-table-column>
                     </el-table>
@@ -202,6 +215,7 @@
                             <el-button type="primary" style="width: 80px;" @click="search">鏌ヨ</el-button>
                             <el-button @click="resetting" style="width: 80px;">閲嶇疆</el-button>
                             <el-button type="primary" style="width: 80px;" @click="exportExcel" v-if="activeName === '0'">瀵煎嚭鍚嶅崟</el-button>
+                            <el-button type="primary" style="width: 100px;" @click="$refs.OperaApplyChangeMonthWindow.open('鍔犲噺淇濊垂鐢ㄦ湀搴︾粺璁�',model)" v-if="activeName === '1'">璐圭敤缁熻鏌ヨ</el-button>
                         </el-form-item>
                     </el-form>
                 </div>
@@ -230,7 +244,7 @@
                             label="鎬у埆">
                             <template slot-scope="{row}">
                                 <span v-if="row.sex === 0">鐢�</span>
-                                <span v-else>濂�</span>
+                              <span  v-if="row.sex === 1">濂�</span>
                             </template>
                         </el-table-column>
                         <el-table-column
@@ -255,13 +269,13 @@
                             :key="Math.random()"
                             prop="startTime"
                             align="center"
-                            label="淇濋櫓鐢熸晥璧锋湡">
+                            :label="getApplyTimeTitle(0,model.solutionType,model)">
                         </el-table-column>
                         <el-table-column
                             :key="Math.random()"
                             prop="endTime"
                             align="center"
-                            label="淇濋櫓鐢熸晥姝㈡湡">
+                            :label="getApplyTimeTitle(1,model.solutionType,model)">
                         </el-table-column>
                         <el-table-column
                             :key="Math.random()"
@@ -269,7 +283,7 @@
                             prop="fee"
                             label="浜х敓璐圭敤">
                           <template slot-scope="{row}">
-                            <span>{{row.fee!=null?row.fee: '-'}}</span>
+                            <span>{{row.fee!=null?row.fee+' 鍏�': '-'}}</span>
                           </template>
                         </el-table-column>
                       <el-table-column
@@ -461,23 +475,24 @@
         <!--    浼佷笟鐢宠閫�鍥�    -->
         <applyReturn ref="applyReturn" @success="successEvent" />
         <!--    鏂板鎶曚繚    -->
-        <OperaInsuranceApplyAddWindowNew ref="OperaInsuranceApplyAddWindow" @success="successEvent" />
+        <OperaInsuranceApplyAddWindowNew ref="OperaInsuranceApplyAddWindow" @success="result" />
         <!--    鍔犲噺淇濈敵璇�    -->
         <additionSubtractionApplication ref="additionSubtractionApplication" @success="successEvent" />
         <!--    鏇存崲娲鹃仯鍗曚綅鐢宠    -->
-        <factoryChange ref="factoryChange" @success="successEvent" />
+        <factoryChange ref="factoryChange" @success="successChangeUnitEvent" />
         <!-- 鍔犲噺淇濊鎯� -->
-        <OperaApplyChangeDetailWindow ref="OperaApplyChangeDetailWindow" @success="successEvent"/>
+        <OperaApplyChangeDetailWindow ref="OperaApplyChangeDetailWindow" @success="successChangeEvent"/>
         <!-- 鏇存崲娲鹃仯鍗曚綅璇︽儏 -->
         <OperaApplyChangeUnitDetailWindow ref="OperaApplyChangeUnitDetailWindow" @success="successEvent"/>
         <!--    楠岃瘉鎵嬫満鍙�    -->
         <OperaPdfViewerWindow ref="OperaPdfViewerWindow"  />
+        <OperaApplyChangeMonthWindow ref="OperaApplyChangeMonthWindow"  />
         <operaverifyPhoneNumberWindew ref="operaverifyPhoneNumberWindew" @success="goSign" />
         <template v-slot:footer>
             <el-button @click="visible=false">杩斿洖</el-button>
         </template>
-
       <!-- 淇敼鎵嬫満鍙� -->
+
       <el-dialog
           :title="signTitle"
           :visible.sync="visiblePhone"
@@ -505,10 +520,9 @@
       </el-dialog>
     </GlobalWindow>
 </template>
-
 <script>
 import BaseOpera from '@/components/base/BaseOpera'
-import OperaInsuranceApplyAddWindowNew from '@/components/enterprise/OperaInsuranceApplyAddWindowNew'
+import OperaInsuranceApplyAddWindowNew from '@/components/enterprise/OperaInsuranceApplyAddWindow'
 import GlobalWindow from '@/components/common/GlobalWindow'
 import InsuranceDetails from '@/components/business/InsuranceDetails'
 import OperaWtbApplyCheckWindow from '@/components/business/OperaWtbApplyCheckWindow'
@@ -518,6 +532,7 @@
 import operaverifyPhoneNumberWindew from '@/components/business/operaverifyPhoneNumberWindew'
 import OperaApplyChangeDetailWindow from '@/components/business/OperaApplyChangeDetailWindow'
 import OperaApplyChangeUnitDetailWindow from '@/components/business/OperaApplyChangeUnitDetailWindow'
+import OperaApplyChangeMonthWindow from '@/components/business/OperaApplyChangeMonthWindow'
 import applyReturn from '@/components/enterprise/applyReturn'
 import {
   getDetail,
@@ -532,7 +547,7 @@
 import { fetchList } from '@/api/business/applyChange'
 import { findListByDTO as worktypeFindListByDTO } from '@/api/business/worktype'
 import { mapState } from 'vuex'
-import {sendSms} from "@/api/business/smsEmail";
+import {sendSms} from '@/api/business/smsEmail';
 
 export default {
   name: 'OperaWtbApplyShopWindow',
@@ -543,6 +558,7 @@
     OperaPdfViewerWindow,
     OperaWtbApplyCheckWindow,
     applyReturn,
+    OperaApplyChangeMonthWindow,
     OperaInsuranceApplyAddWindowNew,
     additionSubtractionApplication,
     factoryChange,
@@ -906,6 +922,9 @@
         this.$tip.apiFailed(err)
       })
     },
+    goYjxb(){
+      this.$refs.OperaInsuranceApplyAddWindow.open('缁繚', {id: this.dataId,type: 1 })
+    },
     viewToubaodan () {
       if (this.model.toubaodanSignedFile && this.model.toubaodanSignedFile.fileurlFull) {
         setTimeout(() => {
@@ -960,6 +979,22 @@
       }).catch(err => {
       })
     },
+    result(flag,param){
+      console.log(flag,param)
+      if(param && param.godetail && param.id){
+       this.open('濮旀墭淇濊鎯�',{id:param.id})
+      }else{
+        this.successEvent()
+      }
+    },
+    successChangeUnitEvent (param) {
+      this.$refs.OperaApplyChangeUnitDetailWindow.open('鏇存崲娲鹃仯鍗曚綅璇︽儏', param)
+      this.successEvent()
+    },
+    successChangeEvent (param) {
+      this.$refs.OperaApplyChangeDetailWindow.open('鍔犲噺淇濊鎯�',param)
+      this.successEvent()
+    },
     successEvent () {
       // this.visible=false
       this.getDetail()

--
Gitblit v1.9.3