From 1870c6d392aada4cd48fb148a12c5bd6e2838159 Mon Sep 17 00:00:00 2001
From: linwenling <3256558519@qq.com>
Date: 星期日, 22 十月 2023 23:31:48 +0800
Subject: [PATCH] 1022 修正保洁收纳导入

---
 ruoyi-ui/src/views/secret/secretInfo.vue |   27 +++++++++++++++++++++++----
 1 files changed, 23 insertions(+), 4 deletions(-)

diff --git a/ruoyi-ui/src/views/secret/secretInfo.vue b/ruoyi-ui/src/views/secret/secretInfo.vue
index 7ae6dd3..081f05b 100644
--- a/ruoyi-ui/src/views/secret/secretInfo.vue
+++ b/ruoyi-ui/src/views/secret/secretInfo.vue
@@ -1,5 +1,5 @@
 <template>
-    <div class="app-container">
+    <div class="app-container" id="printable-content">
       <div class="form-header mt">
         <h1 style="font-size:21px;padding-top:30px;display: flex;justify-content: space-between;align-items: center;">
           <span>闅愮璇︽儏</span>
@@ -8,6 +8,11 @@
               <div class="form" ><el-icon  style="padding-right:110px;"></el-icon>
                 <span class="text" style="width: 69px;height: 26px;font-size: 16px;
             font-family: Microsoft YaHei-Regular, Microsoft YaHei; color: #EBA4AA;">澶囧繕鏈�</span></div>
+            </el-button>
+            <el-button size="mini" type="text"  v-print="'#printable-content'" v-hasPermi="['person:information:memo']">
+              <div class="form" ><el-icon  style="padding-right:110px;"></el-icon>
+                <span class="text" style="width: 69px;height: 26px;font-size: 16px;
+            font-family: Microsoft YaHei-Regular, Microsoft YaHei; color: #EBA4AA;">鎵撳嵃</span></div>
             </el-button>
           </div>
         </h1>
@@ -55,6 +60,8 @@
           multiple
           :http-request="requestUpload"
           :file-list="fileList"
+          :disabled="!btn"
+          :class="{ hide: !btn }"
         >
           <div v-if="uploading" class="upload-status">姝e湪涓婁紶...</div>
           <i v-if="!uploading" slot="default" class="el-icon-plus"></i>
@@ -106,6 +113,8 @@
               :on-remove="handleRemoveFile"
               :http-request="requestUpload"
               :show-file-list="true"
+              :disabled="!btn"
+              :class="{ hide: !btn }"
             >
         <div v-if="uploading" class="upload-status">姝e湪涓婁紶...</div>
         <i v-if="!uploading" slot="default" class="el-icon-plus"></i>
@@ -270,6 +279,7 @@
         document.title = "鏌ョ湅闅愮璇︾粏淇℃伅";
         this.$route.meta.title = "鏌ョ湅闅愮璇︾粏淇℃伅";//鍒楄〃鐨勫悕绉�
         this.isShow=false
+        this.btn = false;
       }
 
       let _this = this
@@ -377,9 +387,16 @@
       },
       handleFileCardPreview(file){
         this.dialogFileUrl = file.url;
+        // alert(file.url)
+        // this.dialogFileUrl = 'https://www.bendudu.com:8080/profile/upload/2023/10/18/20231018214647A011.doc'
+        // this.dialogFileUrl = 'https://47.93.189.255:8080/profile/upload/2023/03/19/test7_20230319222030A007.jpg'
+        if(this.dialogFileUrl.includes("47.93.189.255")==true)
+          this.dialogFileUrl = this.dialogFileUrl.replace("47.93.189.255","www.bendudu.com")
+        //alert(this.dialogFileUrl)
         const Base64 = require('js-base64').Base64
-        this.desurl = process.env.VUE_APP_BASE_OTHER_API+'onlinePreview?url='+encodeURIComponent(Base64.encode(this.dialogFileUrl));
-        myWindow=window.open(this.desurl,'','width=1200,height=800,top=150,left=300');
+
+        this.desurl = process.env.VUE_APP_BASE_OTHER_API+"preview/"+'onlinePreview?url='+encodeURIComponent(Base64.encode(this.dialogFileUrl));
+        let myWindow=window.open(this.desurl,'','width=1200,height=800,top=150,left=300');
       },
       handlePictureCardPreview(file) {
         this.dialogImageUrl = file.url;
@@ -462,7 +479,9 @@
     display: block;
     position: absolute;
   }
-
+  .hide .el-upload--picture-card {
+    display: none;
+  }
   .form{
     background:center/11% no-repeat url('../../assets/icons/form.png') ;
   }

--
Gitblit v1.9.1