Browse Source

Merge branch 'langfang-develop' of http://101.201.121.115:3000/leo/LAPP_GAAS_GFrame_WEBFRONT into langfang-test

langfang-test
liwei 3 years ago
parent
commit
8c2fe676bd
1 changed files with 26 additions and 2 deletions
  1. +26
    -2
      src/views/plant/processData/basicCommunication/problem.vue

+ 26
- 2
src/views/plant/processData/basicCommunication/problem.vue View File

@ -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>

Loading…
Cancel
Save