|
@@ -45,7 +45,7 @@
|
|
|
<el-table-column :key="2" label="推料车名称" min-width="70px" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.NoEdit">{{ scope.row.tmrname }}</span>
|
|
|
- <el-select v-if="scope.row.Edit" v-model="scope.row.tmrid" filterable placeholder="推料车名称" class="filter-item" style="width:95%;padding:10px 0;" @change="changeTmrCode(scope.$index, scope.row)">
|
|
|
+ <el-select v-if="scope.row.Edit" v-model="scope.row.tmrid" filterable placeholder="推料车名称" class="filter-item" style="width:95%;padding:10px 0;" @change="changeTmrCode(scope.$index, scope.row, $event)">
|
|
|
<el-option v-for="item in tmrCodeList" :key="item.id" :label="item.name" :value="item.id" />
|
|
|
</el-select>
|
|
|
</template>
|
|
@@ -63,7 +63,7 @@
|
|
|
<el-tag v-if="scope.row.Edit" v-for="tag in scope.row.timesArr" :key="tag" closable @close="tag_close(scope.$index, scope.row, tag)" type="success">{{tag}}</el-tag>
|
|
|
|
|
|
|
|
|
- <el-time-picker v-if="scope.row.time_single"
|
|
|
+ <el-time-picker v-if="scope.row.Edit"
|
|
|
v-model="scope.row.times"
|
|
|
:picker-options="{ selectableRange: '00:00:00 - 23:59:59' }"
|
|
|
value-format="HH:mm"
|
|
@@ -414,11 +414,14 @@ export default {
|
|
|
|
|
|
|
|
|
// 推料车
|
|
|
- changeTmrCode(index,row) {
|
|
|
- console.log("推料车:====",index,row)
|
|
|
+ changeTmrCode(index,row,item) {
|
|
|
+ console.log("推料车:====",index,row,item)
|
|
|
var Code = this.tmrCodeList.find(obj => obj.id === row.tmrid).Code
|
|
|
- console.log( "推料车编号:====",Code)
|
|
|
+ var itemName = this.tmrCodeList.find(obj => obj.id === row.tmrid).name
|
|
|
+ console.log( "推料车编号:====",Code , itemName)
|
|
|
this.table.list[index].tmrcode = Code
|
|
|
+ this.table.list[index].tmrname = itemName
|
|
|
+
|
|
|
},
|
|
|
|
|
|
|