fix(UI自动化): UI定时任务日志
--bug=1020020 --user=张勇 【UI测试】指令列表-操作-点击...-展示定时任务 https://www.tapd.cn/55049933/s/1300624
This commit is contained in:
parent
7eb1726940
commit
bd793616e9
|
@ -2445,6 +2445,7 @@ const message = {
|
||||||
change_content: "Change content",
|
change_content: "Change content",
|
||||||
ui_element: "ui element",
|
ui_element: "ui element",
|
||||||
ui_automation: "ui automation",
|
ui_automation: "ui automation",
|
||||||
|
ui_automation_schedule: "Ui automation schedule",
|
||||||
ui_automation_report: "ui automation report"
|
ui_automation_report: "ui automation report"
|
||||||
},
|
},
|
||||||
plugin: {
|
plugin: {
|
||||||
|
|
|
@ -2454,6 +2454,7 @@ const message = {
|
||||||
change_content: "变更内容",
|
change_content: "变更内容",
|
||||||
ui_element: "UI元素库",
|
ui_element: "UI元素库",
|
||||||
ui_automation: "UI自动化",
|
ui_automation: "UI自动化",
|
||||||
|
ui_automation_schedule: "UI自动化-定时任务",
|
||||||
ui_automation_report: "UI测试报告"
|
ui_automation_report: "UI测试报告"
|
||||||
},
|
},
|
||||||
plugin: {
|
plugin: {
|
||||||
|
|
|
@ -2450,6 +2450,7 @@ const message = {
|
||||||
change_content: "變更內容",
|
change_content: "變更內容",
|
||||||
ui_element: "UI元素庫",
|
ui_element: "UI元素庫",
|
||||||
ui_automation: "UI自動化",
|
ui_automation: "UI自動化",
|
||||||
|
ui_automation_schedule: "UI自動化-定時任務",
|
||||||
ui_automation_report: "UI測試報告"
|
ui_automation_report: "UI測試報告"
|
||||||
},
|
},
|
||||||
plugin: {
|
plugin: {
|
||||||
|
|
|
@ -43,6 +43,7 @@ public class OperLogModule {
|
||||||
public static final String UI_ELEMENT = "UI_ELEMENT";
|
public static final String UI_ELEMENT = "UI_ELEMENT";
|
||||||
public static final String UI_AUTOMATION = "UI_AUTOMATION";
|
public static final String UI_AUTOMATION = "UI_AUTOMATION";
|
||||||
public static final String UI_AUTOMATION_REPORT = "UI_AUTOMATION_REPORT";
|
public static final String UI_AUTOMATION_REPORT = "UI_AUTOMATION_REPORT";
|
||||||
|
public static final String UI_AUTOMATION_SCHEDULE = "UI_AUTOMATION_SCHEDULE";
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -98,6 +98,7 @@ export function LOG_MODULE_MAP(_this) {
|
||||||
['SYSTEM_AUTHORIZATION_MANAGEMENT', _this.$t('operating_log.system_authorization_management')],
|
['SYSTEM_AUTHORIZATION_MANAGEMENT', _this.$t('operating_log.system_authorization_management')],
|
||||||
['UI_ELEMENT', _this.$t('operating_log.ui_element')],
|
['UI_ELEMENT', _this.$t('operating_log.ui_element')],
|
||||||
['UI_AUTOMATION', _this.$t('operating_log.ui_automation')],
|
['UI_AUTOMATION', _this.$t('operating_log.ui_automation')],
|
||||||
|
['UI_AUTOMATION_SCHEDULE', _this.$t('operating_log.ui_automation_schedule')],
|
||||||
['UI_AUTOMATION_REPORT', _this.$t('operating_log.ui_automation_report')],
|
['UI_AUTOMATION_REPORT', _this.$t('operating_log.ui_automation_report')],
|
||||||
]);
|
]);
|
||||||
return LOG_MODULE_MAP;
|
return LOG_MODULE_MAP;
|
||||||
|
@ -118,6 +119,11 @@ export function PROJECTSYSLIST() {
|
||||||
value: [i18n.t('ui.ui_automation'), 'UI_AUTOMATION'],
|
value: [i18n.t('ui.ui_automation'), 'UI_AUTOMATION'],
|
||||||
leaf: true
|
leaf: true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: i18n.t('operating_log.ui_automation_schedule'),
|
||||||
|
value: [i18n.t('operating_log.ui_automation_schedule'), 'UI_AUTOMATION_SCHEDULE'],
|
||||||
|
leaf: true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: i18n.t('ui.report'),
|
label: i18n.t('ui.report'),
|
||||||
value: [i18n.t('ui.report'), 'UI_AUTOMATION_REPORT'],
|
value: [i18n.t('ui.report'), 'UI_AUTOMATION_REPORT'],
|
||||||
|
|
|
@ -98,6 +98,7 @@ export function LOG_MODULE_MAP(_this) {
|
||||||
['SYSTEM_AUTHORIZATION_MANAGEMENT', _this.$t('operating_log.system_authorization_management')],
|
['SYSTEM_AUTHORIZATION_MANAGEMENT', _this.$t('operating_log.system_authorization_management')],
|
||||||
['UI_ELEMENT', _this.$t('operating_log.ui_element')],
|
['UI_ELEMENT', _this.$t('operating_log.ui_element')],
|
||||||
['UI_AUTOMATION', _this.$t('operating_log.ui_automation')],
|
['UI_AUTOMATION', _this.$t('operating_log.ui_automation')],
|
||||||
|
['UI_AUTOMATION_SCHEDULE', _this.$t('operating_log.ui_automation_schedule')],
|
||||||
['UI_AUTOMATION_REPORT', _this.$t('operating_log.ui_automation_report')],
|
['UI_AUTOMATION_REPORT', _this.$t('operating_log.ui_automation_report')],
|
||||||
]);
|
]);
|
||||||
return LOG_MODULE_MAP;
|
return LOG_MODULE_MAP;
|
||||||
|
@ -118,6 +119,11 @@ export function SYSLIST() {
|
||||||
value: [i18n.t('ui.ui_automation'), 'UI_AUTOMATION'],
|
value: [i18n.t('ui.ui_automation'), 'UI_AUTOMATION'],
|
||||||
leaf: true
|
leaf: true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: i18n.t('operating_log.ui_automation_schedule'),
|
||||||
|
value: [i18n.t('operating_log.ui_automation_schedule'), 'UI_AUTOMATION_SCHEDULE'],
|
||||||
|
leaf: true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: i18n.t('ui.report'),
|
label: i18n.t('ui.report'),
|
||||||
value: [i18n.t('ui.report'), 'UI_AUTOMATION_REPORT'],
|
value: [i18n.t('ui.report'), 'UI_AUTOMATION_REPORT'],
|
||||||
|
@ -307,6 +313,11 @@ export function WORKSYSLIST() {
|
||||||
value: [i18n.t('ui.ui_automation'), 'UI_AUTOMATION'],
|
value: [i18n.t('ui.ui_automation'), 'UI_AUTOMATION'],
|
||||||
leaf: true
|
leaf: true
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: i18n.t('operating_log.ui_automation_schedule'),
|
||||||
|
value: [i18n.t('operating_log.ui_automation_schedule'), 'UI_AUTOMATION_SCHEDULE'],
|
||||||
|
leaf: true
|
||||||
|
},
|
||||||
{
|
{
|
||||||
label: i18n.t('ui.report'),
|
label: i18n.t('ui.report'),
|
||||||
value: [i18n.t('ui.report'), 'UI_AUTOMATION_REPORT'],
|
value: [i18n.t('ui.report'), 'UI_AUTOMATION_REPORT'],
|
||||||
|
|
Loading…
Reference in New Issue