feat:确认上传弹窗增加用户ID显示,货区改为仓库编码显示

This commit is contained in:
97694732@qq.com 2026-06-05 10:49:37 +08:00
parent 62ec5466bd
commit 50e7fe7183

View File

@ -1883,9 +1883,10 @@ export default {
return
}
const warehouseName = warehouseData.warehouseName || warehouseData.name || ''
const warehouseCode = warehouseData.warehouseCode || warehouseData.code || ''
const locCode = warehouseData.locationCode || warehouseData.code || ''
const locationText = warehouseName + (locCode ? ' - ' + locCode : '')
const locationText = warehouseCode + (locCode ? ' - ' + locCode : '')
const psiUserId = uni.getStorageSync('userId') || '-'
//
if (this.currentTab === 'isbn' && this.photoList.length < 1) {
@ -1908,6 +1909,7 @@ export default {
return
}
contentLines = [
'🆔 用户ID' + psiUserId,
'📦 货区:' + locationText,
'📖 ISBN' + (this.isbn || '-'),
'📕 书名:' + (this.bookName || '-'),
@ -1929,6 +1931,7 @@ export default {
return
}
contentLines = [
'🆔 用户ID' + psiUserId,
'📦 货区:' + locationText,
'📕 书名:' + (this.noIsbnBookName || '-'),
'✍️ 作者:' + (this.noIsbnAuthor || '-'),