Browse Source

一键复制功能实现,项目列表筛选功能实现

ming 7 months ago
parent
commit
db42ceea12

+ 70 - 1
src/pages/business/common/projectMange/list/index.vue

@@ -46,6 +46,23 @@
     :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
   >
     <template #default>
+      <view class="projectSearchBox" style="margin:20px 0;width:94%;margin-left:3%;vertical-align:top" >
+        <u-input v-model="projectName" placeholder="请输入项目名称"  size="small" />
+        <u-input v-model="projectTypeName" disabledColor="#fff" disabled   @click="handleAction('项目类型',project_type)" placeholder="请选择项目类型" suffixIcon="arrow-down" suffixIconStyle="color: #909399" />        
+        <u-button   type="primary" @click="selectListApi">搜索</u-button>
+        <u-picker
+          :show="actionShow"
+          :columns="projectTypeList"
+          title="请选择项目类型"
+          keyName="label"
+          visibleItemCount="6"
+          :closeOnClickOverlay="true"
+          @close="actionShow = false"
+          @cancel="actionShow = false"
+          @confirm="selectAction"
+        ></u-picker>
+
+      </view>      		
       <view class="menu-list m0">
         <view class="list-cell" style="color: #666666; line-height: 25px" v-for="(base, index) in dataList" :key="index">
           <view class="content-area-top menu-item">
@@ -182,6 +199,7 @@ import { useStores } from "@/store/modules/index";
 /*----------------------------------公共变量-----------------------------------*/
 const { proxy } = getCurrentInstance();
 const useStore = useStores();
+const {  project_type } = proxy.useDict("project_type");
 /*----------------------------------变量声明-----------------------------------*/
 const state = reactive({
   loading: false,
@@ -207,9 +225,35 @@ const state = reactive({
     content: "", //提示信息
   },
   eventList: {}, //数据存储
+  projectName:'',
+  projectTypeName: "", //项目类型名称
+  actionShow: false,
+  projectType: "", //项目类型
+  projectTypeList:[[]],    
 });
 
-const { tabsList, tabsCurrent, dataList, pageSize, current, total, userDate, popup, modal, eventList } = toRefs(state);
+const { tabsList, tabsCurrent, dataList, pageSize, current, total, userDate, popup, modal, eventList,array,index,projectTypeName,actionShow,projectType,projectTypeList,projectName} = toRefs(state);
+
+
+/**
+ * @action弹出框点击事件
+ */
+ function handleAction(value,event, index, ind) {
+  if (value == "项目类型") {
+    state.projectTypeList[0] = event
+  }
+
+  state.actionShow = true;
+}
+
+/**
+ * @action弹出框选择事件
+ */
+ function selectAction(e) {
+   state.projectType = e.value[0].value;
+   state.projectTypeName = e.value[0].label;
+   state.actionShow = false;
+}
 
 /**
  * @页面初始化
@@ -292,6 +336,8 @@ function selectListApi() {
       projectAscription: state.tabsList[state.tabsCurrent].value,
       pageNum: state.current,
       pageSize: state.pageSize,
+      projectType: state.projectType,
+      projectName: state.projectName,
     })
     .then((requset) => {
       state.dataList = requset.data.records;
@@ -324,6 +370,9 @@ function refresh() {
  */
 function tabsClick(e) {
   state.tabsCurrent = e.index;
+  state.projectName='';
+  state.projectType='';
+  state.projectTypeName=''
   init();
 }
 
@@ -344,6 +393,26 @@ onLoad((options) => {});
 }
 </style>
 <style lang="scss" scoped>
+.projectSearchBox {
+  position:relative;
+  .u-input{
+    width:41%;display:inline-block;margin-right:5px;background:#fff;height:34px;line-height:34px;padding:0 5px;
+    .uni-input-input{
+      font-size:12px!important;
+    }
+  }
+  .u-button{
+    width:50px;
+    position:absolute;
+    right:0px;
+    top:0;
+    height:32px;
+    line-height:32px;
+   
+
+  }
+  
+}
 .list-container {
   .content-area {
     &-top {

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

@@ -62,8 +62,13 @@
           <view class="content-area-center-top">抄送人 </view>
           <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>
+
+    
   </oa-scroll>
 </template>
 
@@ -90,9 +95,47 @@ const state = reactive({
     reportId: "",
     createBy: "",
   },
+  workContentsString:'',
 });
 
-const { dataList, pageSize, current, total } = toRefs(state);
+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,
+      });
+    },
+  });
+}
+
+
 
 /**
  * @初始化
@@ -107,6 +150,9 @@ 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) => {