mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-02-12 19:40:06 +08:00
feat: 安装应用自动填写名称 (#1238)
This commit is contained in:
parent
957499e4d7
commit
b6758ff92d
@ -107,7 +107,7 @@
|
|||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
import { App } from '@/api/interface/app';
|
import { App } from '@/api/interface/app';
|
||||||
import { onMounted, reactive, ref } from 'vue';
|
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 i18n from '@/lang';
|
||||||
import Detail from '../detail/index.vue';
|
import Detail from '../detail/index.vue';
|
||||||
import router from '@/routers';
|
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) => {
|
const changeTag = (key: string) => {
|
||||||
req.tags = [];
|
req.tags = [];
|
||||||
activeTag.value = key;
|
activeTag.value = key;
|
||||||
@ -191,7 +186,6 @@ const searchByName = (name: string) => {
|
|||||||
};
|
};
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
getAppListUpdate();
|
|
||||||
search(req);
|
search(req);
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
@ -174,6 +174,7 @@ const resetForm = () => {
|
|||||||
const acceptParams = (props: InstallRrops): void => {
|
const acceptParams = (props: InstallRrops): void => {
|
||||||
installData.value = props;
|
installData.value = props;
|
||||||
resetForm();
|
resetForm();
|
||||||
|
req.name = props.app.key;
|
||||||
open.value = true;
|
open.value = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user