feat: 安装应用自动填写名称 (#1238)

pull/1241/head
zhengkunwang223 2 years ago committed by GitHub
parent 957499e4d7
commit b6758ff92d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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…
Cancel
Save