fix(UI自动化): 高级搜索模块树默认模块国际化
This commit is contained in:
parent
9ab566b417
commit
4edfc6c103
|
@ -136,6 +136,8 @@ export default {
|
|||
this.treeNodes = data;
|
||||
this.treeNodes.forEach(node => {
|
||||
node.name = node.name === '未规划用例' ? this.$t('api_test.unplanned_case') : node.name;
|
||||
node.name = node.name === '未规划场景' ? this.$t('ui.unplanned_scenario') : node.name;
|
||||
node.label = node.label === '未规划场景' ? this.$t('ui.unplanned_scenario') : node.label;
|
||||
this.buildTree(node);
|
||||
});
|
||||
},
|
||||
|
|
|
@ -2995,6 +2995,7 @@ const message = {
|
|||
delete_scenario_lable: "Delete scenario",
|
||||
delete_command_lable: "Delete command",
|
||||
command_name_label: "Command name",
|
||||
unplanned_module: "Unplanned module",
|
||||
},
|
||||
project_application: {
|
||||
workstation: {
|
||||
|
|
|
@ -3007,7 +3007,7 @@ const message = {
|
|||
command_name_label: "指令名称",
|
||||
command_steps_label: "指令步骤",
|
||||
command_step_info: "在右侧添加指令步骤",
|
||||
|
||||
unplanned_scenario: "未规划场景",
|
||||
},
|
||||
project_application: {
|
||||
workstation: {
|
||||
|
|
|
@ -2986,6 +2986,7 @@ const message = {
|
|||
command_name_label: "指令名稱",
|
||||
command_steps_label: "指令步驟",
|
||||
command_step_info: "在右側添加指令步驟",
|
||||
unplanned_scenario: "未規劃場景"
|
||||
},
|
||||
project_application: {
|
||||
workstation: {
|
||||
|
|
Loading…
Reference in New Issue