1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-31 22:18:07 +08:00

style: 去掉应用列表中的更新应用列表按钮 (#6105)

This commit is contained in:
zhengkunwang 2024-08-12 18:40:10 +08:00 committed by GitHub
parent a6af97e3c1
commit 12eaa66bc5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -56,11 +56,6 @@
</template>
<template #rightButton>
<div class="flex justify-end">
<div class="mr-10">
<el-checkbox v-model="req.resource" true-value="all" false-value="remote" @change="search(req)">
{{ $t('app.showLocal') }}
</el-checkbox>
</div>
<fu-table-pagination
v-model:current-page="paginationConfig.currentPage"
v-model:page-size="paginationConfig.pageSize"
@ -68,11 +63,11 @@
@change="search(req)"
:layout="mobile ? ' prev, pager, next' : ' prev, pager, next'"
/>
<el-badge is-dot :hidden="!canUpdate" class="ml-5">
<el-button @click="sync" type="primary" plain :disabled="syncing">
{{ $t('app.syncAppList') }}
</el-button>
</el-badge>
<div>
<el-checkbox v-model="req.resource" true-value="all" false-value="remote" @change="search(req)">
{{ $t('app.showLocal') }}
</el-checkbox>
</div>
</div>
</template>
<template #main>
@ -168,12 +163,10 @@
<script lang="ts" setup>
import { App } from '@/api/interface/app';
import { onMounted, reactive, ref, computed } from 'vue';
import { GetAppTags, SearchApp, SyncApp } from '@/api/modules/app';
import i18n from '@/lang';
import { GetAppTags, SearchApp } from '@/api/modules/app';
import Detail from '../detail/index.vue';
import Install from '../detail/install/index.vue';
import router from '@/routers';
import { MsgSuccess } from '@/utils/message';
import { GlobalStore } from '@/store';
import { getLanguage } from '@/utils/util';
@ -205,8 +198,6 @@ const tags = ref<App.Tag[]>([]);
const loading = ref(false);
const activeTag = ref('all');
const showDetail = ref(false);
const canUpdate = ref(false);
const syncing = ref(false);
const detailRef = ref();
const installRef = ref();
const installKey = ref('');
@ -256,23 +247,6 @@ const openDetail = (key: string) => {
detailRef.value.acceptParams(key, 'install');
};
const sync = () => {
syncing.value = true;
SyncApp()
.then((res) => {
if (res.message != '') {
MsgSuccess(res.message);
} else {
MsgSuccess(i18n.global.t('app.syncStart'));
}
canUpdate.value = false;
search(req);
})
.finally(() => {
syncing.value = false;
});
};
const changeTag = (key: string) => {
req.tags = [];
activeTag.value = key;