From 77cc3af3cea60471fb2d45ab5da10c4673a6f559 Mon Sep 17 00:00:00 2001 From: Houjie <714924425@qq.com> Date: 星期五, 18 四月 2025 13:23:31 +0800 Subject: [PATCH] 提交 --- pages/TaskManager/TaskManagerList.vue | 148 ++++++++++++++++--------------------------------- 1 files changed, 48 insertions(+), 100 deletions(-) diff --git a/pages/TaskManager/TaskManagerList.vue b/pages/TaskManager/TaskManagerList.vue index db36e09..fcacc98 100644 --- a/pages/TaskManager/TaskManagerList.vue +++ b/pages/TaskManager/TaskManagerList.vue @@ -35,7 +35,7 @@ </view> <view class="container"> - + <mescroll-uni ref="mescrollRef" @init="mescrollInit" :top="top" @down="downCallback" @up="upCallback"> <!-- 鍒楄〃淇℃伅寮�濮� --> <view class="content"> @@ -44,27 +44,27 @@ <view class="flex"> <view class="flex-sub text-light bg-white padding-xs margin-xs radius">娴佺▼鍚嶇О:</view> <view class="flex-sub bg-white padding-xs margin-xs text-bold radius text-right"> - {{item.partName}} + {{item.procDefName}} </view> </view> <view class="flex"> <view class="flex-sub text-light bg-white padding-xs margin-xs radius">娴佺▼鎻忚堪:</view> <view class="flex-sub bg-white padding-xs margin-xs radius text-right"> - {{item.taskType}} + {{item.description}} </view> </view> <view class="flex"> <view class="flex-sub text-light bg-white padding-xs margin-xs radius">娴佺▼鍙戣捣浜�:</view> <view class="flex-sub bg-white padding-xs margin-xs text-blue radius text-right"> - {{item.priority}} + {{item.startUserName}} </view> </view> - - + + <view class="flex"> <view class="flex-sub text-light bg-white padding-xs margin-xs radius">浠诲姟鍚嶇О:</view> <view class="flex-sub bg-white padding-xs margin-xs radius text-right"> - {{item.taskDesc}} + {{item.taskName}} </view> </view> </uni-card> @@ -81,7 +81,7 @@ data() { return { type: 'top', - scrollLeft:0, + scrollLeft: 0, formData: { num: '', partNumNameModel: '' @@ -90,8 +90,7 @@ colorIndex: 0, activeColor: '#5277A6', url: { - - stallList: "/assign/flow/finishedList" + stallList: "assign/flow/finishedList" }, upOption: { @@ -112,15 +111,7 @@ color: '#2979FF', borderColor: '#2979FF' }, - msgList: [{ - partName: "璁惧A", - taskType: "缁存姢", - taskDesc: "瀹氭湡妫�鏌�", - priority: "楂�", - dueaDate: "2023-10-10", - ssignee: "寮犱笁", - status: 1 - }], //鍒楄〃鏁版嵁 + msgList: [], //鍒楄〃鏁版嵁 announcement1: [], msg1Count: 0, msg2Count: 0, @@ -148,97 +139,55 @@ created() {}, methods: { - + /** * @param {Object} item * 璇︽儏椤甸潰 */ - // onClickProductionTask(item) { - // let keyword = this.TabCur - // uni.navigateTo({ - // url: '/pages/mes/om/workSheetOpToolingBorrowDeils/workSheetOpToolingBorrowDeils?keyword=' + keyword - // }) + onClickProductionTask(item) { + uni.navigateTo({ + url: '/pages/TaskManager/TaskManagerDeils/TaskManagerDeils?item=' + + encodeURIComponent(JSON.stringify(item)) - // }, - + }) + + }, + search() { this.$refs.popup.open(); }, - - // upCallback(page) { - // let keyword = this.TabCur - // if (keyword == 0) { - // this.$http.get(this.url.stallList, { - // params: { - // pageNo: page.num, - // pageSize: page.size, - // order: 'asc', - // column: 'createTime', - // status: 1 - // }, + upCallback(page) { + this.$http.get(this.url.stallList, { + params: { + pageNo: page.num, + pageSize: page.size + }, - // }).then(res => { - // this.announcement1 = res.data.result.records - // this.mescroll.endSuccess(this.announcement1.length); - // console.log("url", res) - // //璁剧疆鍒楄〃鏁版嵁 - // if (res.data.success) { - // console.log("res", res.data) - // this.msg1Count = res.data.result.total - // this.msg1Title = "閫氱煡(" + res.data.result.total + ")"; - // for (let annItem of this.announcement1) { - // this.msgList.push(annItem) - // } - // } - // if (page.num == 1) { - // this.msgList = []; //濡傛灉鏄涓�椤甸渶鎵嬪姩鍒剁┖鍒楄〃 - // this.msgList = this.msgList.concat(this.announcement1); //杩藉姞鏂版暟鎹� - // } + }).then(res => { + this.announcement1 = res.data.result.records + this.mescroll.endSuccess(this.announcement1.length); + console.log("url", res) + //璁剧疆鍒楄〃鏁版嵁 + if (res.data.success) { + console.log("res", res.data) + this.msg1Count = res.data.result.total + this.msg1Title = "閫氱煡(" + res.data.result.total + ")"; + for (let annItem of this.announcement1) { + this.msgList.push(annItem) + } + } + if (page.num == 1) { + this.msgList = []; //濡傛灉鏄涓�椤甸渶鎵嬪姩鍒剁┖鍒楄〃 + this.msgList = this.msgList.concat(this.announcement1); //杩藉姞鏂版暟鎹� + } - // }).catch(() => { - // //鑱旂綉澶辫触, 缁撴潫鍔犺浇 - // this.mescroll.endErr(); - // }) - // } else if (keyword == 1) { - - // this.$http.get(this.url.stallList, { - // params: { - // pageNo: page.num, - // pageSize: page.size, - // order: 'desc', - // status: 3, - // column: 'createTime' - // }, - - // }).then(res => { - // this.announcement1 = res.data.result.records - // this.mescroll.endSuccess(this.announcement1.length); - // console.log("url", res) - // //璁剧疆鍒楄〃鏁版嵁 - // if (res.data.success) { - // console.log("res", res.data) - // this.msg2Count = res.data.result.total - // this.msg1Title = "閫氱煡(" + res.data.result.total + ")"; - // for (let annItem of this.announcement1) { - // this.msgList.push(annItem) - // } - // } - // if (page.num == 1) { - // this.msgList = []; //濡傛灉鏄涓�椤甸渶鎵嬪姩鍒剁┖鍒楄〃 - // this.msgList = this.msgList.concat(this.announcement1); //杩藉姞鏂版暟鎹� - // } - - // }).catch(() => { - // //鑱旂綉澶辫触, 缁撴潫鍔犺浇 - // this.mescroll.endErr(); - // }) - - // } - - - // }, + }).catch(() => { + //鑱旂綉澶辫触, 缁撴潫鍔犺浇 + this.mescroll.endErr(); + }) + }, resetTask() { @@ -383,7 +332,6 @@ </script> <style> - .is-hover { color: rgba(255, 255, 255, 0.6); background-color: #55aaff; @@ -391,7 +339,7 @@ } - + .content { margin-top: 5px; } -- Gitblit v1.9.3