fix: 解决限制安装的应用程序在首页还能继续安装的问题 (#2295)

This commit is contained in:
zhengkunwang 2023-09-14 22:48:14 +08:00 committed by GitHub
parent 08f0147d81
commit 21755223e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,6 +27,7 @@
plain
round
size="small"
:disabled="app.limit == 1 && app.installed"
@click="goInstall(app.key)"
>
{{ $t('app.install') }}
@ -57,7 +58,7 @@ let req = reactive({
});
let loading = ref(false);
let apps = ref<App.App[]>([]);
let apps = ref<App.AppDTO[]>([]);
const acceptParams = (): void => {
search(req);