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:
container_name: "dootask-appstore-${APP_ID}"
privileged: true
image: "dootask/appstore:0.2.7"
image: "dootask/appstore:0.2.8"
volumes:
- shared_data:/usr/share/dootask
- /var/run/docker.sock:/var/run/docker.sock

View File

@ -243,7 +243,7 @@ body {
/* 不同平台样式 */
body.win32 .nav {
padding-left: 8px;
padding-right: 186px;
padding-right: 140px;
}
body.darwin .nav {
@ -275,4 +275,4 @@ body.darwin.full-screen .nav {
.tab-icon.background {
background-image: url(../image/dark/link_normal_icon.png);
}
}
}

View File

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