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

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;

View File

@@ -264,7 +264,7 @@ function fnModalVisibleByVive(jobId: string | number) {
return;
}
if (modalState.confirmLoading) return;
const hide = message.loading('正在打开...', 0);
const hide = message.loading(t('common.loading'), 0);
modalState.confirmLoading = true;
getJob(jobId).then(res => {
modalState.confirmLoading = false;
@@ -290,7 +290,7 @@ function fnModalVisibleByEdit(jobId?: string | number) {
modalState.visibleByEdit = true;
} else {
if (modalState.confirmLoading) return;
const hide = message.loading('正在打开...', 0);
const hide = message.loading(t('common.loading'), 0);
modalState.confirmLoading = true;
getJob(jobId).then(res => {
modalState.confirmLoading = false;
@@ -318,7 +318,7 @@ function fnModalOk() {
const from = toRaw(modalState.from);
const job = from.jobId ? updateJob(from) : addJob(from);
const key = 'job';
message.loading({ content: '请稍等...', key });
message.loading({ content: t('common.loading'), key });
job
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
@@ -374,11 +374,11 @@ function fnModalCron(opt: boolean, cronStr?: string) {
function fnRecordStatus(row: Record<string, string>) {
const text = row.status === '1' ? '开启' : '关闭';
Modal.confirm({
title: '提示',
title: t('common.tipTitle'),
content: `确定要${text} ${row.jobName} 任务吗?`,
onOk() {
const key = 'changeJobStatus';
message.loading({ content: '请稍等...', key });
message.loading({ content: t('common.loading'), key });
changeJobStatus(row.jobId, row.status).then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({
@@ -408,11 +408,11 @@ function fnRecordStatus(row: Record<string, string>) {
*/
function fnRecordRunOne(row: Record<string, string>) {
Modal.confirm({
title: '提示',
title: t('common.tipTitle'),
content: `确定要立即执行一次 【${row.jobName}】 任务吗?`,
onOk() {
const key = 'runJob';
message.loading({ content: '请稍等...', key });
message.loading({ content: t('common.loading'), key });
runJob(row.jobId).then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({
@@ -441,11 +441,11 @@ function fnRecordDelete(jobId: string = '0') {
jobId = tableState.selectedRowKeys.join(',');
}
Modal.confirm({
title: '提示',
title: t('common.tipTitle'),
content: `确认删除定时任务编号为 【${jobId}】 任务吗?`,
onOk() {
const key = 'delJob';
message.loading({ content: '请稍等...', key });
message.loading({ content: t('common.loading'), key });
delJob(jobId).then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({
@@ -471,11 +471,11 @@ function fnRecordDelete(jobId: string = '0') {
*/
function fnResetQueueJob() {
Modal.confirm({
title: '提示',
title: t('common.tipTitle'),
content: `确定要重置并刷新调度任务吗?`,
onOk() {
const key = 'resetQueueJob';
message.loading({ content: '请稍等...', key });
message.loading({ content: t('common.loading'), key });
resetQueueJob().then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({
@@ -498,11 +498,11 @@ function fnResetQueueJob() {
/**列表导出 */
function fnExportList() {
Modal.confirm({
title: '提示',
title: t('common.tipTitle'),
content: `确认根据搜索条件导出xlsx表格文件吗?`,
onOk() {
const key = 'exportJob';
message.loading({ content: '请稍等...', key });
message.loading({ content: t('common.loading'), key });
exportJob(toRaw(queryParams)).then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({

View File

@@ -257,11 +257,11 @@ function fnModalCancel() {
function fnRecordDelete() {
const ids = tableState.selectedRowKeys.join(',');
Modal.confirm({
title: '提示',
title: t('common.tipTitle'),
content: `确认删除调度日志编号为 【${ids}】 的数据项吗?`,
onOk() {
const key = 'delJobLog';
message.loading({ content: '请稍等...', key });
message.loading({ content: t('common.loading'), key });
delJobLog(ids).then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({
@@ -285,11 +285,11 @@ function fnRecordDelete() {
/**列表清空 */
function fnCleanList() {
Modal.confirm({
title: '提示',
title: t('common.tipTitle'),
content: `确认清空所有调度日志数据项吗?`,
onOk() {
const key = 'cleanJobLog';
message.loading({ content: '请稍等...', key });
message.loading({ content: t('common.loading'), key });
cleanJobLog().then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({
@@ -313,11 +313,11 @@ function fnCleanList() {
/**列表导出 */
function fnExportList() {
Modal.confirm({
title: '提示',
title: t('common.tipTitle'),
content: `确认根据搜索条件导出xlsx表格文件吗?`,
onOk() {
const key = 'exportJobLog';
message.loading({ content: '请稍等...', key });
message.loading({ content: t('common.loading'), key });
exportJobLog(toRaw(queryParams)).then(res => {
if (res.code === RESULT_CODE_SUCCESS) {
message.success({

View File

@@ -162,10 +162,10 @@ function fnGetList() {
/** 强退按钮操作 */
function fnForceLogout(row: Record<string, string>) {
Modal.confirm({
title: '提示',
title: t('common.tipTitle'),
content: `确认强退登录账号为 ${row.userName} 的用户?`,
onOk() {
const hide = message.loading('请稍等...', 0);
const hide = message.loading(t('common.loading'), 0);
forceLogout(row.tokenId)
.then(res => {
if (res.code === RESULT_CODE_SUCCESS) {