|
|
@ -919,10 +919,11 @@
|
|
|
|
label="下限">
|
|
|
|
label="下限">
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
<el-table-column
|
|
|
|
|
|
|
|
width="120"
|
|
|
|
prop="actualValue"
|
|
|
|
prop="actualValue"
|
|
|
|
label="实际值">
|
|
|
|
label="实际值">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-input v-if="scope.row.standardType == 'quantify' " size="small" v-model="scope.row.actualValue" @change="handleEdit(scope.$index,scope.row)"></el-input>
|
|
|
|
<el-input-number style="width: 90px;" v-if="scope.row.standardType == 'quantify'" size="small" v-model="scope.row.actualValue" controls-position="right"></el-input-number>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column
|
|
|
|
<el-table-column
|
|
|
@ -1414,6 +1415,7 @@ export default {
|
|
|
|
// 展示
|
|
|
|
// 展示
|
|
|
|
showWork(row) {
|
|
|
|
showWork(row) {
|
|
|
|
this.reset();
|
|
|
|
this.reset();
|
|
|
|
|
|
|
|
this.standardListVo = [];
|
|
|
|
const orderId = row.orderId || this.ids
|
|
|
|
const orderId = row.orderId || this.ids
|
|
|
|
getInspectionWork(orderId).then(response => {
|
|
|
|
getInspectionWork(orderId).then(response => {
|
|
|
|
this.workVO = response.data;
|
|
|
|
this.workVO = response.data;
|
|
|
|