Commit 21a0ae50 authored by CenXinYi's avatar CenXinYi

feat: 增加新的废弃字段

Signed-off-by: 's avatarCenXinYi <2810162984@qq.com>
parent adeff7fa
......@@ -55,22 +55,27 @@
<el-table v-loading="loading" border :data="equipmentList" @selection-change="handleSelectionChange">
<el-table-column type="index" label="序号" width="80" />
<el-table-column label="pn" prop="pn" width="220">
<el-table-column label="pn" prop="pn" width="180">
<template slot-scope="scope">
{{ scope.row.pn || '-' }}
</template>
</el-table-column>
<el-table-column label="lot" prop="lot" width="220">
<el-table-column label="lot" prop="lot" width="180">
<template slot-scope="scope">
{{ scope.row.lot || '-' }}
</template>
</el-table-column>
<el-table-column label="plocation" prop="plocation" width="220">
<el-table-column label="plocation" prop="plocation" width="180">
<template slot-scope="scope">
{{ scope.row.plocation || '-' }}
</template>
</el-table-column>
<el-table-column label="厚度" prop="phd" width="220">
<el-table-column label="pzl" prop="createName" width="180">
<template slot-scope="scope">
{{ scope.row.pzl || '-' }}
</template>
</el-table-column>
<el-table-column label="厚度" prop="phd" width="180">
<template slot-scope="scope">
{{ scope.row.phd || '-' }}
</template>
......@@ -239,7 +244,9 @@
<el-form-item label="fq_dbxi" prop="fq_dbxi">
<el-input v-model.trim="abandonFrom.fq_dbxi" :maxlength="100" placeholder="请输入fq_dbxi" />
</el-form-item>
<el-form-item label="pzl" prop="pzl">
<el-input v-model.trim="abandonFrom.pzl" :maxlength="100" placeholder="请输入pzl" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button @click="cancel">取 消</el-button>
......@@ -281,6 +288,7 @@ export default {
fq_mcode: '',
fq_ys: '',
fq_yy: '',
pzl: '',
pstatus: '1'
},
......@@ -794,7 +802,6 @@ export default {
this.abandonFrom.plocation = row.plocation
this.abandonFrom.prank = row.prank
this.abandonFrom.psm = row.psm
this.abandonFrom.pzl = row.pzl
this.abandonOpen = true
// const EquipmentIds = row.businessId || this.ids;
......
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