---用户管理,网元管理等中英文

This commit is contained in:
lai
2023-11-08 11:21:39 +08:00
parent 8e467b95a2
commit 1bc9358d30
37 changed files with 582 additions and 404 deletions

View File

@@ -98,7 +98,7 @@ let cacheKeyTable = reactive({
function fnCacheKeyClear(cacheKey: string) {
if (isClick.value) return;
isClick.value = true;
const hide = message.loading('请稍等...', 0);
const hide = message.loading(t('common.loading'), 0);
clearCacheKey(cacheKeyTable.cacheName, cacheKey).then(res => {
hide();
isClick.value = false;
@@ -196,7 +196,7 @@ let cacheNameTableColumns: ColumnsType = [
function fnClearCacheSafe() {
if (isClick.value) return;
isClick.value = true;
const hide = message.loading('请稍等...', 0);
const hide = message.loading(t('common.loading'), 0);
clearCacheSafe().then(res => {
hide();
isClick.value = false;
@@ -223,7 +223,7 @@ function fnClearCacheSafe() {
function fnCacheNameClear(cacheName: string) {
if (isClick.value) return;
isClick.value = true;
const hide = message.loading('请稍等...', 0);
const hide = message.loading(t('common.loading'), 0);
clearCacheName(cacheName).then(res => {
hide();
isClick.value = false;