提交 29b70665 编写于 作者: ibizdev's avatar ibizdev

tony001 发布系统代码 [后台服务,演示应用]

上级 e57dd959
......@@ -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()),
};
import enUs from './lang/en-US';
......@@ -18,7 +18,7 @@ import iviewEnUsLocale from 'view-design/dist/locale/en-US';
import elementEnLocale from 'element-ui/lib/locale/lang/en';
Object.assign(messages, {
'en-US': Object.assign(iviewEnUsLocale, elementEnLocale, enUs),
'en-US': Object.assign(iviewEnUsLocale, elementEnLocale, enUs()),
});
// 自动根据浏览器系统语言设置语言
......
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
export default {
BookSailState: {
"100": "未出版",
"200": "等待出版",
"300": "未上架",
"400": "已上架",
"empty": ""
},
SysOperator: {
"empty": "",
},
UNIPRODUCTTYPE: {
"Software": "软件",
"Hardware": "硬件",
"empty": ""
},
Bookgroup: {
"all": "全部",
"onshelf": "已上架",
"noshelf": "未上架",
"other": "其他",
"nopublish": "未出版",
"waitpublish": "等待出版",
"empty": ""
},
SCODELIST_TEXT: {
"A": "类型1",
"B": "类型2",
"C": "类型3",
"empty": ""
},
WFStates: {
"0": "未启动",
"1": "流程中",
"2": "已完成",
"3": "已取消",
"31": "已取消(人工)",
"32": "已取消(超时)",
"4": "处理故障",
"empty": ""
},
YesNo: {
"1": "是",
"0": "否",
"empty": ""
},
ORDERSTATE: {
"10": "未提交",
"20": "审核中",
"30": "已通过",
"40": "未通过",
"empty": ""
},
ORDERTYPE: {
"empty": "",
},
AppCtrlType: {
"form": "表单类",
"navigation": "导航类",
"panel": "面板类",
"multidata": "多数据类",
"other": "其他类",
"empty": ""
},
Booktag: {
"历史": "历史",
"数学": "数学",
"文学": "文学",
"科学": "科学",
"empty": ""
},
BOOKSTATUSGUIDE: {
"step1": "step1",
"step2": "step2",
"step3": "step3",
"empty": ""
},
SCODELIST_NUM: {
"1": "类型1",
"2": "类型2",
"4": "类型3",
"empty": ""
},
AppViewType: {
"singledataview": "单数据视图",
"multidataview": "多数据视图",
"navigationview": "导航视图",
"chooseview": "选择视图",
"workflowview": "工作流视图",
"applicationview": "应用视图",
"functionalview": "功能视图",
"otherview": "其他视图",
"empty": ""
},
CodeList: {
"100": "第一图书馆",
"300": "第三图书馆",
"200": "第二图书馆",
"empty": ""
},
BookType: {
"仙侠": "仙侠",
"武侠": "武侠",
"玄幻": "玄幻",
"都市": "都市",
"empty": ""
},
AppEditorType: {
"basics": "基础类",
"exhibition": "展示类",
"choose": "选择类",
"datachoose": "数据选择类",
"datechoose": "时间选择类",
"fileupload": "文件上传类",
"empty": ""
},
IsExtendEditor: {
"1": "是",
"0": "否",
"empty": ""
},
HARDWARETYPE: {
"Storage": "存储",
"CPU": "处理器",
"empty": ""
},
S_OrderType: {
"10": "销售订单",
"20": "采购订单",
"30": "生产订单",
"empty": ""
},
OrderType: {
"1": "已下单",
"2": "已取消",
"3": "已完成",
"empty": ""
},
CodeList25: {
"10": "押金",
"20": "身份证",
"30": "学生证",
"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 = {
BookSailState: {
"100": commonLogic.appcommonhandle("未出版",null),
"200": commonLogic.appcommonhandle("等待出版",null),
"300": commonLogic.appcommonhandle("未上架",null),
"400": commonLogic.appcommonhandle("已上架",null),
"empty": commonLogic.appcommonhandle("",null)
},
SysOperator: {
"empty": commonLogic.appcommonhandle("",null),
},
UNIPRODUCTTYPE: {
"Software": commonLogic.appcommonhandle("软件",null),
"Hardware": commonLogic.appcommonhandle("硬件",null),
"empty": commonLogic.appcommonhandle("",null)
},
Bookgroup: {
"all": commonLogic.appcommonhandle("全部",null),
"onshelf": commonLogic.appcommonhandle("已上架",null),
"noshelf": commonLogic.appcommonhandle("未上架",null),
"other": commonLogic.appcommonhandle("其他",null),
"nopublish": commonLogic.appcommonhandle("未出版",null),
"waitpublish": commonLogic.appcommonhandle("等待出版",null),
"empty": commonLogic.appcommonhandle("",null)
},
SCODELIST_TEXT: {
"A": commonLogic.appcommonhandle("类型1",null),
"B": commonLogic.appcommonhandle("类型2",null),
"C": commonLogic.appcommonhandle("类型3",null),
"empty": commonLogic.appcommonhandle("",null)
},
WFStates: {
"0": commonLogic.appcommonhandle("未启动",null),
"1": commonLogic.appcommonhandle("流程中",null),
"2": commonLogic.appcommonhandle("已完成",null),
"3": commonLogic.appcommonhandle("已取消",null),
"31": commonLogic.appcommonhandle("已取消(人工)",null),
"32": commonLogic.appcommonhandle("已取消(超时)",null),
"4": commonLogic.appcommonhandle("处理故障",null),
"empty": commonLogic.appcommonhandle("",null)
},
YesNo: {
"1": commonLogic.appcommonhandle("是",null),
"0": commonLogic.appcommonhandle("否",null),
"empty": commonLogic.appcommonhandle("",null)
},
ORDERSTATE: {
"10": commonLogic.appcommonhandle("未提交",null),
"20": commonLogic.appcommonhandle("审核中",null),
"30": commonLogic.appcommonhandle("已通过",null),
"40": commonLogic.appcommonhandle("未通过",null),
"empty": commonLogic.appcommonhandle("",null)
},
ORDERTYPE: {
"empty": commonLogic.appcommonhandle("",null),
},
AppCtrlType: {
"form": commonLogic.appcommonhandle("表单类",null),
"navigation": commonLogic.appcommonhandle("导航类",null),
"panel": commonLogic.appcommonhandle("面板类",null),
"multidata": commonLogic.appcommonhandle("多数据类",null),
"other": commonLogic.appcommonhandle("其他类",null),
"empty": commonLogic.appcommonhandle("",null)
},
Booktag: {
"历史": commonLogic.appcommonhandle("历史",null),
"数学": commonLogic.appcommonhandle("数学",null),
"文学": commonLogic.appcommonhandle("文学",null),
"科学": commonLogic.appcommonhandle("科学",null),
"empty": commonLogic.appcommonhandle("",null)
},
BOOKSTATUSGUIDE: {
"step1": commonLogic.appcommonhandle("step1",null),
"step2": commonLogic.appcommonhandle("step2",null),
"step3": commonLogic.appcommonhandle("step3",null),
"empty": commonLogic.appcommonhandle("",null)
},
SCODELIST_NUM: {
"1": commonLogic.appcommonhandle("类型1",null),
"2": commonLogic.appcommonhandle("类型2",null),
"4": commonLogic.appcommonhandle("类型3",null),
"empty": commonLogic.appcommonhandle("",null)
},
AppViewType: {
"singledataview": commonLogic.appcommonhandle("单数据视图",null),
"multidataview": commonLogic.appcommonhandle("多数据视图",null),
"navigationview": commonLogic.appcommonhandle("导航视图",null),
"chooseview": commonLogic.appcommonhandle("选择视图",null),
"workflowview": commonLogic.appcommonhandle("工作流视图",null),
"applicationview": commonLogic.appcommonhandle("应用视图",null),
"functionalview": commonLogic.appcommonhandle("功能视图",null),
"otherview": commonLogic.appcommonhandle("其他视图",null),
"empty": commonLogic.appcommonhandle("",null)
},
CodeList: {
"100": commonLogic.appcommonhandle("第一图书馆",null),
"300": commonLogic.appcommonhandle("第三图书馆",null),
"200": commonLogic.appcommonhandle("第二图书馆",null),
"empty": commonLogic.appcommonhandle("",null)
},
BookType: {
"仙侠": commonLogic.appcommonhandle("仙侠",null),
"武侠": commonLogic.appcommonhandle("武侠",null),
"玄幻": commonLogic.appcommonhandle("玄幻",null),
"都市": commonLogic.appcommonhandle("都市",null),
"empty": commonLogic.appcommonhandle("",null)
},
AppEditorType: {
"basics": commonLogic.appcommonhandle("基础类",null),
"exhibition": commonLogic.appcommonhandle("展示类",null),
"choose": commonLogic.appcommonhandle("选择类",null),
"datachoose": commonLogic.appcommonhandle("数据选择类",null),
"datechoose": commonLogic.appcommonhandle("时间选择类",null),
"fileupload": commonLogic.appcommonhandle("文件上传类",null),
"empty": commonLogic.appcommonhandle("",null)
},
IsExtendEditor: {
"1": commonLogic.appcommonhandle("是",null),
"0": commonLogic.appcommonhandle("否",null),
"empty": commonLogic.appcommonhandle("",null)
},
HARDWARETYPE: {
"Storage": commonLogic.appcommonhandle("存储",null),
"CPU": commonLogic.appcommonhandle("处理器",null),
"empty": commonLogic.appcommonhandle("",null)
},
S_OrderType: {
"10": commonLogic.appcommonhandle("销售订单",null),
"20": commonLogic.appcommonhandle("采购订单",null),
"30": commonLogic.appcommonhandle("生产订单",null),
"empty": commonLogic.appcommonhandle("",null)
},
OrderType: {
"1": commonLogic.appcommonhandle("已下单",null),
"2": commonLogic.appcommonhandle("已取消",null),
"3": commonLogic.appcommonhandle("已完成",null),
"empty": commonLogic.appcommonhandle("",null)
},
CodeList25: {
"10": commonLogic.appcommonhandle("押金",null),
"20": commonLogic.appcommonhandle("身份证",null),
"30": commonLogic.appcommonhandle("学生证",null),
"empty": commonLogic.appcommonhandle("",null)
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
export default {
BookSailState: {
"100": "未出版",
"200": "等待出版",
"300": "未上架",
"400": "已上架",
"empty": "",
},
SysOperator: {
"empty": "",
},
UNIPRODUCTTYPE: {
"Software": "软件",
"Hardware": "硬件",
"empty": "",
},
Bookgroup: {
"all": "全部",
"onshelf": "已上架",
"noshelf": "未上架",
"other": "其他",
"nopublish": "未出版",
"waitpublish": "等待出版",
"empty": "",
},
SCODELIST_TEXT: {
"A": "类型1",
"B": "类型2",
"C": "类型3",
"empty": "",
},
WFStates: {
"0": "未启动",
"1": "流程中",
"2": "已完成",
"3": "已取消",
"31": "已取消(人工)",
"32": "已取消(超时)",
"4": "处理故障",
"empty": "",
},
YesNo: {
"1": "是",
"0": "否",
"empty": "",
},
ORDERSTATE: {
"10": "未提交",
"20": "审核中",
"30": "已通过",
"40": "未通过",
"empty": "",
},
ORDERTYPE: {
"empty": "",
},
AppCtrlType: {
"form": "表单类",
"navigation": "导航类",
"panel": "面板类",
"multidata": "多数据类",
"other": "其他类",
"empty": "",
},
Booktag: {
"历史": "历史",
"数学": "数学",
"文学": "文学",
"科学": "科学",
"empty": "",
},
BOOKSTATUSGUIDE: {
"step1": "step1",
"step2": "step2",
"step3": "step3",
"empty": "",
},
SCODELIST_NUM: {
"1": "类型1",
"2": "类型2",
"4": "类型3",
"empty": "",
},
AppViewType: {
"singledataview": "单数据视图",
"multidataview": "多数据视图",
"navigationview": "导航视图",
"chooseview": "选择视图",
"workflowview": "工作流视图",
"applicationview": "应用视图",
"functionalview": "功能视图",
"otherview": "其他视图",
"empty": "",
},
CodeList: {
"100": "第一图书馆",
"300": "第三图书馆",
"200": "第二图书馆",
"empty": "",
},
BookType: {
"仙侠": "仙侠",
"武侠": "武侠",
"玄幻": "玄幻",
"都市": "都市",
"empty": "",
},
AppEditorType: {
"basics": "基础类",
"exhibition": "展示类",
"choose": "选择类",
"datachoose": "数据选择类",
"datechoose": "时间选择类",
"fileupload": "文件上传类",
"empty": "",
},
IsExtendEditor: {
"1": "是",
"0": "否",
"empty": "",
},
HARDWARETYPE: {
"Storage": "存储",
"CPU": "处理器",
"empty": "",
},
S_OrderType: {
"10": "销售订单",
"20": "采购订单",
"30": "生产订单",
"empty": "",
},
OrderType: {
"1": "已下单",
"2": "已取消",
"3": "已完成",
"empty": "",
},
CodeList25: {
"10": "押金",
"20": "身份证",
"30": "学生证",
"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 = {
BookSailState: {
"100": commonLogic.appcommonhandle("未出版",null),
"200": commonLogic.appcommonhandle("等待出版",null),
"300": commonLogic.appcommonhandle("未上架",null),
"400": commonLogic.appcommonhandle("已上架",null),
"empty": commonLogic.appcommonhandle("",null),
},
SysOperator: {
"empty": commonLogic.appcommonhandle("",null),
},
UNIPRODUCTTYPE: {
"Software": commonLogic.appcommonhandle("软件",null),
"Hardware": commonLogic.appcommonhandle("硬件",null),
"empty": commonLogic.appcommonhandle("",null),
},
Bookgroup: {
"all": commonLogic.appcommonhandle("全部",null),
"onshelf": commonLogic.appcommonhandle("已上架",null),
"noshelf": commonLogic.appcommonhandle("未上架",null),
"other": commonLogic.appcommonhandle("其他",null),
"nopublish": commonLogic.appcommonhandle("未出版",null),
"waitpublish": commonLogic.appcommonhandle("等待出版",null),
"empty": commonLogic.appcommonhandle("",null),
},
SCODELIST_TEXT: {
"A": commonLogic.appcommonhandle("类型1",null),
"B": commonLogic.appcommonhandle("类型2",null),
"C": commonLogic.appcommonhandle("类型3",null),
"empty": commonLogic.appcommonhandle("",null),
},
WFStates: {
"0": commonLogic.appcommonhandle("未启动",null),
"1": commonLogic.appcommonhandle("流程中",null),
"2": commonLogic.appcommonhandle("已完成",null),
"3": commonLogic.appcommonhandle("已取消",null),
"31": commonLogic.appcommonhandle("已取消(人工)",null),
"32": commonLogic.appcommonhandle("已取消(超时)",null),
"4": commonLogic.appcommonhandle("处理故障",null),
"empty": commonLogic.appcommonhandle("",null),
},
YesNo: {
"1": commonLogic.appcommonhandle("是",null),
"0": commonLogic.appcommonhandle("否",null),
"empty": commonLogic.appcommonhandle("",null),
},
ORDERSTATE: {
"10": commonLogic.appcommonhandle("未提交",null),
"20": commonLogic.appcommonhandle("审核中",null),
"30": commonLogic.appcommonhandle("已通过",null),
"40": commonLogic.appcommonhandle("未通过",null),
"empty": commonLogic.appcommonhandle("",null),
},
ORDERTYPE: {
"empty": commonLogic.appcommonhandle("",null),
},
AppCtrlType: {
"form": commonLogic.appcommonhandle("表单类",null),
"navigation": commonLogic.appcommonhandle("导航类",null),
"panel": commonLogic.appcommonhandle("面板类",null),
"multidata": commonLogic.appcommonhandle("多数据类",null),
"other": commonLogic.appcommonhandle("其他类",null),
"empty": commonLogic.appcommonhandle("",null),
},
Booktag: {
"历史": commonLogic.appcommonhandle("历史",null),
"数学": commonLogic.appcommonhandle("数学",null),
"文学": commonLogic.appcommonhandle("文学",null),
"科学": commonLogic.appcommonhandle("科学",null),
"empty": commonLogic.appcommonhandle("",null),
},
BOOKSTATUSGUIDE: {
"step1": commonLogic.appcommonhandle("step1",null),
"step2": commonLogic.appcommonhandle("step2",null),
"step3": commonLogic.appcommonhandle("step3",null),
"empty": commonLogic.appcommonhandle("",null),
},
SCODELIST_NUM: {
"1": commonLogic.appcommonhandle("类型1",null),
"2": commonLogic.appcommonhandle("类型2",null),
"4": commonLogic.appcommonhandle("类型3",null),
"empty": commonLogic.appcommonhandle("",null),
},
AppViewType: {
"singledataview": commonLogic.appcommonhandle("单数据视图",null),
"multidataview": commonLogic.appcommonhandle("多数据视图",null),
"navigationview": commonLogic.appcommonhandle("导航视图",null),
"chooseview": commonLogic.appcommonhandle("选择视图",null),
"workflowview": commonLogic.appcommonhandle("工作流视图",null),
"applicationview": commonLogic.appcommonhandle("应用视图",null),
"functionalview": commonLogic.appcommonhandle("功能视图",null),
"otherview": commonLogic.appcommonhandle("其他视图",null),
"empty": commonLogic.appcommonhandle("",null),
},
CodeList: {
"100": commonLogic.appcommonhandle("第一图书馆",null),
"300": commonLogic.appcommonhandle("第三图书馆",null),
"200": commonLogic.appcommonhandle("第二图书馆",null),
"empty": commonLogic.appcommonhandle("",null),
},
BookType: {
"仙侠": commonLogic.appcommonhandle("仙侠",null),
"武侠": commonLogic.appcommonhandle("武侠",null),
"玄幻": commonLogic.appcommonhandle("玄幻",null),
"都市": commonLogic.appcommonhandle("都市",null),
"empty": commonLogic.appcommonhandle("",null),
},
AppEditorType: {
"basics": commonLogic.appcommonhandle("基础类",null),
"exhibition": commonLogic.appcommonhandle("展示类",null),
"choose": commonLogic.appcommonhandle("选择类",null),
"datachoose": commonLogic.appcommonhandle("数据选择类",null),
"datechoose": commonLogic.appcommonhandle("时间选择类",null),
"fileupload": commonLogic.appcommonhandle("文件上传类",null),
"empty": commonLogic.appcommonhandle("",null),
},
IsExtendEditor: {
"1": commonLogic.appcommonhandle("是",null),
"0": commonLogic.appcommonhandle("否",null),
"empty": commonLogic.appcommonhandle("",null),
},
HARDWARETYPE: {
"Storage": commonLogic.appcommonhandle("存储",null),
"CPU": commonLogic.appcommonhandle("处理器",null),
"empty": commonLogic.appcommonhandle("",null),
},
S_OrderType: {
"10": commonLogic.appcommonhandle("销售订单",null),
"20": commonLogic.appcommonhandle("采购订单",null),
"30": commonLogic.appcommonhandle("生产订单",null),
"empty": commonLogic.appcommonhandle("",null),
},
OrderType: {
"1": commonLogic.appcommonhandle("已下单",null),
"2": commonLogic.appcommonhandle("已取消",null),
"3": commonLogic.appcommonhandle("已完成",null),
"empty": commonLogic.appcommonhandle("",null),
},
CodeList25: {
"10": commonLogic.appcommonhandle("押金",null),
"20": commonLogic.appcommonhandle("身份证",null),
"30": commonLogic.appcommonhandle("学生证",null),
"empty": commonLogic.appcommonhandle("",null),
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import DYNADASHBOARD_en_US_Base from './dynadashboard_en_US_base';
export default {
fields: {
dynadashboardid: "动态数据看板标识",
dynadashboardname: "动态数据看板名称",
createman: "建立人",
updateman: "更新人",
updatedate: "更新时间",
createdate: "建立时间",
userid: "用户标识",
modelid: "模型标识",
appid: "应用标识",
model: "模型",
},
};
\ No newline at end of file
function getLocaleResource(){
const DYNADASHBOARD_en_US_OwnData = {};
const targetData = Object.assign(DYNADASHBOARD_en_US_Base(), DYNADASHBOARD_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: {
dynadashboardid: commonLogic.appcommonhandle("动态数据看板标识",null),
dynadashboardname: commonLogic.appcommonhandle("动态数据看板名称",null),
createman: commonLogic.appcommonhandle("建立人",null),
updateman: commonLogic.appcommonhandle("更新人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
userid: commonLogic.appcommonhandle("用户标识",null),
modelid: commonLogic.appcommonhandle("模型标识",null),
appid: commonLogic.appcommonhandle("应用标识",null),
model: commonLogic.appcommonhandle("模型",null),
},
derules:{
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
export default {
fields: {
dynadashboardid: "动态数据看板标识",
dynadashboardname: "动态数据看板名称",
createman: "建立人",
updateman: "更新人",
updatedate: "更新时间",
createdate: "建立时间",
userid: "用户标识",
modelid: "模型标识",
appid: "应用标识",
model: "模型",
},
};
\ No newline at end of file
import DYNADASHBOARD_zh_CN_Base from './dynadashboard_zh_CN_base';
function getLocaleResource(){
const DYNADASHBOARD_zh_CN_OwnData = {};
const targetData = Object.assign(DYNADASHBOARD_zh_CN_Base(), DYNADASHBOARD_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: {
dynadashboardid: commonLogic.appcommonhandle("动态数据看板标识",null),
dynadashboardname: commonLogic.appcommonhandle("动态数据看板名称",null),
createman: commonLogic.appcommonhandle("建立人",null),
updateman: commonLogic.appcommonhandle("更新人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
userid: commonLogic.appcommonhandle("用户标识",null),
modelid: commonLogic.appcommonhandle("模型标识",null),
appid: commonLogic.appcommonhandle("应用标识",null),
model: commonLogic.appcommonhandle("模型",null),
},
derules:{
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZAccount_en_US_Base from './ibizaccount_en_US_base';
export default {
fields: {
updatedate: "更新时间",
updateman: "更新人",
bankname: "开户行",
ibizaccountname: "账户名称",
createman: "建立人",
createdate: "建立时间",
bankaccountnum: "开户银行号",
ibizaccountid: "账户标识",
},
};
\ No newline at end of file
function getLocaleResource(){
const IBIZAccount_en_US_OwnData = {};
const targetData = Object.assign(IBIZAccount_en_US_Base(), IBIZAccount_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: {
updatedate: commonLogic.appcommonhandle("更新时间",null),
updateman: commonLogic.appcommonhandle("更新人",null),
bankname: commonLogic.appcommonhandle("开户行",null),
ibizaccountname: commonLogic.appcommonhandle("账户名称",null),
createman: commonLogic.appcommonhandle("建立人",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
bankaccountnum: commonLogic.appcommonhandle("开户银行号",null),
ibizaccountid: commonLogic.appcommonhandle("账户标识",null),
},
derules:{
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
export default {
fields: {
updatedate: "更新时间",
updateman: "更新人",
bankname: "开户行",
ibizaccountname: "账户名称",
createman: "建立人",
createdate: "建立时间",
bankaccountnum: "开户银行号",
ibizaccountid: "账户标识",
},
};
\ No newline at end of file
import IBIZAccount_zh_CN_Base from './ibizaccount_zh_CN_base';
function getLocaleResource(){
const IBIZAccount_zh_CN_OwnData = {};
const targetData = Object.assign(IBIZAccount_zh_CN_Base(), IBIZAccount_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: {
updatedate: commonLogic.appcommonhandle("更新时间",null),
updateman: commonLogic.appcommonhandle("更新人",null),
bankname: commonLogic.appcommonhandle("开户行",null),
ibizaccountname: commonLogic.appcommonhandle("账户名称",null),
createman: commonLogic.appcommonhandle("建立人",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
bankaccountnum: commonLogic.appcommonhandle("开户银行号",null),
ibizaccountid: commonLogic.appcommonhandle("账户标识",null),
},
derules:{
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZAPPCTRL_en_US_Base from './ibizappctrl_en_US_base';
export default {
fields: {
ibizappctrlname: "应用部件名称",
ibizappctrlid: "应用部件标识",
updatedate: "更新时间",
createdate: "建立时间",
createman: "建立人",
updateman: "更新人",
ibizappctrltype: "应用部件类型",
ctrldescription: "部件描述",
documentaddress: "文档地址",
amount: "数量",
},
views: {
listview: {
caption: "应用部件",
title: "应用部件列表视图",
},
gridview: {
caption: "应用部件",
title: "应用部件表格视图",
},
editview: {
caption: "应用部件",
title: "应用部件编辑视图",
},
},
main_form: {
details: {
group1: "应用部件基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "应用部件标识",
srfmajortext: "应用部件名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
ibizappctrlid: "应用部件标识",
amount: "数量",
ibizappctrlname: "应用部件名称",
ibizappctrltype: "应用部件类型",
documentaddress: "文档地址",
ctrldescription: "部件描述",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
main_grid: {
columns: {
ibizappctrlname: "应用部件名称",
ibizappctrltype: "应用部件类型",
documentaddress: "文档地址",
ctrldescription: "部件描述",
},
nodata:"",
uiactions: {
},
},
ctrlamount_list: {
nodata:"",
uiactions: {
},
},
ctrllist_list: {
nodata:"",
uiactions: {
ibizappctrl_opendocument: "打开文档",
},
},
ctrlchart_chart: {
nodata:"",
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
listviewtoolbar_toolbar: {
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
deuiaction1: {
caption: "刷新",
tip: "刷新",
},
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: "数据导入",
},
},
};
\ No newline at end of file
function getLocaleResource(){
const IBIZAPPCTRL_en_US_OwnData = {};
const targetData = Object.assign(IBIZAPPCTRL_en_US_Base(), IBIZAPPCTRL_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: {
ibizappctrlname: commonLogic.appcommonhandle("应用部件名称",null),
ibizappctrlid: commonLogic.appcommonhandle("应用部件标识",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
createman: commonLogic.appcommonhandle("建立人",null),
updateman: commonLogic.appcommonhandle("更新人",null),
ibizappctrltype: commonLogic.appcommonhandle("应用部件类型",null),
ctrldescription: commonLogic.appcommonhandle("部件描述",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
amount: commonLogic.appcommonhandle("数量",null),
},
derules:{
},
views: {
listview: {
caption: commonLogic.appcommonhandle("应用部件",null),
title: commonLogic.appcommonhandle("应用部件列表视图",null),
},
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),
group2: commonLogic.appcommonhandle("操作信息",null),
formpage2: 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),
ibizappctrlid: commonLogic.appcommonhandle("应用部件标识",null),
amount: commonLogic.appcommonhandle("数量",null),
ibizappctrlname: commonLogic.appcommonhandle("应用部件名称",null),
ibizappctrltype: commonLogic.appcommonhandle("应用部件类型",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
ctrldescription: commonLogic.appcommonhandle("部件描述",null),
createman: commonLogic.appcommonhandle("建立人",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
updateman: commonLogic.appcommonhandle("更新人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
},
uiactions: {
},
},
main_grid: {
columns: {
ibizappctrlname: commonLogic.appcommonhandle("应用部件名称",null),
ibizappctrltype: commonLogic.appcommonhandle("应用部件类型",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
ctrldescription: commonLogic.appcommonhandle("部件描述",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
ctrlamount_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
ctrllist_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
ibizappctrl_opendocument: commonLogic.appcommonhandle("打开文档",null),
},
},
ctrlchart_chart: {
nodata:commonLogic.appcommonhandle("",null),
},
default_searchform: {
details: {
formpage1: commonLogic.appcommonhandle("常规条件",null),
},
uiactions: {
},
},
listviewtoolbar_toolbar: {
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("Save",null),
tip: commonLogic.appcommonhandle("Save",null),
},
tbitem5: {
caption: commonLogic.appcommonhandle("Save And Close",null),
tip: commonLogic.appcommonhandle("Save And Close Window",null),
},
},
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),
},
deuiaction1: {
caption: commonLogic.appcommonhandle("刷新",null),
tip: commonLogic.appcommonhandle("刷新",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),
},
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
export default {
fields: {
ibizappctrlname: "应用部件名称",
ibizappctrlid: "应用部件标识",
updatedate: "更新时间",
createdate: "建立时间",
createman: "建立人",
updateman: "更新人",
ibizappctrltype: "应用部件类型",
ctrldescription: "部件描述",
documentaddress: "文档地址",
amount: "数量",
},
views: {
listview: {
caption: "应用部件",
title: "应用部件列表视图",
},
gridview: {
caption: "应用部件",
title: "应用部件表格视图",
},
editview: {
caption: "应用部件",
title: "应用部件编辑视图",
},
},
main_form: {
details: {
group1: "应用部件基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "应用部件标识",
srfmajortext: "应用部件名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
ibizappctrlid: "应用部件标识",
amount: "数量",
ibizappctrlname: "应用部件名称",
ibizappctrltype: "应用部件类型",
documentaddress: "文档地址",
ctrldescription: "部件描述",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
main_grid: {
columns: {
ibizappctrlname: "应用部件名称",
ibizappctrltype: "应用部件类型",
documentaddress: "文档地址",
ctrldescription: "部件描述",
},
nodata:"",
uiactions: {
},
},
ctrlamount_list: {
nodata:"",
uiactions: {
},
},
ctrllist_list: {
nodata:"",
uiactions: {
ibizappctrl_opendocument: "打开文档",
},
},
ctrlchart_chart: {
nodata:"",
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
listviewtoolbar_toolbar: {
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
deuiaction1: {
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: "数据导入",
},
},
};
\ No newline at end of file
import IBIZAPPCTRL_zh_CN_Base from './ibizappctrl_zh_CN_base';
function getLocaleResource(){
const IBIZAPPCTRL_zh_CN_OwnData = {};
const targetData = Object.assign(IBIZAPPCTRL_zh_CN_Base(), IBIZAPPCTRL_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: {
ibizappctrlname: commonLogic.appcommonhandle("应用部件名称",null),
ibizappctrlid: commonLogic.appcommonhandle("应用部件标识",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
createman: commonLogic.appcommonhandle("建立人",null),
updateman: commonLogic.appcommonhandle("更新人",null),
ibizappctrltype: commonLogic.appcommonhandle("应用部件类型",null),
ctrldescription: commonLogic.appcommonhandle("部件描述",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
amount: commonLogic.appcommonhandle("数量",null),
},
derules:{
},
views: {
listview: {
caption: commonLogic.appcommonhandle("应用部件",null),
title: commonLogic.appcommonhandle("应用部件列表视图",null),
},
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),
group2: commonLogic.appcommonhandle("操作信息",null),
formpage2: 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),
ibizappctrlid: commonLogic.appcommonhandle("应用部件标识",null),
amount: commonLogic.appcommonhandle("数量",null),
ibizappctrlname: commonLogic.appcommonhandle("应用部件名称",null),
ibizappctrltype: commonLogic.appcommonhandle("应用部件类型",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
ctrldescription: commonLogic.appcommonhandle("部件描述",null),
createman: commonLogic.appcommonhandle("建立人",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
updateman: commonLogic.appcommonhandle("更新人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
},
uiactions: {
},
},
main_grid: {
columns: {
ibizappctrlname: commonLogic.appcommonhandle("应用部件名称",null),
ibizappctrltype: commonLogic.appcommonhandle("应用部件类型",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
ctrldescription: commonLogic.appcommonhandle("部件描述",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
ctrlamount_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
ctrllist_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
ibizappctrl_opendocument: commonLogic.appcommonhandle("打开文档",null),
},
},
ctrlchart_chart: {
nodata:commonLogic.appcommonhandle("",null),
},
default_searchform: {
details: {
formpage1: commonLogic.appcommonhandle("常规条件",null),
},
uiactions: {
},
},
listviewtoolbar_toolbar: {
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("保存",null),
tip: commonLogic.appcommonhandle("保存",null),
},
tbitem5: {
caption: commonLogic.appcommonhandle("保存并关闭",null),
tip: commonLogic.appcommonhandle("保存并关闭",null),
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
tbitem4: {
caption: commonLogic.appcommonhandle("编辑",null),
tip: commonLogic.appcommonhandle("编辑",null),
},
deuiaction1: {
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),
},
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZAPPEDITOR_en_US_Base from './ibizappeditor_en_US_base';
export default {
fields: {
createman: "建立人",
updatedate: "更新时间",
createdate: "建立时间",
ibizappeditorname: "编辑器名称",
updateman: "更新人",
ibizappeditorid: "编辑器标识",
ibizappeditortype: "编辑器类型",
rditordescription: "编辑器描述",
documentaddress: "文档地址",
amount: "数量",
isextendeditor: "是否为扩展编辑器",
},
views: {
gridview: {
caption: "编辑器",
title: "编辑器表格视图",
},
listview: {
caption: "编辑器",
title: "编辑器列表视图",
},
editview: {
caption: "编辑器",
title: "编辑器编辑视图",
},
},
main_form: {
details: {
group1: "编辑器基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "编辑器标识",
srfmajortext: "编辑器名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
ibizappeditorid: "编辑器标识",
amount: "数量",
ibizappeditorname: "编辑器名称",
ibizappeditortype: "编辑器类型",
isextendeditor: "是否为扩展编辑器",
documentaddress: "文档地址",
rditordescription: "编辑器描述",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
main_grid: {
columns: {
ibizappeditorname: "编辑器名称",
ibizappeditortype: "编辑器类型",
documentaddress: "文档地址",
rditordescription: "编辑器描述",
},
nodata:"",
uiactions: {
},
},
editoramount_list: {
nodata:"",
uiactions: {
},
},
extendeditoramount_list: {
nodata:"",
uiactions: {
},
},
editorlist_list: {
nodata:"",
uiactions: {
ibizappeditor_opendocument: "打开文档",
},
},
editorchart_chart: {
nodata:"",
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "New",
tip: "New",
},
tbitem4: {
caption: "Edit",
tip: "Edit {0}",
},
deuiaction1: {
caption: "刷新",
tip: "刷新",
},
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: "数据导入",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "Save",
tip: "Save",
},
tbitem5: {
caption: "Save And Close",
tip: "Save And Close Window",
},
},
listviewtoolbar_toolbar: {
},
};
\ No newline at end of file
function getLocaleResource(){
const IBIZAPPEDITOR_en_US_OwnData = {};
const targetData = Object.assign(IBIZAPPEDITOR_en_US_Base(), IBIZAPPEDITOR_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: {
createman: commonLogic.appcommonhandle("建立人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
ibizappeditorname: commonLogic.appcommonhandle("编辑器名称",null),
updateman: commonLogic.appcommonhandle("更新人",null),
ibizappeditorid: commonLogic.appcommonhandle("编辑器标识",null),
ibizappeditortype: commonLogic.appcommonhandle("编辑器类型",null),
rditordescription: commonLogic.appcommonhandle("编辑器描述",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
amount: commonLogic.appcommonhandle("数量",null),
isextendeditor: commonLogic.appcommonhandle("是否为扩展编辑器",null),
},
derules:{
},
views: {
gridview: {
caption: commonLogic.appcommonhandle("编辑器",null),
title: commonLogic.appcommonhandle("编辑器表格视图",null),
},
listview: {
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),
group2: commonLogic.appcommonhandle("操作信息",null),
formpage2: 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),
ibizappeditorid: commonLogic.appcommonhandle("编辑器标识",null),
amount: commonLogic.appcommonhandle("数量",null),
ibizappeditorname: commonLogic.appcommonhandle("编辑器名称",null),
ibizappeditortype: commonLogic.appcommonhandle("编辑器类型",null),
isextendeditor: commonLogic.appcommonhandle("是否为扩展编辑器",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
rditordescription: commonLogic.appcommonhandle("编辑器描述",null),
createman: commonLogic.appcommonhandle("建立人",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
updateman: commonLogic.appcommonhandle("更新人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
},
uiactions: {
},
},
main_grid: {
columns: {
ibizappeditorname: commonLogic.appcommonhandle("编辑器名称",null),
ibizappeditortype: commonLogic.appcommonhandle("编辑器类型",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
rditordescription: commonLogic.appcommonhandle("编辑器描述",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
editoramount_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
extendeditoramount_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
editorlist_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
ibizappeditor_opendocument: commonLogic.appcommonhandle("打开文档",null),
},
},
editorchart_chart: {
nodata:commonLogic.appcommonhandle("",null),
},
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),
},
deuiaction1: {
caption: commonLogic.appcommonhandle("刷新",null),
tip: commonLogic.appcommonhandle("刷新",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),
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("Save",null),
tip: commonLogic.appcommonhandle("Save",null),
},
tbitem5: {
caption: commonLogic.appcommonhandle("Save And Close",null),
tip: commonLogic.appcommonhandle("Save And Close Window",null),
},
},
listviewtoolbar_toolbar: {
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
export default {
fields: {
createman: "建立人",
updatedate: "更新时间",
createdate: "建立时间",
ibizappeditorname: "编辑器名称",
updateman: "更新人",
ibizappeditorid: "编辑器标识",
ibizappeditortype: "编辑器类型",
rditordescription: "编辑器描述",
documentaddress: "文档地址",
amount: "数量",
isextendeditor: "是否为扩展编辑器",
},
views: {
gridview: {
caption: "编辑器",
title: "编辑器表格视图",
},
listview: {
caption: "编辑器",
title: "编辑器列表视图",
},
editview: {
caption: "编辑器",
title: "编辑器编辑视图",
},
},
main_form: {
details: {
group1: "编辑器基本信息",
formpage1: "基本信息",
group2: "操作信息",
formpage2: "其它",
srfupdatedate: "更新时间",
srforikey: "",
srfkey: "编辑器标识",
srfmajortext: "编辑器名称",
srftempmode: "",
srfuf: "",
srfdeid: "",
srfsourcekey: "",
ibizappeditorid: "编辑器标识",
amount: "数量",
ibizappeditorname: "编辑器名称",
ibizappeditortype: "编辑器类型",
isextendeditor: "是否为扩展编辑器",
documentaddress: "文档地址",
rditordescription: "编辑器描述",
createman: "建立人",
createdate: "建立时间",
updateman: "更新人",
updatedate: "更新时间",
},
uiactions: {
},
},
main_grid: {
columns: {
ibizappeditorname: "编辑器名称",
ibizappeditortype: "编辑器类型",
documentaddress: "文档地址",
rditordescription: "编辑器描述",
},
nodata:"",
uiactions: {
},
},
editoramount_list: {
nodata:"",
uiactions: {
},
},
extendeditoramount_list: {
nodata:"",
uiactions: {
},
},
editorlist_list: {
nodata:"",
uiactions: {
ibizappeditor_opendocument: "打开文档",
},
},
editorchart_chart: {
nodata:"",
},
default_searchform: {
details: {
formpage1: "常规条件",
},
uiactions: {
},
},
gridviewtoolbar_toolbar: {
tbitem3: {
caption: "新建",
tip: "新建",
},
tbitem4: {
caption: "编辑",
tip: "编辑",
},
deuiaction1: {
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: "数据导入",
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: "保存",
tip: "保存",
},
tbitem5: {
caption: "保存并关闭",
tip: "保存并关闭",
},
},
listviewtoolbar_toolbar: {
},
};
\ No newline at end of file
import IBIZAPPEDITOR_zh_CN_Base from './ibizappeditor_zh_CN_base';
function getLocaleResource(){
const IBIZAPPEDITOR_zh_CN_OwnData = {};
const targetData = Object.assign(IBIZAPPEDITOR_zh_CN_Base(), IBIZAPPEDITOR_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: {
createman: commonLogic.appcommonhandle("建立人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
ibizappeditorname: commonLogic.appcommonhandle("编辑器名称",null),
updateman: commonLogic.appcommonhandle("更新人",null),
ibizappeditorid: commonLogic.appcommonhandle("编辑器标识",null),
ibizappeditortype: commonLogic.appcommonhandle("编辑器类型",null),
rditordescription: commonLogic.appcommonhandle("编辑器描述",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
amount: commonLogic.appcommonhandle("数量",null),
isextendeditor: commonLogic.appcommonhandle("是否为扩展编辑器",null),
},
derules:{
},
views: {
gridview: {
caption: commonLogic.appcommonhandle("编辑器",null),
title: commonLogic.appcommonhandle("编辑器表格视图",null),
},
listview: {
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),
group2: commonLogic.appcommonhandle("操作信息",null),
formpage2: 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),
ibizappeditorid: commonLogic.appcommonhandle("编辑器标识",null),
amount: commonLogic.appcommonhandle("数量",null),
ibizappeditorname: commonLogic.appcommonhandle("编辑器名称",null),
ibizappeditortype: commonLogic.appcommonhandle("编辑器类型",null),
isextendeditor: commonLogic.appcommonhandle("是否为扩展编辑器",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
rditordescription: commonLogic.appcommonhandle("编辑器描述",null),
createman: commonLogic.appcommonhandle("建立人",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
updateman: commonLogic.appcommonhandle("更新人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
},
uiactions: {
},
},
main_grid: {
columns: {
ibizappeditorname: commonLogic.appcommonhandle("编辑器名称",null),
ibizappeditortype: commonLogic.appcommonhandle("编辑器类型",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
rditordescription: commonLogic.appcommonhandle("编辑器描述",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
editoramount_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
extendeditoramount_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
editorlist_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
ibizappeditor_opendocument: commonLogic.appcommonhandle("打开文档",null),
},
},
editorchart_chart: {
nodata:commonLogic.appcommonhandle("",null),
},
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),
},
deuiaction1: {
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),
},
},
editviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("保存",null),
tip: commonLogic.appcommonhandle("保存",null),
},
tbitem5: {
caption: commonLogic.appcommonhandle("保存并关闭",null),
tip: commonLogic.appcommonhandle("保存并关闭",null),
},
},
listviewtoolbar_toolbar: {
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZCustom_en_US_Base from './ibizcustom_en_US_base';
export default {
fields: {
createman: "建立人",
updatedate: "更新时间",
ibizcustomname: "自定义名称",
createdate: "建立时间",
ibizcustomid: "自定义标识",
updateman: "更新人",
},
};
\ No newline at end of file
function getLocaleResource(){
const IBIZCustom_en_US_OwnData = {};
const targetData = Object.assign(IBIZCustom_en_US_Base(), IBIZCustom_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: {
createman: commonLogic.appcommonhandle("建立人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
ibizcustomname: commonLogic.appcommonhandle("自定义名称",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
ibizcustomid: commonLogic.appcommonhandle("自定义标识",null),
updateman: commonLogic.appcommonhandle("更新人",null),
},
derules:{
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册