From 9607e7e25475d7533944f2218eb0a40189c343f2 Mon Sep 17 00:00:00 2001
From: MrShi <1878285526@qq.com>
Date: 星期五, 03 五月 2024 22:07:01 +0800
Subject: [PATCH] mrshi

---
 company/src/components/business/detailsEntrustedInsurance.vue |   58 ++++++++++++++++++++++++++++++++++++----------------------
 1 files changed, 36 insertions(+), 22 deletions(-)

diff --git a/company/src/components/business/detailsEntrustedInsurance.vue b/company/src/components/business/detailsEntrustedInsurance.vue
index a668ef5..bdfd97e 100644
--- a/company/src/components/business/detailsEntrustedInsurance.vue
+++ b/company/src/components/business/detailsEntrustedInsurance.vue
@@ -18,7 +18,7 @@
             <template v-if="userInfo.type === 2">
               <el-button type="primary"   @click="$refs.InsuranceDetails.open('瀵煎嚭璇﹀崟',model,0)">瀵煎嚭璇﹀崟</el-button>
               <el-button v-if="[0].includes(model.status) " type="primary" @click="$refs.OperaUnionApplyCheckWindow.open('涓婁紶鎶曚繚鍗�',model,2)">涓婁紶鎶曚繚鍗�</el-button>
-              <el-button v-if="model.status == 1" type="primary" @click="getSignLink(0)">绛剧讲鎶曚繚鍗�</el-button>
+              <el-button v-if="model.status == 1" type="primary" :disabled="loading" :loading="loading" @click="getSignLink(0)">绛剧讲鎶曚繚鍗�</el-button>
               <el-button v-if="[2,3,4].includes(model.status)" type="primary" @click="viewToubaodan">鏌ョ湅鎶曚繚鍗�</el-button>
               <el-button v-if="[2].includes(model.status) " type="primary" @click="$refs.OperaUnionApplyCheckWindow.open('涓婁紶淇濋櫓鍗�',model,3)">涓婁紶淇濋櫓鍗�</el-button>
               <el-button v-if="model.status == 3" type="primary" @click="viewBaoxiandan">鏌ョ湅淇濋櫓鍗�</el-button>
@@ -386,27 +386,27 @@
         </el-form-item>
       </el-form>
       <span slot="footer" class="dialog-footer">
-                <el-button type="primary" @click="goSignDo()">纭�  瀹�</el-button>
-                <el-button @click="visiblePhone=false">鍙� 娑�</el-button>
-            </span>
+        <el-button type="primary" @click="goSignDo()">纭�  瀹�</el-button>
+        <el-button @click="visiblePhone=false">鍙� 娑�</el-button>
+      </span>
     </el-dialog>
     <el-dialog
-        :title="fileTitle"
-        :visible.sync="visibleFile"
-        width="500px"
-        :modal="true"
-        :show-close="true"
-        :close-on-click-modal="false"
-        append-to-body
-        center>
+      :title="fileTitle"
+      :visible.sync="visibleFile"
+      width="500px"
+      :modal="true"
+      :show-close="true"
+      :close-on-click-modal="false"
+      append-to-body
+      center>
       <div class="desc_item_from" v-for="(item, index) in fileData" :key="index"  style="margin-bottom: 15px">
         <span v-if="index ==0">{{item.name}}锛�</span>
-        <span v-if="index >0">琚繚闄╀汉锛坽{item.name}}锛墈{fileFlag=== 0?"鎶曚繚鍗�":"淇濋櫓鍗�"}}锛�</span>
+        <span v-if="index >0">琚繚闄╀汉锛坽{item.name}}锛夋湇鍔¤垂锛歿{item.serverCost || 0}}鍏�/浜� {{fileFlag=== 0?"鎶曚繚鍗�":"淇濋櫓鍗�"}}锛�</span>
         <a style="cursor: pointer;color: #2E68EC" v-if="item.file && item.file.fileurl" @click="openFile(item.file.fileurlFull)">鍦ㄧ嚎棰勮</a><span v-if="!item.file || !item.file.fileurl">鏈笂浼�</span>
       </div>
       <span slot="footer" class="dialog-footer">
-                <el-button @click="visibleFile=false">鍏� 闂�</el-button>
-            </span>
+        <el-button @click="visibleFile=false">鍏� 闂�</el-button>
+      </span>
     </el-dialog>
   </GlobalWindow>
 </template>
@@ -488,7 +488,9 @@
       gzList: [],
       activeName: '0',
       total: 0,
-      currentPage: 1
+      currentPage: 1,
+
+      loading: false
     }
   },
   created () {
@@ -532,10 +534,22 @@
         this.signTitle = '绛剧讲鎶曚繚鍗�'
       }
       this.form.type = flag
-      this.visiblePhone = true
-      this.$nextTick(() => {
-        this.$refs.form.resetFields()
+      this.loading = true
+      getSignLink(this.form).then(res => {
+        this.loading = false
+        // setTimeout(() => {
+        //   this.visiblePhone = false
+          window.open(res)
+        // }, 500)
+      }).catch(err => {
+        this.loading = false
+        this.$tip.apiFailed(err)
       })
+      // this.goSign()
+      // this.visiblePhone = true
+      // this.$nextTick(() => {
+      //   this.$refs.form.resetFields()
+      // })
     },
     goSignDo () {
       this.$refs.form.validate((valid) => {
@@ -775,6 +789,7 @@
     viewBaoxiandan () {
       this.fileFlag = 1
       this.fileTitle='鏌ョ湅淇濋櫓鍗�'
+      console.log(this.baoxiandanFileData)
       this.fileData = this.baoxiandanFileData;
       this.visibleFile=true
      /* if (this.model.baoxiandanFile && this.model.baoxiandanFile.fileurlFull) {
@@ -807,7 +822,6 @@
         this.model = res
         this.tableData = new Array()
         this.tableData.push(res)
-        console.log(this.tableData)
         this.activities = res.applyLogList
         if (this.model.toubaodanSignedFile && this.model.toubaodanSignedFile.fileurlFull) {
           this.taobaodanFileData.push({ name: '鍟嗘埛鎶曚繚鍗�', file: this.model.toubaodanSignedFile })
@@ -834,9 +848,9 @@
               this.taobaodanFileData.push({ name: item.companyName, file: null })
             }
             if (item.baoxiandanFile) {
-              this.baoxiandanFileData.push({ name: item.companyName, file: item.baoxiandanFile })
+              this.baoxiandanFileData.push({ name: item.companyName, serverCost: item.serverCost, file: item.baoxiandanFile })
             } else {
-              this.baoxiandanFileData.push({ name: item.companyName, file: null })
+              this.baoxiandanFileData.push({ name: item.companyName, serverCost: item.serverCost, file: null })
             }
           })
         }

--
Gitblit v1.9.3