|
|
@ -2,7 +2,7 @@ |
|
|
|
<el-dialog |
|
|
|
title="配置问题项规则" |
|
|
|
visible |
|
|
|
width="80%" |
|
|
|
width="90%" |
|
|
|
:before-close="handleClose" |
|
|
|
:close-on-click-modal="false" |
|
|
|
> |
|
|
@ -153,6 +153,19 @@ |
|
|
|
/> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column |
|
|
|
:label="getColumnName('OPCComValueCheckRuleDetail-ObjectPO')" |
|
|
|
prop="OPCComValueCheckRuleDetail-ObjectPO" |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-input-number |
|
|
|
class="OPCComValueCheckRuleDetail-ObjectPO" |
|
|
|
style="width: 100%" |
|
|
|
:min="0" |
|
|
|
v-model="scope.row['OPCComValueCheckRuleDetail-ObjectPO']" |
|
|
|
/> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column align="right" width="100"> |
|
|
|
<template slot="header"> |
|
|
|
<el-button type="success" @click="addOPCComValue">新增</el-button> |
|
|
@ -251,4 +264,15 @@ export default { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
<style lang="scss"> |
|
|
|
.OPCComValueCheckRuleDetail-ObjectPO{ |
|
|
|
span{ |
|
|
|
display: none; |
|
|
|
} |
|
|
|
.el-input__inner{ |
|
|
|
padding: 0 10px; |
|
|
|
text-align: left; |
|
|
|
} |
|
|
|
} |
|
|
|
</style> |