|
@@ -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)
|