|
|
|
|
@ -26,19 +26,8 @@ |
|
|
|
|
>分派</el-button |
|
|
|
|
> |
|
|
|
|
</template> |
|
|
|
|
<template #bsWorkType.wtName="scope"> |
|
|
|
|
<span> |
|
|
|
|
{{ scope.row.bsWorkType ? scope.row.bsWorkType.wtName : '-' }} |
|
|
|
|
</span> |
|
|
|
|
</template> |
|
|
|
|
<template #name="{ row }"> |
|
|
|
|
<i :class="row.source" style="margin-right: 5px" /> |
|
|
|
|
<span>{{ row.name }}</span> |
|
|
|
|
</template> |
|
|
|
|
<template #source="{ row }"> |
|
|
|
|
<div style="text-align: center"> |
|
|
|
|
<i :class="row.source" /> |
|
|
|
|
</div> |
|
|
|
|
<template #pdmCreateTime="scope"> |
|
|
|
|
{{ scope.row.pdmCreateTime ? scope.row.pdmCreateTime.substring(0, 10) : '' }} |
|
|
|
|
</template> |
|
|
|
|
</avue-crud> |
|
|
|
|
<!-- 分派人员弹框 --> |
|
|
|
|
@ -128,6 +117,7 @@ export default { |
|
|
|
|
headerAlign: 'center', |
|
|
|
|
align: 'left', |
|
|
|
|
searchLabelWidth: 60, |
|
|
|
|
width: 150, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '零件名称', |
|
|
|
|
@ -137,6 +127,7 @@ export default { |
|
|
|
|
overHidden: true, |
|
|
|
|
headerAlign: 'center', |
|
|
|
|
align: 'left', |
|
|
|
|
width: 150, |
|
|
|
|
rules: [ |
|
|
|
|
{ |
|
|
|
|
required: false, |
|
|
|
|
@ -156,6 +147,7 @@ export default { |
|
|
|
|
clearable: true, |
|
|
|
|
headerAlign: 'center', |
|
|
|
|
align: 'center', |
|
|
|
|
width: 150, |
|
|
|
|
dicUrl: '/blade-system/dict/dictionary?code=processTaskType', |
|
|
|
|
props: { |
|
|
|
|
label: 'dictValue', |
|
|
|
|
@ -170,6 +162,7 @@ export default { |
|
|
|
|
overHidden: true, |
|
|
|
|
headerAlign: 'center', |
|
|
|
|
align: 'center', |
|
|
|
|
width: 150, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: 'PDM工艺路线', |
|
|
|
|
@ -179,6 +172,7 @@ export default { |
|
|
|
|
overHidden: true, |
|
|
|
|
headerAlign: 'center', |
|
|
|
|
align: 'center', |
|
|
|
|
width: 150, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '工艺路线详情', |
|
|
|
|
@ -188,6 +182,7 @@ export default { |
|
|
|
|
overHidden: true, |
|
|
|
|
headerAlign: 'center', |
|
|
|
|
align: 'center', |
|
|
|
|
width: 150, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '在制品建议', |
|
|
|
|
@ -198,6 +193,7 @@ export default { |
|
|
|
|
|
|
|
|
|
headerAlign: 'center', |
|
|
|
|
align: 'center', |
|
|
|
|
width: 150, |
|
|
|
|
}, |
|
|
|
|
{ |
|
|
|
|
label: '备注', |
|
|
|
|
@ -306,7 +302,7 @@ export default { |
|
|
|
|
}; |
|
|
|
|
</script> |
|
|
|
|
<style lang="scss" scoped> |
|
|
|
|
:deep(.el-checkbox .is-disabled){ |
|
|
|
|
display: none; |
|
|
|
|
} |
|
|
|
|
:deep(.el-checkbox .is-disabled) { |
|
|
|
|
display: none; |
|
|
|
|
} |
|
|
|
|
</style> |
|
|
|
|
|