fix(page-lock):页面解锁按钮图标修复 (#43)

This commit is contained in:
tianxin 2023-11-01 00:29:19 -07:00 committed by GitHub
parent 7f79659f5b
commit 364160f977
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ export default {
disabled: false
})
const iconName = computed(() => (state.status === PAGE_STATUS.Occupy ? 'unlocked' : 'locked'))
const iconName = computed(() => (state.status === PAGE_STATUS.Occupy ? 'locked' : 'unlocked'))
const lockPage = (id, type, newState) => {
requestBlockPage(`id=${id}&state=${newState}&type=${type}`)