Commit 94930b3d authored by jingnan's avatar jingnan 👀

工人执行界面增加转序标识

parent 2ab6538f
...@@ -126,6 +126,9 @@ ...@@ -126,6 +126,9 @@
操作说明 操作说明
</div> </div>
</div> </div>
<div v-show="item.isExceptionOptIden" class="exceptionOptIdenBox">
转序
</div>
</div> </div>
</div> </div>
<div v-else class="not-content">暂无数据</div> <div v-else class="not-content">暂无数据</div>
...@@ -874,6 +877,9 @@ export default { ...@@ -874,6 +877,9 @@ export default {
'name': 'jrExecuteOpPlans' 'name': 'jrExecuteOpPlans'
} }
] ]
},
{
'name': 'exceptionOperationVOS'
} }
], ],
'sortItem': [ 'sortItem': [
...@@ -929,7 +935,8 @@ export default { ...@@ -929,7 +935,8 @@ export default {
p.joExecuteOpPlan && p.joExecuteOpPlan.length && p.joExecuteOpPlan[0].jrExecuteOpPlans && p.joExecuteOpPlan[0].jrExecuteOpPlans.length && p.joExecuteOpPlan && p.joExecuteOpPlan.length && p.joExecuteOpPlan[0].jrExecuteOpPlans && p.joExecuteOpPlan[0].jrExecuteOpPlans.length &&
p.joExecuteOpPlan[0].jrExecuteOpPlans[0].dmirTime p.joExecuteOpPlan[0].jrExecuteOpPlans[0].dmirTime
}, },
fileList: p.objFileLinks ? p.objFileLinks : [] fileList: p.objFileLinks ? p.objFileLinks : [],
isExceptionOptIden: !!(p.exceptionOperationVOS && p.exceptionOperationVOS.find(r => r.state === 'Finish'))
} }
}) })
var status = that.workingProcedure.every( var status = that.workingProcedure.every(
...@@ -1599,6 +1606,7 @@ export default { ...@@ -1599,6 +1606,7 @@ export default {
height: 20px; height: 20px;
flex-grow: 1; flex-grow: 1;
.step-sel-item { .step-sel-item {
position: relative;
// width: 200px; // width: 200px;
height: 100px; height: 100px;
background: #fff; background: #fff;
...@@ -1915,6 +1923,17 @@ export default { ...@@ -1915,6 +1923,17 @@ export default {
// border-bottom: 5px solid #fff; // border-bottom: 5px solid #fff;
// border-left: 5px solid #fff; // border-left: 5px solid #fff;
// } // }
.exceptionOptIdenBox{
position: absolute;
top: 2px;
right: 2px;
color:red;
display: inline-block;
line-height: 20px;
font-size: 12px;
border: 1px solid red;
border-radius: 5%;
}
} }
.do-ing-step { .do-ing-step {
.step-sel-item-content { .step-sel-item-content {
......
...@@ -55,8 +55,9 @@ ...@@ -55,8 +55,9 @@
</div> </div>
</div> </div>
<div> <div>
<div v-show="item.firstCheckFlag === '是'"> <div>
<span>首件检验</span> <span v-show="item.firstCheckFlag === '是'">首件检验</span>
<span v-show="item.exceptionOptIden">转序</span>
</div> </div>
<div v-show="item.isQualified"> <div v-show="item.isQualified">
<span>不合格品</span> <span>不合格品</span>
...@@ -379,7 +380,9 @@ export default { ...@@ -379,7 +380,9 @@ export default {
isExit: p.isExit, isExit: p.isExit,
isOK: p.planVer === p.extProcessPlan.gaceVersion, isOK: p.planVer === p.extProcessPlan.gaceVersion,
// // 例外放行 // // 例外放行
isException: p.isException isException: p.isException,
// 转序
exceptionOptIden: p.exceptionOptIden
} }
}) })
this.visible = false this.visible = false
......
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