|
@@ -11,6 +11,7 @@
|
|
|
<view @click='tabcarchange(1)' class='line' :class='statusFlag==1?"active":""'>未完成</view>
|
|
|
<view @click='tabcarchange(3)' class='line' :class='statusFlag==3?"active":""'>已完成</view>
|
|
|
<view @click='tabcarchange(5)' class='line' :class='statusFlag==5?"active":""'>已发起</view>
|
|
|
+ <view @click='tabcarchange(7)' class='line' :class='statusFlag==7?"active":""'>抄送</view>
|
|
|
</view>
|
|
|
<view class="right">
|
|
|
<!-- <view class="right-contrent1">逐条审核</view>
|
|
@@ -82,7 +83,8 @@
|
|
|
},
|
|
|
data: {},
|
|
|
keyword: "",
|
|
|
- copyTaskInfo: []
|
|
|
+ copyTaskInfo: [],
|
|
|
+ pcUserInfo:{}
|
|
|
};
|
|
|
},
|
|
|
onBackPress(e) {
|
|
@@ -217,6 +219,7 @@
|
|
|
// this.warehouseInOutInfo.phone = this.userInfo.phone
|
|
|
},
|
|
|
onLoad() {
|
|
|
+ this.pcUserInfo = uni.getStorageSync("pcUserInfo")
|
|
|
if (uni.getStorageSync("everyTask") == true) {
|
|
|
this.checked = true
|
|
|
} else {
|
|
@@ -383,7 +386,14 @@
|
|
|
data.searchKeyword = searchKeyword
|
|
|
url = '/commonUser/query/findHisPageNoticeTasksMy'
|
|
|
}
|
|
|
-
|
|
|
+ else if (this.statusFlag == 7) {
|
|
|
+ data.currentPage = pages
|
|
|
+ data.pageSize = limit
|
|
|
+ data.acceptId = this.userInfo.phone
|
|
|
+ data.compId = this.pcUserInfo.compId
|
|
|
+ data.searchKeyword = searchKeyword
|
|
|
+ url = '/noticeCopyInfo/getNotice'
|
|
|
+ }
|
|
|
//this.warehouseInOutInfo.status = this.status
|
|
|
this.$api.doRequest('get', url, data).then(res => {
|
|
|
if (res.data.code == 200) {
|