diff --git a/src/views/system/QuartzJobList.vue b/src/views/system/QuartzJobList.vue index 3e15fde..a76461d 100644 --- a/src/views/system/QuartzJobList.vue +++ b/src/views/system/QuartzJobList.vue @@ -7,24 +7,23 @@ - - + + - - - - 全部 - 正常 - 停止 + + + + All + normal + stop - - 查询 - 重置 + Search + Reset @@ -34,24 +33,24 @@
- 新增 - 导出 + Add + Export - 导入 + Import - 删除 + Delete - 批量操作 + Batch operation
- 启动 - 停止 + Start + Stop - 更多 + More - 执行一次 - 编辑 + Execute once + Edit - - 删除 + + Delete @@ -97,8 +96,8 @@
@@ -140,7 +139,7 @@ } }, { - title: '任务类名', + title: 'JOB CLASS NAME', align:"center", dataIndex: 'jobClassName', sorter: true, @@ -149,37 +148,37 @@ }*/ }, { - title: 'cron表达式', + title: 'CRON', align:"center", dataIndex: 'cronExpression' }, { - title: '参数', + title: 'PARAM', align:"center", width: 150, dataIndex: 'parameter', scopedSlots: {customRender: 'parameterRender'}, }, { - title: '描述', + title: 'DESCRIPTION', align:"center", width: 250, dataIndex: 'description', scopedSlots: {customRender: 'description'}, }, { - title: '状态', + title: 'SRATUS', align:"center", dataIndex: 'status', scopedSlots: { customRender: 'customRenderStatus' }, filterMultiple: false, filters: [ - { text: '已启动', value: '0' }, - { text: '已暂停', value: '-1' }, + { text: 'Started', value: '0' }, + { text: 'Paused', value: '-1' }, ] }, { - title: '操作', + title: 'ACTION', dataIndex: 'action', align:"center", width:180, @@ -228,8 +227,8 @@ var that = this; //暂停定时任务 this.$confirm({ - title:"确认暂停", - content:"是否暂停选中任务?", + title:"Acknowledge pause", + content:"Whether to suspend the selected job?", onOk: function(){ getAction(that.url.pause,{id:record.id}).then((res)=>{ if(res.success){ @@ -248,8 +247,8 @@ var that = this; //恢复定时任务 this.$confirm({ - title:"确认启动", - content:"是否启动选中任务?", + title:"Confirm start", + content:"Whether to start the selected job?", onOk: function(){ getAction(that.url.resume,{id:record.id}).then((res)=>{ if(res.success){ @@ -267,8 +266,8 @@ var that = this; //立即执行定时任务 this.$confirm({ - title:"确认提示", - content:"是否立即执行任务?", + title:"Confirm prompt", + content:"Whether to execute the task immediately?", onOk: function(){ getAction(that.url.execute,{id:record.id}).then((res)=>{ if(res.success){