|
|
@@ -129,7 +129,11 @@
|
|
|
@input="
|
|
|
handleInput(scope.row, scope.row.qualityResultContent)
|
|
|
"
|
|
|
- ></el-input>
|
|
|
+ >
|
|
|
+ <template slot="append" v-if="scope.row.unitName">
|
|
|
+ {{ scope.row.unitName }}
|
|
|
+ </template>
|
|
|
+ </el-input>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
@@ -425,7 +429,7 @@
|
|
|
}
|
|
|
}
|
|
|
if (symbol == '<') {
|
|
|
- if (Ivalue > Dvalue) {
|
|
|
+ if (Ivalue < Dvalue) {
|
|
|
return 1;
|
|
|
} else {
|
|
|
return 2;
|
|
|
@@ -436,6 +440,7 @@
|
|
|
},
|
|
|
|
|
|
handleInput(item, value) {
|
|
|
+ console.log(item,'item')
|
|
|
if (value) {
|
|
|
if (item.textType == '1') {
|
|
|
if (!item.symbol) {
|