💄 修复渲染异常,调整share可用性

This commit is contained in:
目棃
2025-01-08 20:31:17 +08:00
parent 8b5aa106ce
commit 73f7247b59
2 changed files with 20 additions and 1 deletions

View File

@@ -140,7 +140,9 @@ const uidList = shallowRef<Array<string>>([]);
const roleList = shallowRef<Array<TGApp.Sqlite.Character.UserRole>>([]);
const selectedList = shallowRef<Array<TGApp.Sqlite.Character.UserRole>>([]);
const dataVal = shallowRef<TGApp.Sqlite.Character.UserRole>();
const enableShare = computed<boolean>(() => (showOverlay.value ? true : showSelect.value));
const enableShare = computed<boolean>(
() => showOverlay.value || showSelect.value || loadData.value,
);
onMounted(async () => {
await showLoading.start("正在获取角色数据");