From 6548996bfac9dd02e21e1fd9519109fc8b5dfeb2 Mon Sep 17 00:00:00 2001
From: jiangping <jp@doumee.com>
Date: 星期六, 11 五月 2024 18:48:47 +0800
Subject: [PATCH] 提交一把

---
 company/src/components/business/OpearaUnionChangeUnit.vue |   43 ++++++++++++++++++++++++++++++-------------
 1 files changed, 30 insertions(+), 13 deletions(-)

diff --git a/company/src/components/business/OpearaUnionChangeUnit.vue b/company/src/components/business/OpearaUnionChangeUnit.vue
index 25ff19a..832ff54 100644
--- a/company/src/components/business/OpearaUnionChangeUnit.vue
+++ b/company/src/components/business/OpearaUnionChangeUnit.vue
@@ -2,7 +2,7 @@
   <GlobalWindow
       :title="title"
       width="100%"
-      text="鍔犲噺淇濈敵璇�"
+      text="鎻愪氦"
       :visible.sync="visible"
       :confirm-working="isWorking"
       @confirm="confirm"
@@ -19,8 +19,10 @@
           <div style="display: flex; flex-direction: column;">
             <el-date-picker
                 v-model="form.applyDate"
+                placeholder="璇烽�夋嫨鏃ユ湡"
+                :picker-options="pickerOptions"
                 type="date"
-                format="yyyy 骞� MM 鏈� dd 鏃�"
+                format="yyyy-MM-dd"
                 value-format="yyyy-MM-dd" />
             <span style="color: #F95601; font-size: 14px;">锛�2. 娆℃棩鐢熸晥鎶曚繚璇蜂簬17:30鍓嶆彁浜わ紝瓒呮椂鎻愪氦浠ヤ繚闄╁崟涓哄噯锛�</span>
           </div>
@@ -63,20 +65,20 @@
           label="琚繚闄╀汉">
       </el-table-column>
       <el-table-column
-          prop="applyStartTime"
-          label="鏈熸湜淇濋櫓鐢熸晥璧锋湡">
+          prop="validCode"
+          label="淇濆崟鍙�">
       </el-table-column>
       <el-table-column
-          prop="addNum"
-          label="鍔犱繚浜烘暟">
+          prop="startTime"
+          label="淇濋櫓鐢熸晥璧锋湡">
       </el-table-column>
       <el-table-column
-          prop="delNum"
-          label="鍑忎繚浜烘暟">
+          prop="endTime"
+          label="淇濋櫓鐢熸晥姝㈡湡">
       </el-table-column>
       <el-table-column
-          prop="fee"
-          label="璐圭敤鍙樻洿">
+          prop="changeNum"
+          label="鎹㈠巶浜烘暟">
       </el-table-column>
       <el-table-column  label="鎿嶄綔">
         <template slot-scope="{row}">
@@ -96,7 +98,7 @@
     <el-dialog
         title="閫夋嫨淇濋櫓鍗�"
         :visible.sync="visibleSelect"
-        width="70%"
+        width="80%"
         :modal="true"
         :show-close="false"
         append-to-body
@@ -128,6 +130,7 @@
           <el-table-column prop="code" label="淇濆崟鍙�" min-width="100px"></el-table-column>
           <el-table-column prop="solutionName" label="淇濋櫓鏂规" min-width="100px"></el-table-column>
           <el-table-column prop="insureNum" label="鎶曚繚浜烘暟" min-width="100px"></el-table-column>
+          <el-table-column prop="changeApplyNum" label="鐢宠鍗曟暟" min-width="100px"></el-table-column>
           <el-table-column prop="fee" label="鎬昏垂鐢紙鍏冿級" min-width="100px"></el-table-column>
           <el-table-column prop="createDate" label="鎻愪氦鏃堕棿" min-width="100px"></el-table-column>
         </el-table>
@@ -156,7 +159,7 @@
 import selectApplicationForm from '@/components/business/selectApplicationForm'
 import { listAll } from '@/api/business/applyChange'
 import { merge } from '@/api/business/unionChange'
-import ApplyChangeDetails from '@/components/business/ApplyChangeDetails'
+import ApplyChangeDetails from '@/components/business/ApplyChangeUnitDetails'
 import { fetchList as pageUnionList } from '@/api/business/unionApply'
 import {getDetail} from "@/api/business/insuranceApply";
 export default {
@@ -175,6 +178,7 @@
       solutions: [],
       currentPage:0,
       list: [],
+      pickerOptions: {},
       tableData:[],
       tableTotal:0,
       endTime: '',
@@ -208,7 +212,7 @@
     checkDetial(row){
       getDetail(row.applyId).then(res => {
         // this.apply = res
-        this.$refs.ApplyChangeDetails.open('鍔犲噺淇濅汉鍛樺悕鍗�',res, row,2)
+        this.$refs.ApplyChangeDetails.open('鏇存崲娲鹃仯鍗曚綅浜哄憳',res, row,2)
       }).catch(err => {
       })
     },
@@ -246,6 +250,15 @@
       }
       this.visibleSelect=false
       this.form.unionApplyId = this.model.id
+      var that =this
+      this.pickerOptions = {
+        disabledDate (time) {
+          var start = new Date(that.model.startTime)
+          start.setDate(start.getDate() + 1);
+          var end = new Date(that.model.endTime)
+          return ( time.getTime() < start.getTime() ||  time.getTime()>end.getTime())
+        }
+      }
       this.getList();
     },
     confirm () {
@@ -321,6 +334,7 @@
         capacity: 10,
         page: this.currentPage,
         model: {
+          queryFlag:2,
           status: 3,
         }
       }).then(res => {
@@ -372,6 +386,9 @@
     align-items: center;
   }
 }
+::v-deep .desc_item_from .el-table__header .el-checkbox{
+  display:none!important;
+}
 .submit {
   width: 100%;
   display: flex;

--
Gitblit v1.9.3