rev:修改
This commit is contained in:
@@ -2,7 +2,7 @@ export default {
|
||||
'lang': 'zh',
|
||||
// 平台
|
||||
'platform': {
|
||||
'title': '徐工汉云WMS系统',
|
||||
'title': '哈电镇江焊材库wms系统',
|
||||
'tip1': '用户名不能为空',
|
||||
'tip2': '密码不能为空',
|
||||
'tip3': '验证码不能为空'
|
||||
|
||||
@@ -26,7 +26,7 @@ export default {
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
title: '徐工汉云WMS系统',
|
||||
title: '哈电镇江焊材库wms系统',
|
||||
logo: '',
|
||||
title_param: 'platform'
|
||||
}
|
||||
|
||||
@@ -340,6 +340,7 @@
|
||||
<el-table-column prop="box_type" label="料箱类型" :formatter="formattBoxType" :min-width="flexWidth('box_type',crud.data,'料箱类型')" />
|
||||
<el-table-column prop="device_code" label="机台编码" :min-width="flexWidth('device_code',crud.data,'机台编码')" />
|
||||
<el-table-column prop="execution_stand" label="执行标准" :min-width="flexWidth('execution_stand',crud.data,'执行标准')" />
|
||||
<el-table-column prop="material_type" label="是否压容" :min-width="flexWidth('material_type',crud.data,'是否压容')" :formatter="formattMaterial" />
|
||||
<el-table-column prop="remark" label="备注" :min-width="flexWidth('remark',crud.data,'备注')" />
|
||||
<el-table-column prop="create_name" label="组盘人" :min-width="flexWidth('create_name',crud.data,'组盘人')" />
|
||||
<el-table-column prop="create_time" label="组盘时间" :min-width="flexWidth('create_time',crud.data,'组盘时间')" />
|
||||
@@ -511,6 +512,13 @@ export default {
|
||||
formattStatus(row) {
|
||||
return this.dict.label.GROUP_STATUS[row.status]
|
||||
},
|
||||
formattMaterial(row) {
|
||||
if (row.material_type === '0') {
|
||||
return '压容'
|
||||
} else if (row.material_type === '1') {
|
||||
return '非压容'
|
||||
}
|
||||
},
|
||||
formattBoxType(row) {
|
||||
return this.dict.label.storagevehicle_type[row.box_type]
|
||||
},
|
||||
|
||||
@@ -110,6 +110,8 @@
|
||||
<el-table-column prop="bake_num" label="烘干次数" :min-width="flexWidth('bake_num',crud.data,'烘干次数')" />
|
||||
<el-table-column prop="insert_time" label="入库时间" :min-width="flexWidth('insert_time',crud.data,'入库时间')" />
|
||||
<el-table-column prop="is_return" label="是否退料" :min-width="flexWidth('is_return',crud.data,'是否退料')" :formatter="isReturn" />
|
||||
<el-table-column prop="execution_stand" label="执行标准" :min-width="flexWidth('execution_stand',crud.data,'执行标准')" />
|
||||
<el-table-column prop="material_type" label="是否压容" :min-width="flexWidth('material_type',crud.data,'是否压容')" :formatter="formattMaterial" />
|
||||
<el-table-column prop="remark" label="备注" :min-width="flexWidth('remark',crud.data,'备注')" />
|
||||
</el-table>
|
||||
<!--分页组件-->
|
||||
@@ -200,6 +202,13 @@ export default {
|
||||
isReturn(row, column) {
|
||||
return this.dict.label.IS_OR_NOT[row.is_return]
|
||||
},
|
||||
formattMaterial(row) {
|
||||
if (row.material_type === '0') {
|
||||
return '压容'
|
||||
} else if (row.material_type === '1') {
|
||||
return '非压容'
|
||||
}
|
||||
},
|
||||
downdtl() {
|
||||
if (this.currentRow !== null) {
|
||||
this.showDtlLoading = true
|
||||
|
||||
Reference in New Issue
Block a user