Commit aea29b25 authored by 李驰骋's avatar 李驰骋

Merge remote-tracking branch 'origin/dev' into dev

parents 5a4e032a 50822ca2
...@@ -182,6 +182,7 @@ ...@@ -182,6 +182,7 @@
:title="title" :title="title"
:visible.sync="open" :visible.sync="open"
width="1080px" width="1080px"
:close-on-click-modal="false"
append-to-body append-to-body
> >
<el-form ref="form" :model="form" :rules="rules" label-width="100px"> <el-form ref="form" :model="form" :rules="rules" label-width="100px">
...@@ -306,7 +307,7 @@ ...@@ -306,7 +307,7 @@
<el-table :data="tmToolRequestList"> <el-table :data="tmToolRequestList">
<el-table-column label="物料" prop="itemName" /> <el-table-column label="物料" prop="itemName" />
<el-table-column label="数量" prop="allQuantity" /> <el-table-column label="数量" prop="allQuantity" />
<el-table-column label="预计使用寿命" prop="requestNum" /> <el-table-column label="预计使用寿命" prop="nextMaintenPeriod" />
<el-table-column label="SN码"> <el-table-column label="SN码">
<template slot-scope="scope"> <template slot-scope="scope">
<el-input v-model="scope.row.toolCode" placeholder="请选择关联台账信息" <el-input v-model="scope.row.toolCode" placeholder="请选择关联台账信息"
...@@ -579,8 +580,7 @@ export default { ...@@ -579,8 +580,7 @@ export default {
getTmToolRequestList(toolRequestId).then((res) => { getTmToolRequestList(toolRequestId).then((res) => {
this.tmToolRequestList = res.data.map(item => { this.tmToolRequestList = res.data.map(item => {
return { return {
...item, ...item
requestNum: this.form.requestNum
} }
}) })
cb && cb(); cb && cb();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment