Browse Source

一键复制功能调整

ming 7 months ago
parent
commit
86857ffddd

+ 8 - 0
src/api/business/project.js

@@ -101,6 +101,14 @@ export function projectApi() {
                 url: '/service-iot/pmWorkReport/timedReports',
                 method: 'GET',
             })
+        },
+        // 树结构查询部门--用户列表
+        deptUserTreeSelect(query) {
+            return request({
+                url: '/system/dept/deptUserTreeSelect',
+                method: 'get',
+                params: query
+            })
         }
     }
 }

+ 1 - 42
src/pages/business/common/projectMange/record/details.vue

@@ -63,7 +63,6 @@
           <u-text :text="item.ccTo" color="#000000" size="14"></u-text>
         </view>
 
-        <u-button style="width: 200px;margin:40px auto"  @click="copy('18621761642')">一键复制</u-button>
 
       </view>
     </template>
@@ -95,46 +94,9 @@ const state = reactive({
     reportId: "",
     createBy: "",
   },
-  workContentsString:'',
 });
 
-const { dataList, pageSize, current, total,workContentsString } = toRefs(state);
-
-
-/**
- * @复制粘贴板
- */
- function copy(value) {
-  
-  // 触发方法
-  proxy.$common.uniCopy({
-    // content: 
-		// 				"明日计划:" + state.dataList[0].tomorrowPlan?state.dataList[0].tomorrowPlan:'-' + "\n" +
-		// 				"工作协调:" + state.dataList[0].coordinateWork?state.dataList[0].coordinateWork:'---' + "\n" +
-		// 				"抄送人:" + state.dataList[0].ccTo?state.dataList[0].ccTo:'-',
-    content: state.workContentsString+ "\n" +
-            "明日计划:\n" + state.dataList[0].tomorrowPlan + "\n" +
-						"工作协调:\n" + state.dataList[0].coordinateWork + "\n" +
-						"抄送人:\n" +state.dataList[0].ccTo  ,
-					
-						
-
-    success: (res) => {
-      uni.showToast({
-        title: res,
-        icon: "none",
-      });
-    },
-    error: (e) => {
-      uni.showToast({
-        title: e,
-        icon: "none",
-        duration: 3000,
-      });
-    },
-  });
-}
-
+const { dataList, pageSize, current, total} = toRefs(state);
 
 
 /**
@@ -150,9 +112,6 @@ function init() {
     .then((requset) => {
       state.options.createBy = requset.data[0].createBy;
       state.dataList = requset.data;
-      state.dataList[0].workContents.forEach((item) => {
-        state.workContentsString+=item.projectName+':'+item.workTime+ "h\n"+item.workContent+ "\n"
-      })
       state.loading = false;
     })
     .catch((err) => {

+ 75 - 3
src/pages/business/common/projectMange/record/index.vue

@@ -59,7 +59,7 @@
         <view class="content-area-center bg-white" v-for="(el, ind) in group" :key="ind">
           <view class="content-area-top menu-item" style="float:right;padding:10px 0px">
             <view class="content-area-top-time"> </view>
-            <u-icon v-if="state.tabsCurrent ==1" class="content-area-top-icon" name="more-dot-fill" size="20" color="#000" @click="moreClick(el)"></u-icon>
+            <u-icon class="content-area-top-icon" name="more-dot-fill" size="20" color="#000" @click="moreClick(el)"></u-icon>
             <!-- <u-icon class="content-area-top-icon" name="edit-pen" size="20" color="rgb(20, 158, 255)" @click="handleSubmit('update',el)" v-if="state.tabsCurrent ==1" style="display:inline-block;margin-right:30px;"></u-icon> -->
             <!-- <u-icon class="content-area-top-icon" name="trash" size="20" color="red" @click="tips('error',`确认删除时间为 '${el.submitDate}' 的日报吗?`,el,'delete')" v-if="state.tabsCurrent ==1" style="display:inline-block;"></u-icon> -->
           </view>
@@ -103,6 +103,7 @@
     >
      
       <u-button
+        v-if="state.tabsCurrent ==1"
         class="custom-style"
         type="info"
         size="normal"
@@ -117,6 +118,21 @@
         @click="handleSubmit('update', eventList)"
       ></u-button>
       <u-button
+        class="custom-style"
+        type="info"
+        size="normal"
+        text="一键复制"
+        :customStyle="{
+          height: '50px',
+          color: '#3c9cff',
+          borderWidth: 0,
+          borderRadius: 0,
+          borderBottomWidth: '1px',
+        }"
+        @click="handleSubmit('copy', eventList)"
+      ></u-button>
+      <u-button
+        v-if="state.tabsCurrent ==1"
         class="custom-style"
         type="info"
         size="normal"
@@ -218,10 +234,11 @@ const state = reactive({
     data:{},//带入数据
     operation:undefined,//操作类型
   },
-  timedList:[]
+  timedList:[],
+  tree:[]
 });
 
-const { tabsList, tabsCurrent, dataList, pageSize, current, total,popup,eventList,modal,timedList} = toRefs(state);
+const { tabsList, tabsCurrent, dataList, pageSize, current, total,popup,eventList,modal,timedList,tree} = toRefs(state);
 /**
  * 操作弹框提醒
  * @param type  弹框类型
@@ -244,6 +261,9 @@ function dialogConfirm(){
   if(state.tip.operation=='exit'){
     handleSubmit('exit',state.tip.data)
   }
+  if(state.tip.operation=='copy'){
+    handleSubmit('copy',state.tip.data)
+  }
 }
 /**
  * @初始化
@@ -340,6 +360,58 @@ function handleSubmit(type,item) {
   if (type === "update") {
     proxy.$tab.navigateTo(`/pages/business/common/projectMange/write/insert?templateId=1&id=${item.id}`);
     state.modal.show = false;
+  }else if (type === "copy") {
+    var workLongString=''
+    item.workContents.forEach((item) => {
+      workLongString+=item.projectName+':'+item.workTime+ "h\n"+item.workContent+ "\n"
+    })
+    item.ccTo1 = item.ccTo.split(",").map(function (value, index) {
+      return Number(value);
+    });
+    
+
+     /** 查询树结构用户列表  回显抄送人*/
+
+    projectApi()
+    .deptUserTreeSelect({
+     }).then((requset) => {
+        state.tree = requset.data;
+        item.treeSelectNodes = proxy.$common.findTreeNodes(state.tree, item.ccTo1);
+        var ccToString=''
+        item.treeSelectNodes.forEach((aa,index) => {
+          if(index==item.treeSelectNodes.length-1){
+            ccToString+=aa.nickName+''
+          }else{
+            ccToString+=aa.nickName+','
+          }
+          
+        })
+        // 触发方法
+        proxy.$common.uniCopy({
+          content: workLongString+ "\n" +
+                  "明日计划:\n" + item.tomorrowPlan + "\n" +
+                  "工作协调:\n" + item.coordinateWork + "\n" +
+                  "抄送人:\n" +ccToString  ,
+          success: (res) => {
+            uni.showToast({
+              title: res,
+              icon: "none",
+            });
+          },
+          error: (e) => {
+            uni.showToast({
+              title: e,
+              icon: "none",
+              duration: 3000,
+            });
+          },
+        });
+        state.popup.show = false;
+     })
+    .catch((err) => {
+    })
+    
+
   } else if (type === "delete") {
     projectApi()
       .ReportDelete(item.id)

+ 25 - 0
src/plugins/common.plugins.js

@@ -71,6 +71,31 @@ export default {
       }
     });
   },
+
+
+    /**
+   * 树结构过滤
+   * @param {*} treeData 
+   * @param {*} ids 
+   * @returns 
+   */
+    findTreeNodes(treeData, ids) {
+      const result = [];
+      const findNodes_ = (nodes, idArray) => {
+        nodes.forEach(node => {
+          if (idArray.includes(node.id)) {
+            result.push(node);
+          }
+          if (node.children && node.children.length > 0) {
+            findNodes_(node.children, idArray);
+          }
+        });
+      };
+     
+      findNodes_(treeData, ids);
+      return result;
+    },
+  
   /**
    * @复制粘贴板
    * @param {传入值} content