Commit e4cd04f4 authored by jingnan's avatar jingnan 👀

采购入库明细状态字段未翻译bug修改

parent 1f137534
......@@ -443,7 +443,18 @@ export default {
},
{ title: '合同号', key: 'contractNo', headerAlign: 'center' },
{ title: '备注', key: 'remark', headerAlign: 'center' },
{ title: '状态', key: 'state', headerAlign: 'center' },
{
'title': '状态',
'key': 'state',
'width': '140px',
'fildProp': {
'type': 'DictDataVO',
'rule': {
'typeName': 'DictDataVO',
'dictTypeCode': 'StorageReqStatus'
}
}
},
{ title: '创建时间', key: 'createTime', headerAlign: 'center' }
],
tableData: [],
......
......@@ -108,7 +108,18 @@ export default {
},
{ title: '合同号', key: 'contractNo', align: 'center', headerAlign: 'center' },
{ title: '备注', key: 'remark', align: 'center', headerAlign: 'center' },
{ title: '状态', key: 'state', align: 'center', headerAlign: 'center' },
{
'title': '状态',
'key': 'state',
'width': '140px',
'fildProp': {
'type': 'DictDataVO',
'rule': {
'typeName': 'DictDataVO',
'dictTypeCode': 'StorageReqStatus'
}
}
},
{
title: '创建时间', key: 'createTime', align: 'center', headerAlign: 'center', width: '120', formatter: (row, column, cellValue, index) => {
return row.createTime && row.createTime.split(' ')[0]
......
......@@ -173,7 +173,18 @@ export default {
},
{ title: '合同号', key: 'contractNo', align: 'center', headerAlign: 'center' },
{ title: '备注', key: 'remark', align: 'center', headerAlign: 'center' },
{ title: '状态', key: 'state', align: 'center', headerAlign: 'center' },
{
'title': '状态',
'key': 'state',
'width': '140px',
'fildProp': {
'type': 'DictDataVO',
'rule': {
'typeName': 'DictDataVO',
'dictTypeCode': 'StorageReqStatus'
}
}
},
{
title: '创建时间', key: 'createTime', align: 'center', headerAlign: 'center', width: '120', formatter: (row, column, cellValue, index) => {
return row.createTime && row.createTime.split(' ')[0]
......
......@@ -95,7 +95,18 @@ export default {
},
{ title: '合同号', key: 'contractNo', align: 'center', headerAlign: 'center' },
{ title: '备注', key: 'remark', align: 'center', headerAlign: 'center' },
{ title: '状态', key: 'state', align: 'center', headerAlign: 'center' },
{
'title': '状态',
'key': 'state',
'width': '140px',
'fildProp': {
'type': 'DictDataVO',
'rule': {
'typeName': 'DictDataVO',
'dictTypeCode': 'StorageReqStatus'
}
}
},
{
title: '创建时间', key: 'createTime', align: 'center', headerAlign: 'center', width: '120', formatter: (row, column, cellValue, index) => {
return row.createTime && row.createTime.split(' ')[0]
......
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