feat(user): 为商品管理页面的批量添加模板增加上传人和上传时间字段

- 在 batchAddColumn 数组中添加了上传人和上传时间两个字段
This commit is contained in:
syruan 2025-06-02 14:27:11 +08:00
parent f1ed58f691
commit f37df1db88
1 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,8 @@ const batchAddData: any = ref([]) // 批量新增
const batchAddColumn: any = ref([
{ label: '装备名称', prop: 'deviceName' },
{ label: '装备型号', prop: 'typeName' },
{ label: '上传人', prop: 'uploadUser' },
{ label: '上传时间', prop: 'uploadTime' },
])
const uploadUrlTemp = window.location.origin + '/iws/mall-view/MaDevTemplate.xlsx'