feat(user): 为商品管理页面的批量添加模板增加上传人和上传时间字段
- 在 batchAddColumn 数组中添加了上传人和上传时间两个字段
This commit is contained in:
parent
f1ed58f691
commit
f37df1db88
|
|
@ -41,6 +41,8 @@ const batchAddData: any = ref([]) // 批量新增
|
||||||
const batchAddColumn: any = ref([
|
const batchAddColumn: any = ref([
|
||||||
{ label: '装备名称', prop: 'deviceName' },
|
{ label: '装备名称', prop: 'deviceName' },
|
||||||
{ label: '装备型号', prop: 'typeName' },
|
{ label: '装备型号', prop: 'typeName' },
|
||||||
|
{ label: '上传人', prop: 'uploadUser' },
|
||||||
|
{ label: '上传时间', prop: 'uploadTime' },
|
||||||
])
|
])
|
||||||
|
|
||||||
const uploadUrlTemp = window.location.origin + '/iws/mall-view/MaDevTemplate.xlsx'
|
const uploadUrlTemp = window.location.origin + '/iws/mall-view/MaDevTemplate.xlsx'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue