Browse Source

2024-10-21

优化
master
fengyuan_yang 1 year ago
parent
commit
eed0baae38
  1. 2
      src/views/modules/changeManagement/changeRequest.vue

2
src/views/modules/changeManagement/changeRequest.vue

@ -595,7 +595,7 @@
<!-- ECN种类模态框 -->
<el-dialog title="ECN种类" :close-on-click-modal="false" v-drag :visible.sync="EcnTypeModalFlag" width="900px">
<el-form ref="dataForm" label-position="right">
<el-row v-for="(item, index) in form" :key="index" style="margin-top: 10px">
<el-row v-for="(item, index) in form" :key="index" style="padding-top: 10px;" :style="{borderTop:index === 0?'':'1px solid #ccc'}">
<el-col :span="8">
<el-form-item :prop="'input.'+index+'.value'">
<el-checkbox v-model="item.flag" @change="(val)=>ecnTypeHeaderChange(val,index)" :indeterminate="item.list.filter(a => a.flag === 'Y').length !== 0 && item.list.filter(a => a.flag === 'Y').length !== item.list.length" true-label="Y">{{item.value}}</el-checkbox>

Loading…
Cancel
Save