no message

This commit is contained in:
kuaifan 2025-08-20 12:34:06 +08:00
parent 7c94f6bc9a
commit 569912abef
3 changed files with 8 additions and 6 deletions

View File

@ -96,7 +96,7 @@ services:
appstore: appstore:
container_name: "dootask-appstore-${APP_ID}" container_name: "dootask-appstore-${APP_ID}"
privileged: true privileged: true
image: "dootask/appstore:0.2.7" image: "dootask/appstore:0.2.8"
volumes: volumes:
- shared_data:/usr/share/dootask - shared_data:/usr/share/dootask
- /var/run/docker.sock:/var/run/docker.sock - /var/run/docker.sock:/var/run/docker.sock

View File

@ -243,7 +243,7 @@ body {
/* 不同平台样式 */ /* 不同平台样式 */
body.win32 .nav { body.win32 .nav {
padding-left: 8px; padding-left: 8px;
padding-right: 186px; padding-right: 140px;
} }
body.darwin .nav { body.darwin .nav {

View File

@ -1377,10 +1377,12 @@ export default {
if ($A.isIos() && list.length !== historyLength && this.$refs.scroller) { if ($A.isIos() && list.length !== historyLength && this.$refs.scroller) {
// iOS // iOS
const scrollEl = this.$refs.scroller.$el const scrollEl = this.$refs.scroller.$el
scrollEl.style.visibility = 'hidden' scrollEl.style.overflowY = 'hidden'
scrollEl.style.webkitOverflowScrolling = 'auto'
this.allMsgs = list; this.allMsgs = list;
this.$nextTick(_ => { requestAnimationFrame(_ => {
scrollEl.style.visibility = 'visible' scrollEl.style.overflowY = 'auto'
scrollEl.style.webkitOverflowScrolling = 'touch'
}) })
} else { } else {
this.allMsgs = list; this.allMsgs = list;