Browse Source

2024-07-11

功能优化
java8
fengyuan_yang 2 years ago
parent
commit
af3aafcf2e
  1. 10
      src/views/modules/qc/qcTemplate.vue

10
src/views/modules/qc/qcTemplate.vue

@ -236,7 +236,7 @@
min-width="60"
label="标准值">
<template slot-scope="scope">
<el-input v-model="scope.row.defaultValue" style="height: 11px;padding: 0px " allow-create>;width:98%"></el-input>
<el-input v-model="scope.row.defaultValue" style="height: 11px;width:98%"></el-input>
</template>
</el-table-column>
<el-table-column
@ -246,8 +246,8 @@
min-width="60"
label="最大值">
<template slot-scope="scope">
<el-input v-if="scope.row.valueTypeDb === 'T'" v-model="scope.row.maxValue" disabled style="height: 11px;padding: 0px " allow-create>;width:98%"></el-input>
<el-input v-if="scope.row.valueTypeDb != 'T'" v-model="scope.row.maxValue" style="height: 11px;padding: 0px " allow-create>;width:98%"></el-input>
<el-input v-if="scope.row.valueTypeDb === 'T'" v-model="scope.row.maxValue" disabled style="height: 11px;width:98%"></el-input>
<el-input v-else v-model="scope.row.maxValue" style="height: 11px;width:98%"></el-input>
</template>
</el-table-column>
<el-table-column
@ -257,8 +257,8 @@
min-width="60"
label="最小值">
<template slot-scope="scope">
<el-input v-if="scope.row.valueTypeDb === 'T'" v-model="scope.row.minValue" disabled style="height: 11px;padding: 0px " allow-create>;width:98%"></el-input>
<el-input v-if="scope.row.valueTypeDb != 'T'" v-model="scope.row.minValue" style="height: 11px;padding: 0px " allow-create>;width:98%"></el-input>
<el-input v-if="scope.row.valueTypeDb === 'T'" v-model="scope.row.minValue" disabled style="height: 11px;width:98%"></el-input>
<el-input v-else v-model="scope.row.minValue" style="height: 11px;width:98%"></el-input>
</template>
</el-table-column>
<!-- <el-table-column-->

Loading…
Cancel
Save