提交 275711a7 编写于 作者: tangyaologin's avatar tangyaologin
......@@ -42,7 +42,7 @@
"vue-class-component": "^7.0.2",
"vue-grid-layout": "^2.3.7",
"vue-i18n": "^8.15.3",
"vue-property-decorator": "^8.3.0",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.1.3",
"vuex": "^3.1.2",
"bootstrap-vue": "^2.18.1",
......
......@@ -108,6 +108,7 @@ import Loadding from './directive/loadding/loadding';
import AppColorSpan from './components/app-color-span/app-color-span.vue';
import AppColorPicker from './components/app-color-picker/app-color-picker.vue';
// 全局挂载UI实体服务注册中心
window['uiServiceRegister'] = uiServiceRegister;
// 全局挂载实体权限服务注册中心
......
......@@ -3,7 +3,7 @@
<span v-if="color" :style="{ color:textColor }">{{ text ? text : '---' }}</span>
<template v-else>
<template v-if="dataValue && dataValue.length > 0">
<span v-for="(textItem,index) of dataValue" :key="index" class="text-color" :style="{ backgroundColor:textItem.color }">
<span v-for="(textItem,index) of dataValue" :key="index" class="text-color" :style="{ backgroundColor: textItem.color, borderColor: textItem.color}">
{{ textItem.srfmajortext ? textItem.srfmajortext : '---'}}
</span>
</template>
......@@ -58,7 +58,7 @@ export default class AppColorSpan extends Vue {
* @type {any}
* @memberof AppColorSpan
*/
@Prop() public localContext!: any;
@Prop() public localContext?: any;
/**
* 局部导航参数
......@@ -66,7 +66,7 @@ export default class AppColorSpan extends Vue {
* @type {any}
* @memberof AppColorSpan
*/
@Prop() public localParam!: any;
@Prop() public localParam?: any;
/**
* 视图上下文
......@@ -74,7 +74,7 @@ export default class AppColorSpan extends Vue {
* @type {*}
* @memberof AppColorSpan
*/
@Prop() public context!: any;
@Prop() public context?: any;
/**
* 视图参数
......@@ -82,8 +82,7 @@ export default class AppColorSpan extends Vue {
* @type {*}
* @memberof AppColorSpan
*/
@Prop() public viewparams!: any;
@Prop() public viewparams?: any;
/**
* 颜色标识
......@@ -91,8 +90,7 @@ export default class AppColorSpan extends Vue {
* @type {*}
* @memberof AppColorSpan
*/
@Prop() color:any;
@Prop() color?:any;
/**
* 颜色
......@@ -156,8 +154,10 @@ export default class AppColorSpan extends Vue {
<style lang="less">
.text-color{
padding: 2px;
margin: 6px;
border-radius: 4px;
padding: 2px 8px;
margin: 6px 6px 6px 0px;
border-radius: 12px;
font-size: 13px;
border: 2px solid rgb(170, 167, 167);
}
</style>
\ No newline at end of file
......@@ -196,7 +196,7 @@ export default class DropDownList extends Vue {
val = tempVal.length >0?tempVal[0].value:null;
}
const type: string = this.$util.typeOf(val);
val = Object.is(type, 'null') || Object.is(type, 'undefined') ? undefined : val;
val = Object.is(type, 'null') || Object.is(type, 'undefined') ? null : val;
this.$emit('change', val);
}
......
......@@ -10,7 +10,7 @@ import iviewZhCnLocale from 'view-design/dist/locale/zh-CN';
import elementZhLocale from 'element-ui/lib/locale/lang/zh-CN';
const messages = {
'zh-CN': Object.assign(iviewZhCnLocale, elementZhLocale, zhCn),
'zh-CN': Object.assign(iviewZhCnLocale, elementZhLocale, zhCn()),
};
......
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
export default {
YesNo: {
"1": "是",
"0": "否",
"empty": ""
},
ComponentType: {
"DynamicForm": "动态表单",
"DynamicSubForm": "动态子表单",
"DynamicGrid": "动态表格",
"empty": ""
},
DstAppList: {
"empty": "",
},
AppType: {
"INNER": "内置应用",
"THIRD-PARTY": "第三方应用",
"empty": ""
},
DstSystemList: {
"empty": "",
},
};
\ No newline at end of file
import codelist_en_US_Base from './codelist_en_US_base';
function getLocaleResource(){
const codelist_en_US_OwnData = {};
const targetData = Object.assign(codelist_en_US_Base(), codelist_en_US_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import commonLogic from '@/locale/logic/common/common-logic';
function getLocaleResourceBase(){
const data:any = {
YesNo: {
"1": commonLogic.appcommonhandle("是",null),
"0": commonLogic.appcommonhandle("否",null),
"empty": commonLogic.appcommonhandle("",null)
},
ComponentType: {
"DynamicForm": commonLogic.appcommonhandle("动态表单",null),
"DynamicSubForm": commonLogic.appcommonhandle("动态子表单",null),
"DynamicGrid": commonLogic.appcommonhandle("动态表格",null),
"empty": commonLogic.appcommonhandle("",null)
},
DstAppList: {
"empty": commonLogic.appcommonhandle("",null),
},
AppType: {
"INNER": commonLogic.appcommonhandle("内置应用",null),
"THIRD-PARTY": commonLogic.appcommonhandle("第三方应用",null),
"empty": commonLogic.appcommonhandle("",null)
},
DstSystemList: {
"empty": commonLogic.appcommonhandle("",null),
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
export default {
YesNo: {
"1": "是",
"0": "否",
"empty": "",
},
ComponentType: {
"DynamicForm": "动态表单",
"DynamicSubForm": "动态子表单",
"DynamicGrid": "动态表格",
"empty": "",
},
DstAppList: {
"empty": "",
},
AppType: {
"INNER": "内置应用",
"THIRD-PARTY": "第三方应用",
"empty": "",
},
DstSystemList: {
"empty": "",
},
};
\ No newline at end of file
import codelist_zh_CN_Base from './codelist_zh_CN_base';
function getLocaleResource(){
const codelist_zh_CN_OwnData = {};
const targetData = Object.assign(codelist_zh_CN_Base(), codelist_zh_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import commonLogic from '@/locale/logic/common/common-logic';
function getLocaleResourceBase(){
const data:any = {
YesNo: {
"1": commonLogic.appcommonhandle("是",null),
"0": commonLogic.appcommonhandle("否",null),
"empty": commonLogic.appcommonhandle("",null),
},
ComponentType: {
"DynamicForm": commonLogic.appcommonhandle("动态表单",null),
"DynamicSubForm": commonLogic.appcommonhandle("动态子表单",null),
"DynamicGrid": commonLogic.appcommonhandle("动态表格",null),
"empty": commonLogic.appcommonhandle("",null),
},
DstAppList: {
"empty": commonLogic.appcommonhandle("",null),
},
AppType: {
"INNER": commonLogic.appcommonhandle("内置应用",null),
"THIRD-PARTY": commonLogic.appcommonhandle("第三方应用",null),
"empty": commonLogic.appcommonhandle("",null),
},
DstSystemList: {
"empty": commonLogic.appcommonhandle("",null),
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import BladeVisual_en_US_Base from './blade-visual_en_US_base';
export default {
fields: {
id: "主键",
title: "大屏标题",
category: "大屏类型",
password: "发布密码",
backgroundurl: "大屏背景",
status: "状态",
createtime: "创建时间",
createdept: "创建部门",
createuser: "创建人",
updatetime: "修改时间",
updateuser: "修改人",
isdeleted: "是否已删除",
detail: "配置json",
component: "组件json",
},
views: {
gridview: {
caption: "可视化表",
title: "大屏展示表格视图",
},
editview: {
caption: "可视化表",
title: "大屏展示编辑视图",
},
},
main_form: {
details: {
group1: "大屏展示基本信息",
formpage1: "基本信息",
srfupdatedate: "修改时间",
srforikey: "",
srfkey: "主键",
srfmajortext: "大屏标题",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
title: "大屏标题",
category: "大屏类型",
status: "状态",
background_url: "大屏背景",
id: "主键",
},
uiactions: {
},
},
main_grid: {
columns: {
title: "大屏标题",
category: "大屏类型",
status: "状态",
update_time: "修改时间",
},
nodata:"",
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem6: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem16: {
caption: "其它",
tip: "其它",
},
tbitem21: {
caption: "Export Data Model",
tip: "导出数据模型",
},
tbitem23: {
caption: "数据导入",
tip: "数据导入",
},
tbitem17: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "Filter",
tip: "Filter",
},
tbitem18: {
caption: "Help",
tip: "Help",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "Remove And Close",
tip: "Remove And Close Window",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "New",
tip: "New",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem18: {
caption: "其它",
tip: "其它",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
tbitem4: {
caption: "Save And New",
tip: "Save And New",
},
tbitem23: {
caption: "第一个记录",
tip: "第一个记录",
},
tbitem24: {
caption: "上一个记录",
tip: "上一个记录",
},
tbitem25: {
caption: "下一个记录",
tip: "下一个记录",
},
tbitem26: {
caption: "最后一个记录",
tip: "最后一个记录",
},
tbitem22: {
caption: "Help",
tip: "Help",
},
},
};
\ No newline at end of file
function getLocaleResource(){
const BladeVisual_en_US_OwnData = {};
const targetData = Object.assign(BladeVisual_en_US_Base(), BladeVisual_en_US_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import commonLogic from '@/locale/logic/common/common-logic';
function getLocaleResourceBase(){
const data:any = {
fields: {
id: commonLogic.appcommonhandle("主键",null),
title: commonLogic.appcommonhandle("大屏标题",null),
category: commonLogic.appcommonhandle("大屏类型",null),
password: commonLogic.appcommonhandle("发布密码",null),
backgroundurl: commonLogic.appcommonhandle("大屏背景",null),
status: commonLogic.appcommonhandle("状态",null),
createtime: commonLogic.appcommonhandle("创建时间",null),
createdept: commonLogic.appcommonhandle("创建部门",null),
createuser: commonLogic.appcommonhandle("创建人",null),
updatetime: commonLogic.appcommonhandle("修改时间",null),
updateuser: commonLogic.appcommonhandle("修改人",null),
isdeleted: commonLogic.appcommonhandle("是否已删除",null),
detail: commonLogic.appcommonhandle("配置json",null),
component: commonLogic.appcommonhandle("组件json",null),
},
views: {
gridview: {
caption: commonLogic.appcommonhandle("可视化表",null),
title: commonLogic.appcommonhandle("大屏展示表格视图",null),
},
editview: {
caption: commonLogic.appcommonhandle("可视化表",null),
title: commonLogic.appcommonhandle("大屏展示编辑视图",null),
},
},
main_form: {
details: {
group1: commonLogic.appcommonhandle("大屏展示基本信息",null),
formpage1: commonLogic.appcommonhandle("基本信息",null),
srfupdatedate: commonLogic.appcommonhandle("修改时间",null),
srforikey: commonLogic.appcommonhandle("",null),
srfkey: commonLogic.appcommonhandle("主键",null),
srfmajortext: commonLogic.appcommonhandle("大屏标题",null),
srftempmode: commonLogic.appcommonhandle("",null),
srfuf: commonLogic.appcommonhandle("",null),
srfdeid: commonLogic.appcommonhandle("",null),
srfsourcekey: commonLogic.appcommonhandle("",null),
title: commonLogic.appcommonhandle("大屏标题",null),
category: commonLogic.appcommonhandle("大屏类型",null),
status: commonLogic.appcommonhandle("状态",null),
background_url: commonLogic.appcommonhandle("大屏背景",null),
id: commonLogic.appcommonhandle("主键",null),
},
uiactions: {
},
},
main_grid: {
columns: {
title: commonLogic.appcommonhandle("大屏标题",null),
category: commonLogic.appcommonhandle("大屏类型",null),
status: commonLogic.appcommonhandle("状态",null),
update_time: commonLogic.appcommonhandle("修改时间",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
default_searchform: {
details: {
formpage1: commonLogic.appcommonhandle("常规条件",null),
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("New",null),
tip: commonLogic.appcommonhandle("New",null),
},
tbitem4: {
caption: commonLogic.appcommonhandle("Edit",null),
tip: commonLogic.appcommonhandle("Edit {0}",null),
},
tbitem6: {
caption: commonLogic.appcommonhandle("Copy",null),
tip: commonLogic.appcommonhandle("Copy {0}",null),
},
tbitem7: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem8: {
caption: commonLogic.appcommonhandle("Remove",null),
tip: commonLogic.appcommonhandle("Remove {0}",null),
},
tbitem9: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem13: {
caption: commonLogic.appcommonhandle("Export",null),
tip: commonLogic.appcommonhandle("Export {0} Data To Excel",null),
},
tbitem10: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem16: {
caption: commonLogic.appcommonhandle("其它",null),
tip: commonLogic.appcommonhandle("其它",null),
},
tbitem21: {
caption: commonLogic.appcommonhandle("Export Data Model",null),
tip: commonLogic.appcommonhandle("导出数据模型",null),
},
tbitem23: {
caption: commonLogic.appcommonhandle("数据导入",null),
tip: commonLogic.appcommonhandle("数据导入",null),
},
tbitem17: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem19: {
caption: commonLogic.appcommonhandle("Filter",null),
tip: commonLogic.appcommonhandle("Filter",null),
},
tbitem18: {
caption: commonLogic.appcommonhandle("Help",null),
tip: commonLogic.appcommonhandle("Help",null),
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("Save",null),
tip: commonLogic.appcommonhandle("Save",null),
},
tbitem6: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem7: {
caption: commonLogic.appcommonhandle("Remove And Close",null),
tip: commonLogic.appcommonhandle("Remove And Close Window",null),
},
tbitem8: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem12: {
caption: commonLogic.appcommonhandle("New",null),
tip: commonLogic.appcommonhandle("New",null),
},
tbitem13: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem14: {
caption: commonLogic.appcommonhandle("Copy",null),
tip: commonLogic.appcommonhandle("Copy {0}",null),
},
tbitem16: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem18: {
caption: commonLogic.appcommonhandle("其它",null),
tip: commonLogic.appcommonhandle("其它",null),
},
tbitem5: {
caption: commonLogic.appcommonhandle("Save And Close",null),
tip: commonLogic.appcommonhandle("Save And Close Window",null),
},
tbitem4: {
caption: commonLogic.appcommonhandle("Save And New",null),
tip: commonLogic.appcommonhandle("Save And New",null),
},
tbitem23: {
caption: commonLogic.appcommonhandle("第一个记录",null),
tip: commonLogic.appcommonhandle("第一个记录",null),
},
tbitem24: {
caption: commonLogic.appcommonhandle("上一个记录",null),
tip: commonLogic.appcommonhandle("上一个记录",null),
},
tbitem25: {
caption: commonLogic.appcommonhandle("下一个记录",null),
tip: commonLogic.appcommonhandle("下一个记录",null),
},
tbitem26: {
caption: commonLogic.appcommonhandle("最后一个记录",null),
tip: commonLogic.appcommonhandle("最后一个记录",null),
},
tbitem22: {
caption: commonLogic.appcommonhandle("Help",null),
tip: commonLogic.appcommonhandle("Help",null),
},
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
export default {
fields: {
id: "主键",
title: "大屏标题",
category: "大屏类型",
password: "发布密码",
backgroundurl: "大屏背景",
status: "状态",
createtime: "创建时间",
createdept: "创建部门",
createuser: "创建人",
updatetime: "修改时间",
updateuser: "修改人",
isdeleted: "是否已删除",
detail: "配置json",
component: "组件json",
},
views: {
gridview: {
caption: "可视化表",
title: "大屏展示表格视图",
},
editview: {
caption: "可视化表",
title: "大屏展示编辑视图",
},
},
main_form: {
details: {
group1: "大屏展示基本信息",
formpage1: "基本信息",
srfupdatedate: "修改时间",
srforikey: "",
srfkey: "主键",
srfmajortext: "大屏标题",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
title: "大屏标题",
category: "大屏类型",
status: "状态",
background_url: "大屏背景",
id: "主键",
},
uiactions: {
},
},
main_grid: {
columns: {
title: "大屏标题",
category: "大屏类型",
status: "状态",
update_time: "修改时间",
},
nodata:"",
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem6: {
caption: "拷贝",
tip: "拷贝",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "删除",
tip: "删除",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "导出",
tip: "导出",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem16: {
caption: "其它",
tip: "其它",
},
tbitem21: {
caption: "导出数据模型",
tip: "导出数据模型",
},
tbitem23: {
caption: "数据导入",
tip: "数据导入",
},
tbitem17: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "过滤",
tip: "过滤",
},
tbitem18: {
caption: "帮助",
tip: "帮助",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "删除并关闭",
tip: "删除并关闭",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "新建",
tip: "新建",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "拷贝",
tip: "拷贝",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem18: {
caption: "其它",
tip: "其它",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
tbitem4: {
caption: "保存并新建",
tip: "保存并新建",
},
tbitem23: {
caption: "第一个记录",
tip: "第一个记录",
},
tbitem24: {
caption: "上一个记录",
tip: "上一个记录",
},
tbitem25: {
caption: "下一个记录",
tip: "下一个记录",
},
tbitem26: {
caption: "最后一个记录",
tip: "最后一个记录",
},
tbitem22: {
caption: "帮助",
tip: "帮助",
},
},
};
\ No newline at end of file
import BladeVisual_zh_CN_Base from './blade-visual_zh_CN_base';
function getLocaleResource(){
const BladeVisual_zh_CN_OwnData = {};
const targetData = Object.assign(BladeVisual_zh_CN_Base(), BladeVisual_zh_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import commonLogic from '@/locale/logic/common/common-logic';
function getLocaleResourceBase(){
const data:any = {
fields: {
id: commonLogic.appcommonhandle("主键",null),
title: commonLogic.appcommonhandle("大屏标题",null),
category: commonLogic.appcommonhandle("大屏类型",null),
password: commonLogic.appcommonhandle("发布密码",null),
backgroundurl: commonLogic.appcommonhandle("大屏背景",null),
status: commonLogic.appcommonhandle("状态",null),
createtime: commonLogic.appcommonhandle("创建时间",null),
createdept: commonLogic.appcommonhandle("创建部门",null),
createuser: commonLogic.appcommonhandle("创建人",null),
updatetime: commonLogic.appcommonhandle("修改时间",null),
updateuser: commonLogic.appcommonhandle("修改人",null),
isdeleted: commonLogic.appcommonhandle("是否已删除",null),
detail: commonLogic.appcommonhandle("配置json",null),
component: commonLogic.appcommonhandle("组件json",null),
},
views: {
gridview: {
caption: commonLogic.appcommonhandle("可视化表",null),
title: commonLogic.appcommonhandle("大屏展示表格视图",null),
},
editview: {
caption: commonLogic.appcommonhandle("可视化表",null),
title: commonLogic.appcommonhandle("大屏展示编辑视图",null),
},
},
main_form: {
details: {
group1: commonLogic.appcommonhandle("大屏展示基本信息",null),
formpage1: commonLogic.appcommonhandle("基本信息",null),
srfupdatedate: commonLogic.appcommonhandle("修改时间",null),
srforikey: commonLogic.appcommonhandle("",null),
srfkey: commonLogic.appcommonhandle("主键",null),
srfmajortext: commonLogic.appcommonhandle("大屏标题",null),
srftempmode: commonLogic.appcommonhandle("",null),
srfuf: commonLogic.appcommonhandle("",null),
srfdeid: commonLogic.appcommonhandle("",null),
srfsourcekey: commonLogic.appcommonhandle("",null),
title: commonLogic.appcommonhandle("大屏标题",null),
category: commonLogic.appcommonhandle("大屏类型",null),
status: commonLogic.appcommonhandle("状态",null),
background_url: commonLogic.appcommonhandle("大屏背景",null),
id: commonLogic.appcommonhandle("主键",null),
},
uiactions: {
},
},
main_grid: {
columns: {
title: commonLogic.appcommonhandle("大屏标题",null),
category: commonLogic.appcommonhandle("大屏类型",null),
status: commonLogic.appcommonhandle("状态",null),
update_time: commonLogic.appcommonhandle("修改时间",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
default_searchform: {
details: {
formpage1: commonLogic.appcommonhandle("常规条件",null),
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
tbitem4: {
caption: commonLogic.appcommonhandle("编辑",null),
tip: commonLogic.appcommonhandle("编辑",null),
},
tbitem6: {
caption: commonLogic.appcommonhandle("拷贝",null),
tip: commonLogic.appcommonhandle("拷贝",null),
},
tbitem7: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem8: {
caption: commonLogic.appcommonhandle("删除",null),
tip: commonLogic.appcommonhandle("删除",null),
},
tbitem9: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem13: {
caption: commonLogic.appcommonhandle("导出",null),
tip: commonLogic.appcommonhandle("导出",null),
},
tbitem10: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem16: {
caption: commonLogic.appcommonhandle("其它",null),
tip: commonLogic.appcommonhandle("其它",null),
},
tbitem21: {
caption: commonLogic.appcommonhandle("导出数据模型",null),
tip: commonLogic.appcommonhandle("导出数据模型",null),
},
tbitem23: {
caption: commonLogic.appcommonhandle("数据导入",null),
tip: commonLogic.appcommonhandle("数据导入",null),
},
tbitem17: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem19: {
caption: commonLogic.appcommonhandle("过滤",null),
tip: commonLogic.appcommonhandle("过滤",null),
},
tbitem18: {
caption: commonLogic.appcommonhandle("帮助",null),
tip: commonLogic.appcommonhandle("帮助",null),
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("保存",null),
tip: commonLogic.appcommonhandle("保存",null),
},
tbitem6: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem7: {
caption: commonLogic.appcommonhandle("删除并关闭",null),
tip: commonLogic.appcommonhandle("删除并关闭",null),
},
tbitem8: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem12: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
tbitem13: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem14: {
caption: commonLogic.appcommonhandle("拷贝",null),
tip: commonLogic.appcommonhandle("拷贝",null),
},
tbitem16: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem18: {
caption: commonLogic.appcommonhandle("其它",null),
tip: commonLogic.appcommonhandle("其它",null),
},
tbitem5: {
caption: commonLogic.appcommonhandle("保存并关闭",null),
tip: commonLogic.appcommonhandle("保存并关闭",null),
},
tbitem4: {
caption: commonLogic.appcommonhandle("保存并新建",null),
tip: commonLogic.appcommonhandle("保存并新建",null),
},
tbitem23: {
caption: commonLogic.appcommonhandle("第一个记录",null),
tip: commonLogic.appcommonhandle("第一个记录",null),
},
tbitem24: {
caption: commonLogic.appcommonhandle("上一个记录",null),
tip: commonLogic.appcommonhandle("上一个记录",null),
},
tbitem25: {
caption: commonLogic.appcommonhandle("下一个记录",null),
tip: commonLogic.appcommonhandle("下一个记录",null),
},
tbitem26: {
caption: commonLogic.appcommonhandle("最后一个记录",null),
tip: commonLogic.appcommonhandle("最后一个记录",null),
},
tbitem22: {
caption: commonLogic.appcommonhandle("帮助",null),
tip: commonLogic.appcommonhandle("帮助",null),
},
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import DstAPI_en_US_Base from './dst-api_en_US_base';
export default {
fields: {
id: "标识",
name: "名称",
path: "路径",
system_id: "系统标识",
ms_id: "微服务标识",
ms_name: "微服务名称",
service_name: "服务名",
},
views: {
gridview: {
caption: "接口",
title: "接口表格视图",
},
editview: {
caption: "接口",
title: "接口编辑视图",
},
},
main_form: {
details: {
group1: "接口基本信息",
formpage1: "基本信息",
srforikey: "",
srfkey: "标识",
srfmajortext: "名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
apiid: "标识",
apiname: "名称",
servicename: "服务名",
apipath: "路径",
msid: "微服务标识",
msname: "微服务名称",
systemid: "系统标识",
},
uiactions: {
},
},
main_grid: {
columns: {
apiname: "名称",
apipath: "路径",
msname: "微服务名称",
servicename: "服务名",
systemid: "系统标识",
msid: "微服务标识",
},
nodata:"",
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
n_apiname_like: "名称(文本包含(%))",
n_msname_like: "微服务标识(文本包含(%))",
n_servicename_like: "微服务标识(文本包含(%))",
n_apipath_like: "路径(文本包含(%))",
n_systemid_eq: "系统标识(等于(=))",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem6: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem16: {
caption: "其它",
tip: "其它",
},
tbitem21: {
caption: "Export Data Model",
tip: "导出数据模型",
},
tbitem23: {
caption: "数据导入",
tip: "数据导入",
},
tbitem17: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "Filter",
tip: "Filter",
},
tbitem18: {
caption: "Help",
tip: "Help",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "Remove And Close",
tip: "Remove And Close Window",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "New",
tip: "New",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem18: {
caption: "其它",
tip: "其它",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
tbitem4: {
caption: "Save And New",
tip: "Save And New",
},
tbitem23: {
caption: "第一个记录",
tip: "第一个记录",
},
tbitem24: {
caption: "上一个记录",
tip: "上一个记录",
},
tbitem25: {
caption: "下一个记录",
tip: "下一个记录",
},
tbitem26: {
caption: "最后一个记录",
tip: "最后一个记录",
},
tbitem22: {
caption: "Help",
tip: "Help",
},
},
};
\ No newline at end of file
function getLocaleResource(){
const DstAPI_en_US_OwnData = {};
const targetData = Object.assign(DstAPI_en_US_Base(), DstAPI_en_US_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import commonLogic from '@/locale/logic/common/common-logic';
function getLocaleResourceBase(){
const data:any = {
fields: {
id: commonLogic.appcommonhandle("标识",null),
name: commonLogic.appcommonhandle("名称",null),
path: commonLogic.appcommonhandle("路径",null),
system_id: commonLogic.appcommonhandle("系统标识",null),
ms_id: commonLogic.appcommonhandle("微服务标识",null),
ms_name: commonLogic.appcommonhandle("微服务名称",null),
service_name: commonLogic.appcommonhandle("服务名",null),
},
views: {
gridview: {
caption: commonLogic.appcommonhandle("接口",null),
title: commonLogic.appcommonhandle("接口表格视图",null),
},
editview: {
caption: commonLogic.appcommonhandle("接口",null),
title: commonLogic.appcommonhandle("接口编辑视图",null),
},
},
main_form: {
details: {
group1: commonLogic.appcommonhandle("接口基本信息",null),
formpage1: commonLogic.appcommonhandle("基本信息",null),
srforikey: commonLogic.appcommonhandle("",null),
srfkey: commonLogic.appcommonhandle("标识",null),
srfmajortext: commonLogic.appcommonhandle("名称",null),
srftempmode: commonLogic.appcommonhandle("",null),
srfuf: commonLogic.appcommonhandle("",null),
srfdeid: commonLogic.appcommonhandle("",null),
srfsourcekey: commonLogic.appcommonhandle("",null),
apiid: commonLogic.appcommonhandle("标识",null),
apiname: commonLogic.appcommonhandle("名称",null),
msname: commonLogic.appcommonhandle("微服务名称",null),
servicename: commonLogic.appcommonhandle("服务名",null),
apipath: commonLogic.appcommonhandle("路径",null),
msid: commonLogic.appcommonhandle("微服务标识",null),
systemid: commonLogic.appcommonhandle("系统标识",null),
},
uiactions: {
},
},
main_grid: {
columns: {
apiname: commonLogic.appcommonhandle("名称",null),
apipath: commonLogic.appcommonhandle("路径",null),
msname: commonLogic.appcommonhandle("微服务名称",null),
servicename: commonLogic.appcommonhandle("服务名",null),
systemid: commonLogic.appcommonhandle("系统标识",null),
msid: commonLogic.appcommonhandle("微服务标识",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
default_searchform: {
details: {
formpage1: commonLogic.appcommonhandle("常规条件",null),
n_apiname_like: commonLogic.appcommonhandle("名称(文本包含(%))",null),
n_msname_like: commonLogic.appcommonhandle("微服务标识(文本包含(%))",null),
n_servicename_like: commonLogic.appcommonhandle("微服务标识(文本包含(%))",null),
n_apipath_like: commonLogic.appcommonhandle("路径(文本包含(%))",null),
n_systemid_eq: commonLogic.appcommonhandle("系统标识(等于(=))",null),
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("New",null),
tip: commonLogic.appcommonhandle("New",null),
},
tbitem4: {
caption: commonLogic.appcommonhandle("Edit",null),
tip: commonLogic.appcommonhandle("Edit {0}",null),
},
tbitem6: {
caption: commonLogic.appcommonhandle("Copy",null),
tip: commonLogic.appcommonhandle("Copy {0}",null),
},
tbitem7: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem8: {
caption: commonLogic.appcommonhandle("Remove",null),
tip: commonLogic.appcommonhandle("Remove {0}",null),
},
tbitem9: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem13: {
caption: commonLogic.appcommonhandle("Export",null),
tip: commonLogic.appcommonhandle("Export {0} Data To Excel",null),
},
tbitem10: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem16: {
caption: commonLogic.appcommonhandle("其它",null),
tip: commonLogic.appcommonhandle("其它",null),
},
tbitem21: {
caption: commonLogic.appcommonhandle("Export Data Model",null),
tip: commonLogic.appcommonhandle("导出数据模型",null),
},
tbitem23: {
caption: commonLogic.appcommonhandle("数据导入",null),
tip: commonLogic.appcommonhandle("数据导入",null),
},
tbitem17: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem19: {
caption: commonLogic.appcommonhandle("Filter",null),
tip: commonLogic.appcommonhandle("Filter",null),
},
tbitem18: {
caption: commonLogic.appcommonhandle("Help",null),
tip: commonLogic.appcommonhandle("Help",null),
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("Save",null),
tip: commonLogic.appcommonhandle("Save",null),
},
tbitem6: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem7: {
caption: commonLogic.appcommonhandle("Remove And Close",null),
tip: commonLogic.appcommonhandle("Remove And Close Window",null),
},
tbitem8: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem12: {
caption: commonLogic.appcommonhandle("New",null),
tip: commonLogic.appcommonhandle("New",null),
},
tbitem13: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem14: {
caption: commonLogic.appcommonhandle("Copy",null),
tip: commonLogic.appcommonhandle("Copy {0}",null),
},
tbitem16: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem18: {
caption: commonLogic.appcommonhandle("其它",null),
tip: commonLogic.appcommonhandle("其它",null),
},
tbitem5: {
caption: commonLogic.appcommonhandle("Save And Close",null),
tip: commonLogic.appcommonhandle("Save And Close Window",null),
},
tbitem4: {
caption: commonLogic.appcommonhandle("Save And New",null),
tip: commonLogic.appcommonhandle("Save And New",null),
},
tbitem23: {
caption: commonLogic.appcommonhandle("第一个记录",null),
tip: commonLogic.appcommonhandle("第一个记录",null),
},
tbitem24: {
caption: commonLogic.appcommonhandle("上一个记录",null),
tip: commonLogic.appcommonhandle("上一个记录",null),
},
tbitem25: {
caption: commonLogic.appcommonhandle("下一个记录",null),
tip: commonLogic.appcommonhandle("下一个记录",null),
},
tbitem26: {
caption: commonLogic.appcommonhandle("最后一个记录",null),
tip: commonLogic.appcommonhandle("最后一个记录",null),
},
tbitem22: {
caption: commonLogic.appcommonhandle("Help",null),
tip: commonLogic.appcommonhandle("Help",null),
},
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
export default {
fields: {
id: "标识",
name: "名称",
path: "路径",
system_id: "系统标识",
ms_id: "微服务标识",
ms_name: "微服务名称",
service_name: "服务名",
},
views: {
gridview: {
caption: "接口",
title: "接口表格视图",
},
editview: {
caption: "接口",
title: "接口编辑视图",
},
},
main_form: {
details: {
group1: "接口基本信息",
formpage1: "基本信息",
srforikey: "",
srfkey: "标识",
srfmajortext: "名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
apiid: "标识",
apiname: "名称",
servicename: "服务名",
apipath: "路径",
msid: "微服务标识",
msname: "微服务名称",
systemid: "系统标识",
},
uiactions: {
},
},
main_grid: {
columns: {
apiname: "名称",
apipath: "路径",
msname: "微服务名称",
servicename: "服务名",
systemid: "系统标识",
msid: "微服务标识",
},
nodata:"",
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
n_apiname_like: "名称(文本包含(%))",
n_msname_like: "微服务标识(文本包含(%))",
n_servicename_like: "微服务标识(文本包含(%))",
n_apipath_like: "路径(文本包含(%))",
n_systemid_eq: "系统标识(等于(=))",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
tbitem6: {
caption: "拷贝",
tip: "拷贝",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "删除",
tip: "删除",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "导出",
tip: "导出",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem16: {
caption: "其它",
tip: "其它",
},
tbitem21: {
caption: "导出数据模型",
tip: "导出数据模型",
},
tbitem23: {
caption: "数据导入",
tip: "数据导入",
},
tbitem17: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "过滤",
tip: "过滤",
},
tbitem18: {
caption: "帮助",
tip: "帮助",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "删除并关闭",
tip: "删除并关闭",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "新建",
tip: "新建",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "拷贝",
tip: "拷贝",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem18: {
caption: "其它",
tip: "其它",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
tbitem4: {
caption: "保存并新建",
tip: "保存并新建",
},
tbitem23: {
caption: "第一个记录",
tip: "第一个记录",
},
tbitem24: {
caption: "上一个记录",
tip: "上一个记录",
},
tbitem25: {
caption: "下一个记录",
tip: "下一个记录",
},
tbitem26: {
caption: "最后一个记录",
tip: "最后一个记录",
},
tbitem22: {
caption: "帮助",
tip: "帮助",
},
},
};
\ No newline at end of file
import DstAPI_zh_CN_Base from './dst-api_zh_CN_base';
function getLocaleResource(){
const DstAPI_zh_CN_OwnData = {};
const targetData = Object.assign(DstAPI_zh_CN_Base(), DstAPI_zh_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import commonLogic from '@/locale/logic/common/common-logic';
function getLocaleResourceBase(){
const data:any = {
fields: {
id: commonLogic.appcommonhandle("标识",null),
name: commonLogic.appcommonhandle("名称",null),
path: commonLogic.appcommonhandle("路径",null),
system_id: commonLogic.appcommonhandle("系统标识",null),
ms_id: commonLogic.appcommonhandle("微服务标识",null),
ms_name: commonLogic.appcommonhandle("微服务名称",null),
service_name: commonLogic.appcommonhandle("服务名",null),
},
views: {
gridview: {
caption: commonLogic.appcommonhandle("接口",null),
title: commonLogic.appcommonhandle("接口表格视图",null),
},
editview: {
caption: commonLogic.appcommonhandle("接口",null),
title: commonLogic.appcommonhandle("接口编辑视图",null),
},
},
main_form: {
details: {
group1: commonLogic.appcommonhandle("接口基本信息",null),
formpage1: commonLogic.appcommonhandle("基本信息",null),
srforikey: commonLogic.appcommonhandle("",null),
srfkey: commonLogic.appcommonhandle("标识",null),
srfmajortext: commonLogic.appcommonhandle("名称",null),
srftempmode: commonLogic.appcommonhandle("",null),
srfuf: commonLogic.appcommonhandle("",null),
srfdeid: commonLogic.appcommonhandle("",null),
srfsourcekey: commonLogic.appcommonhandle("",null),
apiid: commonLogic.appcommonhandle("标识",null),
apiname: commonLogic.appcommonhandle("名称",null),
msname: commonLogic.appcommonhandle("微服务名称",null),
servicename: commonLogic.appcommonhandle("服务名",null),
apipath: commonLogic.appcommonhandle("路径",null),
msid: commonLogic.appcommonhandle("微服务标识",null),
systemid: commonLogic.appcommonhandle("系统标识",null),
},
uiactions: {
},
},
main_grid: {
columns: {
apiname: commonLogic.appcommonhandle("名称",null),
apipath: commonLogic.appcommonhandle("路径",null),
msname: commonLogic.appcommonhandle("微服务名称",null),
servicename: commonLogic.appcommonhandle("服务名",null),
systemid: commonLogic.appcommonhandle("系统标识",null),
msid: commonLogic.appcommonhandle("微服务标识",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
default_searchform: {
details: {
formpage1: commonLogic.appcommonhandle("常规条件",null),
n_apiname_like: commonLogic.appcommonhandle("名称(文本包含(%))",null),
n_msname_like: commonLogic.appcommonhandle("微服务标识(文本包含(%))",null),
n_servicename_like: commonLogic.appcommonhandle("微服务标识(文本包含(%))",null),
n_apipath_like: commonLogic.appcommonhandle("路径(文本包含(%))",null),
n_systemid_eq: commonLogic.appcommonhandle("系统标识(等于(=))",null),
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
tbitem4: {
caption: commonLogic.appcommonhandle("编辑",null),
tip: commonLogic.appcommonhandle("编辑",null),
},
tbitem6: {
caption: commonLogic.appcommonhandle("拷贝",null),
tip: commonLogic.appcommonhandle("拷贝",null),
},
tbitem7: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem8: {
caption: commonLogic.appcommonhandle("删除",null),
tip: commonLogic.appcommonhandle("删除",null),
},
tbitem9: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem13: {
caption: commonLogic.appcommonhandle("导出",null),
tip: commonLogic.appcommonhandle("导出",null),
},
tbitem10: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem16: {
caption: commonLogic.appcommonhandle("其它",null),
tip: commonLogic.appcommonhandle("其它",null),
},
tbitem21: {
caption: commonLogic.appcommonhandle("导出数据模型",null),
tip: commonLogic.appcommonhandle("导出数据模型",null),
},
tbitem23: {
caption: commonLogic.appcommonhandle("数据导入",null),
tip: commonLogic.appcommonhandle("数据导入",null),
},
tbitem17: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem19: {
caption: commonLogic.appcommonhandle("过滤",null),
tip: commonLogic.appcommonhandle("过滤",null),
},
tbitem18: {
caption: commonLogic.appcommonhandle("帮助",null),
tip: commonLogic.appcommonhandle("帮助",null),
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("保存",null),
tip: commonLogic.appcommonhandle("保存",null),
},
tbitem6: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem7: {
caption: commonLogic.appcommonhandle("删除并关闭",null),
tip: commonLogic.appcommonhandle("删除并关闭",null),
},
tbitem8: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem12: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
tbitem13: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem14: {
caption: commonLogic.appcommonhandle("拷贝",null),
tip: commonLogic.appcommonhandle("拷贝",null),
},
tbitem16: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem18: {
caption: commonLogic.appcommonhandle("其它",null),
tip: commonLogic.appcommonhandle("其它",null),
},
tbitem5: {
caption: commonLogic.appcommonhandle("保存并关闭",null),
tip: commonLogic.appcommonhandle("保存并关闭",null),
},
tbitem4: {
caption: commonLogic.appcommonhandle("保存并新建",null),
tip: commonLogic.appcommonhandle("保存并新建",null),
},
tbitem23: {
caption: commonLogic.appcommonhandle("第一个记录",null),
tip: commonLogic.appcommonhandle("第一个记录",null),
},
tbitem24: {
caption: commonLogic.appcommonhandle("上一个记录",null),
tip: commonLogic.appcommonhandle("上一个记录",null),
},
tbitem25: {
caption: commonLogic.appcommonhandle("下一个记录",null),
tip: commonLogic.appcommonhandle("下一个记录",null),
},
tbitem26: {
caption: commonLogic.appcommonhandle("最后一个记录",null),
tip: commonLogic.appcommonhandle("最后一个记录",null),
},
tbitem22: {
caption: commonLogic.appcommonhandle("帮助",null),
tip: commonLogic.appcommonhandle("帮助",null),
},
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import DstApp_en_US_Base from './dst-app_en_US_base';
export default {
fields: {
id: "应用标识",
label: "应用名",
systemid: "系统标识",
fullname: "全称",
type: "类型",
group: "分组",
icon: "图标",
visabled: "可见",
addr: "地址",
},
views: {
gridview: {
caption: "应用",
title: "应用表格视图",
},
editview: {
caption: "应用",
title: "应用编辑视图",
},
pickupgridview: {
caption: "应用",
title: "应用选择表格视图",
},
pickupview: {
caption: "应用",
title: "应用数据选择视图",
},
},
main_form: {
details: {
group1: "应用基本信息",
formpage1: "基本信息",
srforikey: "",
srfkey: "应用标识",
srfmajortext: "应用名",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
appid: "应用标识",
appname: "应用名",
fullname: "全称",
apptype: "类型",
appgroup: "分组",
pssystemid: "系统标识",
visabled: "可见",
icon: "图标",
addr: "地址",
},
uiactions: {
},
},
main_grid: {
columns: {
appid: "应用标识",
appname: "应用名",
fullname: "全称",
apptype: "类型",
appgroup: "分组",
icon: "图标",
addr: "地址",
visabled: "可见",
pssystemid: "系统标识",
},
nodata:"",
uiactions: {
},
},
default_searchform: {
details: {
formpage1: "常规条件",
n_appname_like: "应用名(文本包含(%))",
n_apptype_eq: "类型(等于(=))",
n_pssystemid_eq: "系统标识(等于(=))",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
tbitem6: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem7: {
caption: "-",
tip: "",
},
tbitem8: {
caption: "Remove",
tip: "Remove {0}",
},
tbitem9: {
caption: "-",
tip: "",
},
tbitem13: {
caption: "Export",
tip: "Export {0} Data To Excel",
},
tbitem10: {
caption: "-",
tip: "",
},
tbitem16: {
caption: "其它",
tip: "其它",
},
tbitem21: {
caption: "Export Data Model",
tip: "导出数据模型",
},
tbitem23: {
caption: "数据导入",
tip: "数据导入",
},
tbitem17: {
caption: "-",
tip: "",
},
tbitem19: {
caption: "Filter",
tip: "Filter",
},
tbitem18: {
caption: "Help",
tip: "Help",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem6: {
caption: "-",
tip: "",
},
tbitem7: {
caption: "Remove And Close",
tip: "Remove And Close Window",
},
tbitem8: {
caption: "-",
tip: "",
},
tbitem12: {
caption: "New",
tip: "New",
},
tbitem13: {
caption: "-",
tip: "",
},
tbitem14: {
caption: "Copy",
tip: "Copy {0}",
},
tbitem16: {
caption: "-",
tip: "",
},
tbitem18: {
caption: "其它",
tip: "其它",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
tbitem4: {
caption: "Save And New",
tip: "Save And New",
},
tbitem23: {
caption: "第一个记录",
tip: "第一个记录",
},
tbitem24: {
caption: "上一个记录",
tip: "上一个记录",
},
tbitem25: {
caption: "下一个记录",
tip: "下一个记录",
},
tbitem26: {
caption: "最后一个记录",
tip: "最后一个记录",
},
tbitem22: {
caption: "Help",
tip: "Help",
},
},
};
\ No newline at end of file
function getLocaleResource(){
const DstApp_en_US_OwnData = {};
const targetData = Object.assign(DstApp_en_US_Base(), DstApp_en_US_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import commonLogic from '@/locale/logic/common/common-logic';
function getLocaleResourceBase(){
const data:any = {
fields: {
id: commonLogic.appcommonhandle("应用标识",null),
label: commonLogic.appcommonhandle("应用名",null),
systemid: commonLogic.appcommonhandle("系统标识",null),
fullname: commonLogic.appcommonhandle("全称",null),
type: commonLogic.appcommonhandle("类型",null),
group: commonLogic.appcommonhandle("分组",null),
icon: commonLogic.appcommonhandle("图标",null),
visabled: commonLogic.appcommonhandle("可见",null),
addr: commonLogic.appcommonhandle("地址",null),
},
views: {
gridview: {
caption: commonLogic.appcommonhandle("应用",null),
title: commonLogic.appcommonhandle("应用表格视图",null),
},
editview: {
caption: commonLogic.appcommonhandle("应用",null),
title: commonLogic.appcommonhandle("应用编辑视图",null),
},
pickupgridview: {
caption: commonLogic.appcommonhandle("应用",null),
title: commonLogic.appcommonhandle("应用选择表格视图",null),
},
pickupview: {
caption: commonLogic.appcommonhandle("应用",null),
title: commonLogic.appcommonhandle("应用数据选择视图",null),
},
},
main_form: {
details: {
group1: commonLogic.appcommonhandle("应用基本信息",null),
formpage1: commonLogic.appcommonhandle("基本信息",null),
srforikey: commonLogic.appcommonhandle("",null),
srfkey: commonLogic.appcommonhandle("应用标识",null),
srfmajortext: commonLogic.appcommonhandle("应用名",null),
srftempmode: commonLogic.appcommonhandle("",null),
srfuf: commonLogic.appcommonhandle("",null),
srfdeid: commonLogic.appcommonhandle("",null),
srfsourcekey: commonLogic.appcommonhandle("",null),
appid: commonLogic.appcommonhandle("应用标识",null),
appname: commonLogic.appcommonhandle("应用名",null),
fullname: commonLogic.appcommonhandle("全称",null),
apptype: commonLogic.appcommonhandle("类型",null),
appgroup: commonLogic.appcommonhandle("分组",null),
pssystemid: commonLogic.appcommonhandle("系统标识",null),
visabled: commonLogic.appcommonhandle("可见",null),
icon: commonLogic.appcommonhandle("图标",null),
addr: commonLogic.appcommonhandle("地址",null),
},
uiactions: {
},
},
main_grid: {
columns: {
appid: commonLogic.appcommonhandle("应用标识",null),
appname: commonLogic.appcommonhandle("应用名",null),
fullname: commonLogic.appcommonhandle("全称",null),
apptype: commonLogic.appcommonhandle("类型",null),
appgroup: commonLogic.appcommonhandle("分组",null),
icon: commonLogic.appcommonhandle("图标",null),
addr: commonLogic.appcommonhandle("地址",null),
visabled: commonLogic.appcommonhandle("可见",null),
pssystemid: commonLogic.appcommonhandle("系统标识",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
default_searchform: {
details: {
formpage1: commonLogic.appcommonhandle("常规条件",null),
n_appname_like: commonLogic.appcommonhandle("应用名(文本包含(%))",null),
n_apptype_eq: commonLogic.appcommonhandle("类型(等于(=))",null),
n_pssystemid_eq: commonLogic.appcommonhandle("系统标识(等于(=))",null),
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("New",null),
tip: commonLogic.appcommonhandle("New",null),
},
tbitem4: {
caption: commonLogic.appcommonhandle("Edit",null),
tip: commonLogic.appcommonhandle("Edit {0}",null),
},
tbitem6: {
caption: commonLogic.appcommonhandle("Copy",null),
tip: commonLogic.appcommonhandle("Copy {0}",null),
},
tbitem7: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem8: {
caption: commonLogic.appcommonhandle("Remove",null),
tip: commonLogic.appcommonhandle("Remove {0}",null),
},
tbitem9: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem13: {
caption: commonLogic.appcommonhandle("Export",null),
tip: commonLogic.appcommonhandle("Export {0} Data To Excel",null),
},
tbitem10: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem16: {
caption: commonLogic.appcommonhandle("其它",null),
tip: commonLogic.appcommonhandle("其它",null),
},
tbitem21: {
caption: commonLogic.appcommonhandle("Export Data Model",null),
tip: commonLogic.appcommonhandle("导出数据模型",null),
},
tbitem23: {
caption: commonLogic.appcommonhandle("数据导入",null),
tip: commonLogic.appcommonhandle("数据导入",null),
},
tbitem17: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem19: {
caption: commonLogic.appcommonhandle("Filter",null),
tip: commonLogic.appcommonhandle("Filter",null),
},
tbitem18: {
caption: commonLogic.appcommonhandle("Help",null),
tip: commonLogic.appcommonhandle("Help",null),
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("Save",null),
tip: commonLogic.appcommonhandle("Save",null),
},
tbitem6: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem7: {
caption: commonLogic.appcommonhandle("Remove And Close",null),
tip: commonLogic.appcommonhandle("Remove And Close Window",null),
},
tbitem8: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem12: {
caption: commonLogic.appcommonhandle("New",null),
tip: commonLogic.appcommonhandle("New",null),
},
tbitem13: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem14: {
caption: commonLogic.appcommonhandle("Copy",null),
tip: commonLogic.appcommonhandle("Copy {0}",null),
},
tbitem16: {
caption: commonLogic.appcommonhandle("-",null),
tip: commonLogic.appcommonhandle("",null),
},
tbitem18: {
caption: commonLogic.appcommonhandle("其它",null),
tip: commonLogic.appcommonhandle("其它",null),
},
tbitem5: {
caption: commonLogic.appcommonhandle("Save And Close",null),
tip: commonLogic.appcommonhandle("Save And Close Window",null),
},
tbitem4: {
caption: commonLogic.appcommonhandle("Save And New",null),
tip: commonLogic.appcommonhandle("Save And New",null),
},
tbitem23: {
caption: commonLogic.appcommonhandle("第一个记录",null),
tip: commonLogic.appcommonhandle("第一个记录",null),
},
tbitem24: {
caption: commonLogic.appcommonhandle("上一个记录",null),
tip: commonLogic.appcommonhandle("上一个记录",null),
},
tbitem25: {
caption: commonLogic.appcommonhandle("下一个记录",null),
tip: commonLogic.appcommonhandle("下一个记录",null),
},
tbitem26: {
caption: commonLogic.appcommonhandle("最后一个记录",null),
tip: commonLogic.appcommonhandle("最后一个记录",null),
},
tbitem22: {
caption: commonLogic.appcommonhandle("Help",null),
tip: commonLogic.appcommonhandle("Help",null),
},
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
// 用户自定义语言资源 英文
export default {
};
\ No newline at end of file
function getLocaleResource(){
const data:any = {};
return data;
}
export default getLocaleResource;
\ No newline at end of file
// 用户自定义语言资源 中文
export default {
};
\ No newline at end of file
function getLocaleResource(){
const data:any = {};
return data;
}
export default getLocaleResource;
\ No newline at end of file
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册