Browse Source

Merge branch 'yh297' into debug

ldong 4 months ago
parent
commit
223c38584e
2 changed files with 54 additions and 8 deletions
  1. 9 0
      src/api/common.js
  2. 45 8
      src/views/report/PreviewDetail.vue

+ 9 - 0
src/api/common.js

@@ -86,6 +86,15 @@ export function getSystemInfo(){
     return get('/system/sysuser/detail')
 }
 
+/**
+ * 获取复制链接
+ * @param {*} params 
+ * @returns 
+ */
+export function shareGenerate(params){
+    return post('/report/share/generate',params)
+}
+
 /**
  * 上传图片
  * @param {*} params 

+ 45 - 8
src/views/report/PreviewDetail.vue

@@ -1,6 +1,8 @@
 <script setup name="ReportPreview">
 import { ref,computed, nextTick, reactive,toRefs } from 'vue'
 import { useRoute, useRouter } from "vue-router";
+import {getSystemInfo,shareGenerate} from '@/api/common'
+import {Base64} from 'js-base64'
 import apiReport from '@/api/report'
 import AudioBox from './components/AudioBox.vue'
 import {showToast} from 'vant'
@@ -19,6 +21,7 @@ const router=useRouter()
 
 // 获取报告详情
 let reportInfo=ref(null)
+let shareUrls=ref(null)
 const smartState = reactive({
     bgColor:'',
     headImgStyle:null,//版头style
@@ -47,6 +50,7 @@ async function getReportDetail(){
         smartState.layoutBaseInfo['研报标题']=reportInfo.value.Title
         smartState.layoutBaseInfo['研报作者']=reportInfo.value.Author
         smartState.layoutBaseInfo['创建时间']=[2,6].includes(reportInfo.value.State)?reportInfo.value.PublishTime:''
+        getSystemInfoFun()
     }
 }
 if(route.query.id==-1){
@@ -54,6 +58,7 @@ if(route.query.id==-1){
     const data=JSON.parse(sessionStorage.getItem('reportPreData'))
     reportInfo.value=data
     document.title=data.Title
+    getSystemInfoFun()
 }else{
     getReportDetail()
 }
@@ -62,23 +67,36 @@ const { bgColor,headImgStyle,endImgStyle,layoutBaseInfo } = toRefs(smartState)
 
 
 const showImgPop = ref(false)
-const linkUrl = computed(() =>{
+const linkUrl = (waterMarkStr) =>{
     console.log(publicSettingStore)
     let str=''
+    let url=''
     const baseUrl= publicSettingStore.publicSetting.ReportViewUrl;
     if(reportInfo.value.ReportCode){
-        // 设置水印文案
-        let waterMarkStr= '';
 
         str= reportInfo.value.ReportLayout===1 
             ? `${baseUrl}/reportshare_crm_report?code=${reportInfo.value.ReportCode}&flag=${waterMarkStr}& ${reportInfo.value.Title}`
             : `${baseUrl}/reportshare_smart_report?code=${reportInfo.value.ReportCode}& ${reportInfo.value.Title}`
+        
+        const params={
+            "Url":str,
+            "ReportId":reportInfo.value.Id
+        } 
+        shareGenerate(params).then(res=>{
+            if(res.Ret===200){
+                console.log(res)
+                if(location.port=='5173'){
+                    url='http://8.136.199.33:8611'
+                }else{
+                    url=location.origin
+                }
+                shareUrls.value=url+'/v1/share/'+res.Data.UrlToken
+            }
+        })
     }
-    
-    return str
-})
+}
 function handleCopyLink() {
-    copyText(linkUrl.value,undefined,(error,event)=>{
+    copyText(shareUrls.value,undefined,(error,event)=>{
         if(error){
             showToast('复制链接成功')
 
@@ -88,6 +106,25 @@ function handleCopyLink() {
         }
     })
 }
+
+const waterMarkStr=ref('')
+const getSystemInfoFun=()=>{
+    getSystemInfo().then(res=>{
+        if(res.Ret===200){
+          const systemUserInfo=res.Data
+          // 设置水印文案
+          let waterMarkString=''
+          if(systemUserInfo){
+            waterMarkString=`${systemUserInfo.RealName}${systemUserInfo.Mobile?systemUserInfo.Mobile:systemUserInfo.Email}`
+            waterMarkString=encodeURIComponent(waterMarkString)
+            waterMarkStr.value=Base64.encode(waterMarkString)
+            linkUrl(waterMarkStr.value)
+          }
+        }
+    })
+}
+
+
 </script>
 
 <template>
@@ -167,7 +204,7 @@ function handleCopyLink() {
         v-model:show="showImgPop" 
         round
     >
-        <vue-qr :text="linkUrl" colorDark="#333" colorLight="#fff" :dotScale="1"></vue-qr>
+        <vue-qr :text="shareUrls" colorDark="#333" colorLight="#fff" :dotScale="1"></vue-qr>
     </van-popup>
 </template>