feat: 创建网站过滤用过的APP

pull/161/head
zhengkunwang223 2023-02-22 19:19:10 +08:00 committed by zhengkunwang223
parent bb4799e611
commit 23babbd773
2 changed files with 2 additions and 1 deletions

View File

@ -117,6 +117,7 @@ export namespace App {
export interface AppInstalledSearch {
type: string;
unused?: boolean;
}
export interface AppService {

View File

@ -258,7 +258,7 @@ const handleClose = () => {
};
const searchAppInstalled = () => {
GetAppInstalled({ type: 'website' }).then((res) => {
GetAppInstalled({ type: 'website', unused: true }).then((res) => {
appInstalles.value = res.data;
if (res.data.length > 0) {
website.value.appInstallId = res.data[0].id;