From 8adcaaf021a9d99b7b89db9d950249d5c657c26e Mon Sep 17 00:00:00 2001 From: "97694732@qq.com" Date: Fri, 5 Jun 2026 13:57:01 +0800 Subject: [PATCH] =?UTF-8?q?feat:=E7=A1=AE=E8=AE=A4=E5=BC=B9=E7=AA=97?= =?UTF-8?q?=E5=93=81=E7=9B=B8=E6=98=BE=E7=A4=BA=E7=BA=AF=E6=95=B0=E5=AD=97?= =?UTF-8?q?,=E5=8E=BB=E6=8E=89~=E5=90=8E=E7=BC=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/upload/upload.vue | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pages/upload/upload.vue b/pages/upload/upload.vue index 35b16c2..411beae 100644 --- a/pages/upload/upload.vue +++ b/pages/upload/upload.vue @@ -1940,6 +1940,8 @@ export default { // 构建弹窗内容(含MinIO图片地址) const urlTexts = imageUrls.map(function (u, i) { return ' [' + (i + 1) + '] ' + u }).join('\n') + // 品相只显示数字(去掉 ~ 后缀) + const conditionDisplay = (this.currentTab === 'isbn' ? this.conditionValue : this.noIsbnConditionValue).replace('~', '') let contentLines if (this.currentTab === 'isbn') { contentLines = [ @@ -1949,6 +1951,7 @@ export default { '📕 书名:' + (this.bookName || '-'), '💰 价格:' + (this.price || '-'), '📊 库存:' + (this.stock ?? '-'), + '🏅 品相:' + conditionDisplay, '✍️ 作者:' + (this.author || '-'), '🏢 出版社:' + (this.publisher || '-'), '🏷️ 定价:' + (this.fixPrice || '-'), @@ -1961,6 +1964,7 @@ export default { '🆔 用户ID:' + psiUserId, '📦 货区:' + locationText, '📕 书名:' + (this.noIsbnBookName || '-'), + '🏅 品相:' + conditionDisplay, '✍️ 作者:' + (this.noIsbnAuthor || '-'), '🏢 出版社:' + (this.noIsbnPublisher || '-'), '🏷️ 定价:' + (this.noIsbnOriginalPrice || '-'),