diff --git a/package-lock.json b/package-lock.json index f46f5a3..3abf174 100644 --- a/package-lock.json +++ b/package-lock.json @@ -25,6 +25,8 @@ "@dcloudio/uni-mp-weixin": "3.0.0-4070620250821001", "@dcloudio/uni-mp-xhs": "3.0.0-4070620250821001", "@dcloudio/uni-quickapp-webview": "3.0.0-4070620250821001", + "js-md5": "^0.8.3", + "md5": "^2.3.0", "pinia": "^3.0.3", "sass": "^1.77.4", "vue": "^3.5.22", @@ -5722,6 +5724,15 @@ "node": ">=10" } }, + "node_modules/charenc": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", + "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, "node_modules/chokidar": { "version": "3.6.0", "resolved": "https://registry.npmmirror.com/chokidar/-/chokidar-3.6.0.tgz", @@ -5987,6 +5998,15 @@ "node": ">= 8" } }, + "node_modules/crypt": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", + "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow==", + "license": "BSD-3-Clause", + "engines": { + "node": "*" + } + }, "node_modules/css-font-size-keywords": { "version": "1.0.0", "resolved": "https://registry.npmmirror.com/css-font-size-keywords/-/css-font-size-keywords-1.0.0.tgz", @@ -7318,6 +7338,12 @@ "node": ">=8" } }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "license": "MIT" + }, "node_modules/is-core-module": { "version": "2.16.1", "resolved": "https://registry.npmmirror.com/is-core-module/-/is-core-module-2.16.1.tgz", @@ -8256,6 +8282,12 @@ "integrity": "sha512-9IXdWudL61npZjvLuVe/ktHiA41iE8qFyLB+4VDTblEsWBzeg8WQTlktdUK4CdncUqtUgUg0bbOmTE2bKBKaBQ==", "license": "BSD-3-Clause" }, + "node_modules/js-md5": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/js-md5/-/js-md5-0.8.3.tgz", + "integrity": "sha512-qR0HB5uP6wCuRMrWPTrkMaev7MJZwJuuw4fnwAzRgP4J4/F8RwtodOKpGp4XpqsLBFzzgqIO42efFAyz2Et6KQ==", + "license": "MIT" + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmmirror.com/js-tokens/-/js-tokens-4.0.0.tgz", @@ -8653,6 +8685,17 @@ "node": ">= 0.4" } }, + "node_modules/md5": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz", + "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==", + "license": "BSD-3-Clause", + "dependencies": { + "charenc": "0.0.2", + "crypt": "0.0.2", + "is-buffer": "~1.1.6" + } + }, "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmmirror.com/media-typer/-/media-typer-0.3.0.tgz", diff --git a/package.json b/package.json index 2c4f1f0..b6fa7f7 100644 --- a/package.json +++ b/package.json @@ -27,6 +27,8 @@ "@dcloudio/uni-mp-weixin": "3.0.0-4070620250821001", "@dcloudio/uni-mp-xhs": "3.0.0-4070620250821001", "@dcloudio/uni-quickapp-webview": "3.0.0-4070620250821001", + "js-md5": "^0.8.3", + "md5": "^2.3.0", "pinia": "^3.0.3", "sass": "^1.77.4", "vue": "^3.5.22", diff --git a/src/pages/comments/comments.vue b/src/pages/comments/comments.vue index 0ddb7b5..9e28793 100644 --- a/src/pages/comments/comments.vue +++ b/src/pages/comments/comments.vue @@ -4,17 +4,20 @@
- {{ comments.length }}条评论 + {{ comments.length }}件のコメント - 默认 + デフォルト 最新 + + + コメント読み込み中... + - - + @@ -32,8 +35,8 @@ - 未知时间 - 回复 + 不明な時間 + 返信 @@ -55,8 +58,8 @@ - 未知时间 - 回复 + 不明な時間 + 返信 @@ -70,7 +73,7 @@ - {{ commentItem.showChild ? '收起' : `展开${commentItem.reply.length}条回复` }} + {{ commentItem.showChild ? '折りたたむ' : `${commentItem.reply.length}件の返信を表示` }} @@ -80,10 +83,9 @@ - 暂无评论 - 空空如也~ + コメントはまだありません @@ -99,12 +101,14 @@ \ No newline at end of file diff --git a/src/pages/findmore/findmore.vue b/src/pages/findmore/findmore.vue index 89f8596..03e9386 100644 --- a/src/pages/findmore/findmore.vue +++ b/src/pages/findmore/findmore.vue @@ -1,6 +1,6 @@ @@ -15,19 +15,22 @@ const common = useCommonStore() bottom: 88px; left: 50%; transform: translateX(-50%); - width: 177px; + min-width: 177px; + width: auto; + padding: 0 20px; height: 52px; border-radius: 43px; background-image: linear-gradient(97deg, #7c45ed 1%, #7c68ef 20%, #7bd8f8 92%); z-index: 5; text-align: center; line-height: 52px; + display: flex; + align-items: center; + justify-content: center; cursor: pointer; } .openapptext { - width: 96px; - height: 22px; font-size: 1em; font-weight: 600; font-stretch: normal; diff --git a/src/pages/head/head.vue b/src/pages/head/head.vue index 9be10b3..29ab552 100644 --- a/src/pages/head/head.vue +++ b/src/pages/head/head.vue @@ -2,7 +2,7 @@ - 下载应用 + アプリをダウンロード @@ -39,7 +39,8 @@ const common = useCommonStore() } .download { - width: 97px; + min-width: 120px; + padding: 0 16px; height: 35px; border-radius: 29px; background-image: linear-gradient(156deg, #7c45ed -1%, #7c68ef 19%, #7bd8f8 97%); @@ -49,5 +50,6 @@ const common = useCommonStore() align-items: center; justify-content: center; cursor: pointer; + letter-spacing: 0.3px; } diff --git a/src/pages/intereact/intereact.vue b/src/pages/intereact/intereact.vue index d9b65b2..f1fa9fd 100644 --- a/src/pages/intereact/intereact.vue +++ b/src/pages/intereact/intereact.vue @@ -3,14 +3,14 @@ 编辑标签 - 快来互动吧… + さあ、交流しましょう… - + 收藏标签 {{ formatCount(collectsum) }} - +