Commit b0eedfed authored by “lixuyan”'s avatar “lixuyan”

装配计划添加暂停状态

parent 1d580a87
......@@ -67,6 +67,9 @@
<div v-show="item.isException">
<span>例外放行</span>
</div>
<div v-show="item.status === 'Paused'">
<span>暂停</span>
</div>
</div>
</div>
<div class="bottom-content">
......@@ -220,21 +223,23 @@ export default {
// })
// return
// }
this.$router.push({
path: '/dee-mes/taskExecution',
query: {
id: item.id,
title: this.$route.query.title + '执行',
showMenu: false,
showTag: 'false',
isOK: item.isOK,
backFlag: true
if (item.status !== 'Paused') {
this.$router.push({
path: '/dee-mes/taskExecution',
query: {
id: item.id,
title: this.$route.query.title + '执行',
showMenu: false,
showTag: 'false',
isOK: item.isOK,
backFlag: true
// materNo: item.materNo,
// airModelId: item.airModelId,
// sortiesId: item.sortiesId,
}
})
this.$store.dispatch('app/closeSideBar', false)
}
})
this.$store.dispatch('app/closeSideBar', false)
}
},
getTaskAcceptance() {
const that = this
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment