mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2024-11-27 20:49:03 +08:00
feat: 安装应用自动填写名称 (#1238)
This commit is contained in:
parent
957499e4d7
commit
b6758ff92d
@ -107,7 +107,7 @@
|
||||
<script lang="ts" setup>
|
||||
import { App } from '@/api/interface/app';
|
||||
import { onMounted, reactive, ref } from 'vue';
|
||||
import { GetAppListUpdate, GetAppTags, SearchApp, SyncApp } from '@/api/modules/app';
|
||||
import { GetAppTags, SearchApp, SyncApp } from '@/api/modules/app';
|
||||
import i18n from '@/lang';
|
||||
import Detail from '../detail/index.vue';
|
||||
import router from '@/routers';
|
||||
@ -171,11 +171,6 @@ const sync = () => {
|
||||
});
|
||||
};
|
||||
|
||||
const getAppListUpdate = async () => {
|
||||
const res = await GetAppListUpdate();
|
||||
canUpdate.value = res.data.canUpdate;
|
||||
};
|
||||
|
||||
const changeTag = (key: string) => {
|
||||
req.tags = [];
|
||||
activeTag.value = key;
|
||||
@ -191,7 +186,6 @@ const searchByName = (name: string) => {
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
getAppListUpdate();
|
||||
search(req);
|
||||
});
|
||||
</script>
|
||||
|
@ -174,6 +174,7 @@ const resetForm = () => {
|
||||
const acceptParams = (props: InstallRrops): void => {
|
||||
installData.value = props;
|
||||
resetForm();
|
||||
req.name = props.app.key;
|
||||
open.value = true;
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user