Browse Source

Merge branch 'master_hella' of http://dev.ccwin-in.com:3000/sfms3.0/sfms3.0-uniapp into master_hella

hella_online_20240829
niexiting 2 months ago
parent
commit
7319b88fe9
  1. 12
      src/pages/repleinsh/job/repleinshJob.vue

12
src/pages/repleinsh/job/repleinshJob.vue

@ -284,6 +284,11 @@
action: "==",
value: code
})
filters.push({
column: "accept_user_id",
action: "==",
value: this.$store.state.user.id
})
var params = {
filters: filters,
@ -296,7 +301,7 @@
uni.hideLoading();
if (res.data.list.length == 0) {
that.showMessage('未查找到' + '【' + code + '】的补料任务');
} else if (res.data.list.length == 1) {
} else {
that.openJobDetail(res.data.list[0]);
}
}).catch(error => {
@ -345,6 +350,11 @@
column: "itemCode",
action: "==",
value: result.label.itemCode
},
{
column: "accept_user_id",
action: "==",
value: this.$store.state.user.id
}
]
getRepleinshJobList({

Loading…
Cancel
Save