提交 176045f1 编写于 作者: ibizdev's avatar ibizdev

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

上级 3aed27fe
......@@ -533,6 +533,68 @@
}
]
},
{
"srfkey": "ORDERSTEP",
"emptytext": "未定义",
"codelisttype":"static",
"items": [
{
"id": "1",
"label": "发起人调整",
"text": "发起人调整",
"class":"",
"data":"",
"codename":"Item_1",
"value": "1",
"disabled": false
}
, {
"id": "5",
"label": "部门经理审核",
"text": "部门经理审核",
"class":"",
"data":"",
"codename":"Item_5",
"value": "5",
"disabled": false
}
, {
"id": "10",
"label": "财务经理审核",
"text": "财务经理审核",
"class":"",
"data":"",
"codename":"Item_10",
"value": "10",
"disabled": false
}
, {
"id": "20",
"label": "总经理审核",
"text": "总经理审核",
"class":"",
"data":"",
"codename":"Item_20",
"value": "20",
"disabled": false
}
, {
"id": "30",
"label": "财务总监审批",
"text": "财务总监审批",
"class":"",
"data":"",
"codename":"Item_30",
"value": "30",
"disabled": false
}
]
},
{
"srfkey": "SCODELIST_NUM",
"emptytext": "未定义",
......
......@@ -503,6 +503,14 @@
"viewname": "IBIZOrderSEditView3",
"viewtag": "3bbf72a3e5b59fed0dee362a9b1384a8"
},
"ibizorderwfdynaactionview": {
"title": "订单工作流操作视图",
"caption": "订单工作流操作视图",
"viewtype": "DEWFDYNAACTIONVIEW",
"viewmodule": "Sample",
"viewname": "IBIZOrderWFDynaActionView",
"viewtag": "3cc8edfb164f4b6f97b6275aa407c5cc"
},
"ibizorderdetailusr2gridview9": {
"title": "临时模式",
"caption": "临时模式",
......
......@@ -52,6 +52,7 @@ import CodeListService from "@/codelist/codelist-service";
import EntityService from '@/service/entity-service';
import { Vue, Component, Prop, Provide, Emit, Watch } from 'vue-property-decorator';
import { Environment } from '@/environments/environment';
import moment from "moment";
@Component({
})
......@@ -395,11 +396,11 @@ export default class AppDataUploadView extends Vue {
let reader = new FileReader();
reader.onload = (e:any) => {
let data = e.target.result;
this.workBookData = XLSX.read(data, {type: 'binary'});
this.workBookData = XLSX.read(data, {type: 'binary',cellDates: true});
let xlsxData = XLSX.utils.sheet_to_json(this.workBookData.Sheets[this.workBookData.SheetNames[0]]);
let list1 = this.getFirstRow(this.workBookData);
xlsxData = this.AddXlsxData(xlsxData, list1);
this.importDataArray = JSON.parse(JSON.stringify(xlsxData));
this.importDataArray = this.$util.deepCopy(xlsxData);
(this.$refs.inputUpLoad as any).value = '';
};
reader.readAsBinaryString(f);
......@@ -505,6 +506,11 @@ export default class AppDataUploadView extends Vue {
data.forEach((item:any) =>{
let curObject:any = {};
Object.keys(item).forEach((ele:any) => {
// todo XLSX读取时间为国际时间(东8区)+8H转为标准时间
if (item[ele] instanceof Date){
const tempDate:Date = item[ele];
item[ele] = moment(tempDate).add(8, 'h').format("YYYY-MM-DD HH:mm:ss");
}
if(this.allFieldMap.get(ele).codelist){
let codelistTag:string = this.allFieldMap.get(ele).codelist.tag;
let codelistIsNumber:boolean = this.allFieldMap.get(ele).codelist.isnumber;
......
......@@ -482,7 +482,7 @@ export default class AppFormDRUIPart extends Vue {
* @public
* @memberof AppFormDRUIPart
*/
public viewdataschange(){
public viewdataschange($event:any){
console.log((this.$t('components.appFormDRUIPart.change1') as string));
}
......
.app-icon-menus{
display: flex;
flex-wrap: wrap;
.el-card{
margin-left: 16px;
margin: 6px 8px;
.el-card__body{
padding: 0;
width: 200px;
......
......@@ -10,13 +10,20 @@
</dropdown>
</template>
<script lang = 'ts'>
import { Component, Vue } from 'vue-property-decorator';
import { Component, Vue, Inject } from 'vue-property-decorator';
import { localList } from '@locale/local-list';
@Component({})
export default class AppLang extends Vue {
/**
* 注入刷新行为
*
* @memberof AppLang
*/
@Inject() reload: any;
/**
* 本地语言资源
*
......@@ -55,6 +62,7 @@ export default class AppLang extends Vue {
const local: any = this.localList.find((_local: any) => Object.is(_local.type, $evnet));
this.title = local.name;
localStorage.setItem('local', $evnet);
this.reload();
}
}
......
......@@ -84,140 +84,142 @@
</template>
<script lang="ts">
import {Vue, Component, Prop, Model, Emit} from "vue-property-decorator";
import {Subject} from "rxjs";
import {Environment} from '@/environments/environment';
import moment from 'moment';
import {Vue, Component, Prop, Model, Emit} from "vue-property-decorator";
import {Environment} from '@/environments/environment';
import moment from 'moment';
@Component({})
export default class AppMessagePopover extends Vue {
@Component({})
export default class AppMessagePopover extends Vue {
// 是否显示小圆点
public showIsDot: any = false;
// 默认显示的tab页
public default_tab_pane: any = "first";
// 待办列表
public myTasks: any = [];
// 待办面板标签
public myTasksLabel: any = "待办";
// 待办面板显示条数
public taskShowCnt:number = 0;
// 消息列表
public myMsgs: any = [];
// 消息面板标签
public myMsgsLabel: any = "消息";
// 信息面板显示条数
public msgShowCnt:number = 0;
// 是否显示小圆点
public showIsDot: any = false;
// 默认显示的tab页
public default_tab_pane: any = "first";
// 待办列表
public myTasks: any = [];
// 待办面板标签
public myTasksLabel: any = "待办";
// 待办面板显示条数
public taskShowCnt:number = 0;
// 消息列表
public myMsgs: any = [];
// 消息面板标签
public myMsgsLabel: any = "消息";
// 信息面板显示条数
public msgShowCnt:number = 0;
/**
* vue创建
*/
created(): void {}
/**
* vue创建
*/
created(): void {}
/**
* vue挂载
*/
mounted(): void {
// 首次获取待办列表
this.getMyTasks();
// 定时器:每隔1分钟重新获取待办列表
const timer = setInterval(()=>{
this.getMyTasks();
},60000);
// 监听定时器,在vue销毁前清除定时器
this.$once('hook:beforeDestroy',()=>{
// 清除定时器
clearInterval(timer);
});
/**
* vue挂载
*/
mounted(): void {
if(!Environment.workflow){
return;
}
// 首次获取待办列表
this.getMyTasks();
// 定时器:每隔1分钟重新获取待办列表
const timer = setInterval(()=>{
this.getMyTasks();
},60000);
// 监听定时器,在vue销毁前清除定时器
this.$once('hook:beforeDestroy',()=>{
// 清除定时器
clearInterval(timer);
});
}
/**
* 获取待办列表
*/
public getMyTasks() {
let url: any = '/wfcore/mytasks';
this.$http.get(url).then((response: any) => {
if (response && response.status == 200) {
const data: any = response.data;
if (data && data.length > 0) {
this.myTasks = data;
this.showIsDot = true;
} else {
this.myTasks = [];
}
// 获取消息列表
this.getMyMsgs();
/**
* 获取待办列表
*/
public getMyTasks() {
let url: any = '/wfcore/mytasks';
this.$http.get(url).then((response: any) => {
if (response && response.status == 200) {
const data: any = response.data;
if (data && data.length > 0) {
this.myTasks = data;
this.showIsDot = true;
} else {
this.myTasks = [];
}
}).catch((error: any) => {
console.warn("加载数据错误");
})
}
/**
* 获取消息列表
*/
public getMyMsgs(){
// TODO:接口获取消息列表,这里用的待办数据
this.myMsgs = this.myTasks;
if (this.myMsgs.length > 0 && this.myTasks.length == 0) {
// 显示小圆点
this.showIsDot = true;
// 获取消息列表
this.getMyMsgs();
}
}
}).catch((error: any) => {
console.warn("加载数据错误");
})
}
/**
* 点击标签事件
*/
public handleTag(data: any) {
if (!data) return this.$message.error("未获取到标签内容");
// 拼接要打开的窗口地址
const baseUrl:any = Environment.BaseUrl;
const openUrl:any = baseUrl + `/wfcore/mytasks/${data.processDefinitionKey}/web/${data.processInstanceBusinessKey}/usertasks/${data.taskDefinitionKey}`;
// 打开新窗口
window.open(openUrl,'_blank');
/**
* 获取消息列表
*/
public getMyMsgs(){
// TODO:接口获取消息列表,这里用的待办数据
this.myMsgs = this.myTasks;
if (this.myMsgs.length > 0 && this.myTasks.length == 0) {
// 显示小圆点
this.showIsDot = true;
}
}
/**
* 销毁之前
*/
beforeDestroy(): void {
// 清空数据
this.showIsDot = false;
this.myTasks = [];
this.myMsgs = [];
}
/**
* 点击标签事件
*/
public handleTag(data: any) {
if (!data) return this.$message.error("未获取到标签内容");
// 拼接要打开的窗口地址
const baseUrl:any = Environment.BaseUrl;
const openUrl:any = baseUrl + `/wfcore/mytasks/${data.processDefinitionKey}/web/${data.processInstanceBusinessKey}/usertasks/${data.taskDefinitionKey}`;
// 打开新窗口
window.open(openUrl,'_blank');
}
/**
* 时间格式转换
*/
public formatDate(date: string, format: string) {
if(date && format) {
return moment(date).format(format);
}
return date;
}
/**
* 销毁之前
*/
beforeDestroy(): void {
// 清空数据
this.showIsDot = false;
this.myTasks = [];
this.myMsgs = [];
}
/**
* 加载更多
*/
public showMore(cnt: string) {
if(Object.is('taskShowCnt', cnt)) {
this.taskShowCnt + 10 < this.myTasks.length ? this.taskShowCnt += 10 : this.taskShowCnt += this.myTasks.length-this.taskShowCnt;
}
if(Object.is('msgShowCnt', cnt)) {
this.msgShowCnt + 10 < this.myMsgs.length ? this.msgShowCnt += 10 : this.msgShowCnt += this.myMsgs.length-this.msgShowCnt;
}
/**
* 时间格式转换
*/
public formatDate(date: string, format: string) {
if(date && format) {
return moment(date).format(format);
}
return date;
}
/**
* 弹出框 显示/隐藏 时显示条数初始化
*/
public initTabCnt() {
this.taskShowCnt = this.myTasks.length >= 10 ? 10 : this.myTasks.length;
this.msgShowCnt = this.myMsgs.length >= 10 ? 10 : this.myMsgs.length;
/**
* 加载更多
*/
public showMore(cnt: string) {
if(Object.is('taskShowCnt', cnt)) {
this.taskShowCnt + 10 < this.myTasks.length ? this.taskShowCnt += 10 : this.taskShowCnt += this.myTasks.length-this.taskShowCnt;
}
if(Object.is('msgShowCnt', cnt)) {
this.msgShowCnt + 10 < this.myMsgs.length ? this.msgShowCnt += 10 : this.msgShowCnt += this.myMsgs.length-this.msgShowCnt;
}
}
/**
* 弹出框 显示/隐藏 时显示条数初始化
*/
public initTabCnt() {
this.taskShowCnt = this.myTasks.length >= 10 ? 10 : this.myTasks.length;
this.msgShowCnt = this.myMsgs.length >= 10 ? 10 : this.myMsgs.length;
}
}
</script>
<style lang='less'>
......
......@@ -312,7 +312,9 @@ export default class AppPicker extends Vue {
if (value) {
this.items.push({text: newVal, value: value});
}
this.onSearch(newVal, null, false);
if(newVal && value){
this.onSearch(newVal, null, false);
}
}
}
......
......@@ -12,8 +12,8 @@
:filterable="filterable"
@on-open-change="onClick"
:placeholder="placeholder?placeholder:$t('components.dropDownListMpicker.placeholder')">
<i-option v-for="(item, index) in items" :key="index" :class="item.class" :value="item.value.toString()" :label="item.text">
<Checkbox :value = "(currentVal.indexOf(item.value.toString()))==-1?false:true">
<i-option v-for="(item, index) in items" :key="index" :class="item.class" :value="item.value ? item.value.toString():''" :label="item.text">
<Checkbox :value="(currentVal.indexOf(item.value ? item.value.toString() : '')) == -1 ? false : true">
{{Object.is(codelistType,'STATIC') ? $t('codelist.'+tag+'.'+item.value) : item.text}}
</Checkbox>
</i-option>
......
......@@ -394,7 +394,9 @@ export default class DropDownList extends Vue {
if(type === 'number'){
item.value = item.value.toString();
}else{
if(item.value.indexOf('.') == -1){
if(type == "null") {
this.valueType == "number" ? item.value = 0 : item.value = '';
}else if(item.value.indexOf('.') == -1){
item.value = parseInt(item.value);
}else{
item.value = parseFloat(item.value);
......
......@@ -68,7 +68,7 @@ export default class TabPageExp extends Vue {
public getCaption(caption: any, info: any): any {
return info && !Object.is(info, "")
? `${this.$t(caption)} - ${info}`
? `${this.$t(caption)} - ${this.$t(info)}`
: this.$t(caption);
}
......
......@@ -101,7 +101,7 @@ export default class EditViewEngine extends ViewEngine {
* @memberof EditViewEngine
*/
public onFormLoad(arg: any): void {
this.view.model.dataInfo = Object.is(arg.srfuf, '1') ? (this.majorPSDEField?arg[this.majorPSDEField]:arg.srfmajortext) : this.view.$t('app.local.new');
this.view.model.dataInfo = Object.is(arg.srfuf, '1') ? (this.majorPSDEField?arg[this.majorPSDEField]:arg.srfmajortext) : 'app.local.new';
this.setTabCaption(this.view.model.dataInfo,Object.is(arg.srfuf, '0'));
const newdata: boolean = !Object.is(arg.srfuf, '1');
......@@ -116,7 +116,7 @@ export default class EditViewEngine extends ViewEngine {
* @memberof EditViewEngine
*/
public onFormSave(arg: any): void {
this.view.model.dataInfo = Object.is(arg.srfuf, '1') ? (this.majorPSDEField?arg[this.majorPSDEField]:arg.srfmajortext) : this.view.$t('app.local.new');
this.view.model.dataInfo = Object.is(arg.srfuf, '1') ? (this.majorPSDEField?arg[this.majorPSDEField]:arg.srfmajortext) : 'app.local.new';
this.setTabCaption(this.view.model.dataInfo,Object.is(arg.srfuf, '0'));
const newdata: boolean = !Object.is(arg.srfuf, '1');
......@@ -200,12 +200,12 @@ export default class EditViewEngine extends ViewEngine {
}
// 解决表格视图标题问题
if(this.view.$tabPageExp && this.view.viewDefaultUsage){
this.view.$tabPageExp.setCurPageCaption(this.view.$t(viewdata.srfCaption), this.view.$t(viewdata.srfCaption), info);
this.view.$tabPageExp.setCurPageCaption(this.view.$t(viewdata.srfCaption), viewdata.srfCaption, info);
}
if(this.view.$route){
this.view.$route.meta.info = info;
}
this.view.model.srfCaption = `${this.view.$t(viewdata.srfCaption)}-${viewdata.dataInfo}`;
this.view.model.srfCaption = `${this.view.$t(viewdata.srfCaption)}-${this.view.$t(viewdata.dataInfo)}`;
this.view.initNavDataWithRoute(null,isNew);
}
}
......
......@@ -45,6 +45,8 @@ export const Environment = {
ibizlabtUrl: 'https://www.ibizlab.cn',
// ibiz论坛地址
ibizbbstUrl: 'https://bbs.ibizlab.cn',
// 是否启用工作流
workflow: false,
};
// 挂载外部配置文件
if ((window as any).Environment) {
......
......@@ -23,7 +23,7 @@ Object.assign(messages, {
// 自动根据浏览器系统语言设置语言
const navLang = localStorage.getItem('local') || navigator.language;
const localLang = (navLang === 'zh-CN' || (navLang === 'en-US' && messages.hasOwnProperty('en-US'))) ? navLang : false;
const localLang = (navLang === 'zh-CN' || (navLang === 'en-US' && messages.hasOwnProperty('en-US')) || (navLang === 'ti-US' && messages.hasOwnProperty('ti-US'))) ? navLang : false;
let lang: string = localLang || 'zh-CN';
vueApp.config.lang = lang
......
此差异已折叠。
import app_BO_CN_Base from './BO-CN-base';
function getLocaleResource(){
const app_BO_CN_OwnData = {};
const targetData = Object.assign(app_BO_CN_Base(), app_BO_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import codelist_BO_CN_Base from './codelist_BO_CN_base';
function getLocaleResource(){
const codelist_BO_CN_OwnData = {};
const targetData = Object.assign(codelist_BO_CN_Base(), codelist_BO_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)
},
ORDERENTITYDATA: {
"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)
},
ORDERSTEP: {
"1": commonLogic.appcommonhandle("发起人调整",null),
"5": commonLogic.appcommonhandle("部门经理审核",null),
"10": commonLogic.appcommonhandle("财务经理审核",null),
"20": commonLogic.appcommonhandle("总经理审核",null),
"30": commonLogic.appcommonhandle("财务总监审批",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)
},
CodeList43: {
"HTMLeditor": commonLogic.appcommonhandle("HTML编辑器",null),
"droplist": commonLogic.appcommonhandle("下拉列表框",null),
"picturecontrol": commonLogic.appcommonhandle("图片控件",null),
"textarea": commonLogic.appcommonhandle("多行输入框",null),
"picker": commonLogic.appcommonhandle("数据选择",null),
"fileupload": commonLogic.appcommonhandle("文件上传控件",null),
"textbox": commonLogic.appcommonhandle("文本框",null),
"label": commonLogic.appcommonhandle("标签",null),
"userdefined": 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)
},
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
......@@ -81,6 +81,14 @@ function getLocaleResourceBase(){
"step3": commonLogic.appcommonhandle("step3",null),
"empty": commonLogic.appcommonhandle("",null)
},
ORDERSTEP: {
"1": commonLogic.appcommonhandle("发起人调整",null),
"5": commonLogic.appcommonhandle("部门经理审核",null),
"10": commonLogic.appcommonhandle("财务经理审核",null),
"20": commonLogic.appcommonhandle("总经理审核",null),
"30": commonLogic.appcommonhandle("财务总监审批",null),
"empty": commonLogic.appcommonhandle("",null)
},
SCODELIST_NUM: {
"1": commonLogic.appcommonhandle("类型1",null),
"2": commonLogic.appcommonhandle("类型2",null),
......
......@@ -81,6 +81,14 @@ function getLocaleResourceBase(){
"step3": commonLogic.appcommonhandle("step3",null),
"empty": commonLogic.appcommonhandle("",null),
},
ORDERSTEP: {
"1": commonLogic.appcommonhandle("发起人调整",null),
"5": commonLogic.appcommonhandle("部门经理审核",null),
"10": commonLogic.appcommonhandle("财务经理审核",null),
"20": commonLogic.appcommonhandle("总经理审核",null),
"30": commonLogic.appcommonhandle("财务总监审批",null),
"empty": commonLogic.appcommonhandle("",null),
},
SCODELIST_NUM: {
"1": commonLogic.appcommonhandle("类型1",null),
"2": commonLogic.appcommonhandle("类型2",null),
......
import components_BO_CN_Base from './components_BO_CN_base';
function getLocaleResource(){
const components_BO_CN_OwnData = {};
const targetData = Object.assign(components_BO_CN_Base(), components_BO_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import DYNADASHBOARD_BO_CN_Base from './dynadashboard_BO_CN_base';
function getLocaleResource(){
const DYNADASHBOARD_BO_CN_OwnData = {};
const targetData = Object.assign(DYNADASHBOARD_BO_CN_Base(), DYNADASHBOARD_BO_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),
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZAccount_BO_CN_Base from './ibizaccount_BO_CN_base';
function getLocaleResource(){
const IBIZAccount_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZAccount_BO_CN_Base(), IBIZAccount_BO_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),
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZAPPCTRL_BO_CN_Base from './ibizappctrl_BO_CN_base';
function getLocaleResource(){
const IBIZAPPCTRL_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZAPPCTRL_BO_CN_Base(), IBIZAPPCTRL_BO_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),
},
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: {
deuiaction1: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
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_BO_CN_Base from './ibizappeditor_BO_CN_base';
function getLocaleResource(){
const IBIZAPPEDITOR_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZAPPEDITOR_BO_CN_Base(), IBIZAPPEDITOR_BO_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),
},
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),
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: {
},
},
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: {
deuiaction1: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
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 IBIZAPPEXTENDEDITOR_BO_CN_Base from './ibizappextendeditor_BO_CN_base';
function getLocaleResource(){
const IBIZAPPEXTENDEDITOR_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZAPPEXTENDEDITOR_BO_CN_Base(), IBIZAPPEXTENDEDITOR_BO_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),
updateman: commonLogic.appcommonhandle("更新人",null),
ibizappextendeditorname: commonLogic.appcommonhandle("扩展编辑器名称",null),
ibizappextendeditorid: commonLogic.appcommonhandle("扩展编辑器标识",null),
extensionflag: commonLogic.appcommonhandle("扩展标识",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
extendeditordescription: commonLogic.appcommonhandle("扩展编辑器描述",null),
amount: commonLogic.appcommonhandle("数量",null),
extendeditortype: commonLogic.appcommonhandle("扩展编辑器类型",null),
},
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),
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),
ibizappextendeditorname: commonLogic.appcommonhandle("扩展编辑器名称",null),
extendeditortype: commonLogic.appcommonhandle("扩展编辑器类型",null),
extensionflag: commonLogic.appcommonhandle("扩展标识",null),
extendeditordescription: commonLogic.appcommonhandle("扩展编辑器描述",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
ibizappextendeditorid: commonLogic.appcommonhandle("扩展编辑器标识",null),
amount: commonLogic.appcommonhandle("数量",null),
},
uiactions: {
},
},
main_grid: {
columns: {
ibizappextendeditorname: commonLogic.appcommonhandle("扩展编辑器名称",null),
extensionflag: commonLogic.appcommonhandle("扩展标识",null),
extendeditortype: commonLogic.appcommonhandle("扩展编辑器类型",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
extendeditordescription: commonLogic.appcommonhandle("扩展编辑器描述",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
extendeditorlist_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
ibizappextendeditor_opendocument: commonLogic.appcommonhandle("打开文档",null),
},
},
extendeditoramount_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
extendeditorchart_chart: {
nodata:commonLogic.appcommonhandle("",null),
},
default_searchform: {
details: {
formpage1: commonLogic.appcommonhandle("常规条件",null),
},
uiactions: {
},
},
listviewtoolbar_toolbar: {
},
editviewtoolbar_toolbar: {
deuiaction1: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
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 IBIZAPPVIEW_BO_CN_Base from './ibizappview_BO_CN_base';
function getLocaleResource(){
const IBIZAPPVIEW_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZAPPVIEW_BO_CN_Base(), IBIZAPPVIEW_BO_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),
createdate: commonLogic.appcommonhandle("建立时间",null),
ibizappviewname: commonLogic.appcommonhandle("应用视图名称",null),
ibizappviewid: commonLogic.appcommonhandle("应用视图标识",null),
updateman: commonLogic.appcommonhandle("更新人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
ibizappviewtype: commonLogic.appcommonhandle("应用视图类型",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
instanceaddress: commonLogic.appcommonhandle("示例地址",null),
viewdescription: commonLogic.appcommonhandle("视图描述",null),
amount: commonLogic.appcommonhandle("数量",null),
},
views: {
editview: {
caption: commonLogic.appcommonhandle("应用视图",null),
title: commonLogic.appcommonhandle("应用视图编辑视图",null),
},
gridview: {
caption: commonLogic.appcommonhandle("应用视图",null),
title: commonLogic.appcommonhandle("应用视图表格视图",null),
},
listview: {
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),
ibizappviewid: commonLogic.appcommonhandle("应用视图标识",null),
amount: commonLogic.appcommonhandle("数量",null),
ibizappviewname: commonLogic.appcommonhandle("应用视图名称",null),
ibizappviewtype: commonLogic.appcommonhandle("应用视图类型",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
instanceaddress: commonLogic.appcommonhandle("示例地址",null),
viewdescription: commonLogic.appcommonhandle("视图描述",null),
},
uiactions: {
},
},
main_grid: {
columns: {
ibizappviewname: commonLogic.appcommonhandle("应用视图名称",null),
ibizappviewtype: commonLogic.appcommonhandle("应用视图类型",null),
documentaddress: commonLogic.appcommonhandle("文档地址",null),
instanceaddress: commonLogic.appcommonhandle("示例地址",null),
viewdescription: commonLogic.appcommonhandle("视图描述",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
viewamount_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
viewlist_list: {
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
ibizappview_openinstance: commonLogic.appcommonhandle("打开示例",null),
ibizappview_opendocument: commonLogic.appcommonhandle("打开文档",null),
},
},
viewchart_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: {
deuiaction1: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
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 IBIZBOOK_BO_CN_Base from './ibizbook_BO_CN_base';
function getLocaleResource(){
const IBIZBOOK_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZBOOK_BO_CN_Base(), IBIZBOOK_BO_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
......@@ -640,6 +640,7 @@ function getLocaleResourceBase(){
tag: commonLogic.appcommonhandle("标签",null),
borrowway: commonLogic.appcommonhandle("借阅方式",null),
sailstate: commonLogic.appcommonhandle("图书销售状态",null),
lendouttime: commonLogic.appcommonhandle("借出日期",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
......
......@@ -640,6 +640,7 @@ function getLocaleResourceBase(){
tag: commonLogic.appcommonhandle("标签",null),
borrowway: commonLogic.appcommonhandle("借阅方式",null),
sailstate: commonLogic.appcommonhandle("图书销售状态",null),
lendouttime: commonLogic.appcommonhandle("借出日期",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
......
import IBIZCPU_BO_CN_Base from './ibizcpu_BO_CN_base';
function getLocaleResource(){
const IBIZCPU_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZCPU_BO_CN_Base(), IBIZCPU_BO_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: {
createdate: commonLogic.appcommonhandle("建立时间",null),
unit: commonLogic.appcommonhandle("单位",null),
createman: commonLogic.appcommonhandle("建立人",null),
ibizcpuid: commonLogic.appcommonhandle("处理器标识",null),
productuid: commonLogic.appcommonhandle("产品编号",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
updateman: commonLogic.appcommonhandle("更新人",null),
producer: commonLogic.appcommonhandle("生产厂商",null),
ibizhardwaretype: commonLogic.appcommonhandle("分组类型",null),
unitprice: commonLogic.appcommonhandle("单价",null),
ibizcpuname: commonLogic.appcommonhandle("名称",null),
},
views: {
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),
ibizcpuname: commonLogic.appcommonhandle("名称",null),
createman: commonLogic.appcommonhandle("建立人",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
updateman: commonLogic.appcommonhandle("更新人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
ibizcpuid: commonLogic.appcommonhandle("处理器标识",null),
},
uiactions: {
},
},
editviewtoolbar_toolbar: {
deuiaction1: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
tbitem3: {
caption: commonLogic.appcommonhandle("保存",null),
tip: commonLogic.appcommonhandle("保存",null),
},
tbitem5: {
caption: commonLogic.appcommonhandle("保存并关闭",null),
tip: commonLogic.appcommonhandle("保存并关闭",null),
},
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZCustom_BO_CN_Base from './ibizcustom_BO_CN_base';
function getLocaleResource(){
const IBIZCustom_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZCustom_BO_CN_Base(), IBIZCustom_BO_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),
ibizcustomname: commonLogic.appcommonhandle("自定义名称",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
ibizcustomid: commonLogic.appcommonhandle("自定义标识",null),
updateman: commonLogic.appcommonhandle("更新人",null),
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZCustomer_INTF_BO_CN_Base from './ibizcustomer-intf_BO_CN_base';
function getLocaleResource(){
const IBIZCustomer_INTF_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZCustomer_INTF_BO_CN_Base(), IBIZCustomer_INTF_BO_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),
sn: commonLogic.appcommonhandle("客户编号",null),
customeruid: commonLogic.appcommonhandle("客户编号",null),
orgid: commonLogic.appcommonhandle("ORGID",null),
createman: commonLogic.appcommonhandle("建立人",null),
updateman: commonLogic.appcommonhandle("更新人",null),
address: commonLogic.appcommonhandle("公司地址",null),
ibizcustomername: commonLogic.appcommonhandle("客户名称",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
ibizcustomerid: commonLogic.appcommonhandle("客户标识",null),
},
views: {
pickupview: {
caption: commonLogic.appcommonhandle("客户",null),
title: commonLogic.appcommonhandle("客户数据选择视图",null),
},
pickupgridview: {
caption: commonLogic.appcommonhandle("客户",null),
title: commonLogic.appcommonhandle("客户选择表格视图",null),
},
mpickupview: {
caption: commonLogic.appcommonhandle("客户",null),
title: commonLogic.appcommonhandle("客户数据多项选择视图",null),
},
},
main_grid: {
columns: {
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
default_searchform: {
details: {
formpage1: commonLogic.appcommonhandle("常规条件",null),
},
uiactions: {
},
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZCustomerMG_BO_CN_Base from './ibizcustomer-mg_BO_CN_base';
function getLocaleResource(){
const IBIZCustomerMG_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZCustomerMG_BO_CN_Base(), IBIZCustomerMG_BO_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: {
ibizcustomerid: commonLogic.appcommonhandle("客户标识",null),
ibizcustomername: commonLogic.appcommonhandle("客户名称",null),
bankaccountnum: commonLogic.appcommonhandle("开户银行号",null),
bankname: commonLogic.appcommonhandle("开户行",null),
address: commonLogic.appcommonhandle("公司地址",null),
customeruid: commonLogic.appcommonhandle("客户编号",null),
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZCustomer_BO_CN_Base from './ibizcustomer_BO_CN_base';
function getLocaleResource(){
const IBIZCustomer_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZCustomer_BO_CN_Base(), IBIZCustomer_BO_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),
sn: commonLogic.appcommonhandle("客户编号",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
customeruid: commonLogic.appcommonhandle("客户编号",null),
ibizcustomerid: commonLogic.appcommonhandle("客户标识",null),
address: commonLogic.appcommonhandle("公司地址",null),
ibizcustomername: commonLogic.appcommonhandle("客户名称",null),
updateman: commonLogic.appcommonhandle("更新人",null),
},
views: {
pickuptreeview: {
caption: commonLogic.appcommonhandle("客户",null),
title: commonLogic.appcommonhandle("客户选择树视图",null),
},
pickupgridview: {
caption: commonLogic.appcommonhandle("客户",null),
title: commonLogic.appcommonhandle("客户选择表格视图",null),
},
mpickupview: {
caption: commonLogic.appcommonhandle("客户",null),
title: commonLogic.appcommonhandle("客户数据多项选择视图",null),
},
editview: {
caption: commonLogic.appcommonhandle("客户",null),
title: commonLogic.appcommonhandle("客户编辑视图",null),
},
usr2mpickupview: {
caption: commonLogic.appcommonhandle("客户",null),
title: commonLogic.appcommonhandle("客户实体数据多项选择视图(树视图)",null),
},
usr2pickupview: {
caption: commonLogic.appcommonhandle("客户",null),
title: commonLogic.appcommonhandle("客户实体数据选择视图(树视图)",null),
},
usr2editview: {
caption: commonLogic.appcommonhandle("客户",null),
title: commonLogic.appcommonhandle("客户编辑视图",null),
},
usr2gridview: {
caption: commonLogic.appcommonhandle("客户",null),
title: commonLogic.appcommonhandle("客户表格视图",null),
},
pickupview: {
caption: commonLogic.appcommonhandle("客户",null),
title: commonLogic.appcommonhandle("客户数据选择视图",null),
},
},
main_form: {
details: {
group1: commonLogic.appcommonhandle("客户基本信息",null),
druipart1: commonLogic.appcommonhandle("",null),
grouppanel1: 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),
ibizcustomername: commonLogic.appcommonhandle("客户名称",null),
address: commonLogic.appcommonhandle("公司地址",null),
customeruid: commonLogic.appcommonhandle("客户编号",null),
ibizcustomerid: commonLogic.appcommonhandle("客户标识",null),
createman: commonLogic.appcommonhandle("建立人",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
updateman: commonLogic.appcommonhandle("更新人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
},
uiactions: {
},
},
adddataform_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),
ibizcustomername: commonLogic.appcommonhandle("客户名称",null),
address: commonLogic.appcommonhandle("公司地址",null),
ibizcustomerid: commonLogic.appcommonhandle("客户标识",null),
customeruid: commonLogic.appcommonhandle("客户编号",null),
},
uiactions: {
},
},
main_grid: {
columns: {
customeruid: commonLogic.appcommonhandle("客户编号",null),
ibizcustomername: commonLogic.appcommonhandle("客户名称",null),
address: commonLogic.appcommonhandle("公司地址",null),
updateman: commonLogic.appcommonhandle("更新人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
adddatagrid_grid: {
columns: {
customeruid: commonLogic.appcommonhandle("客户编号",null),
ibizcustomername: commonLogic.appcommonhandle("客户名称",null),
address: commonLogic.appcommonhandle("公司地址",null),
updateman: commonLogic.appcommonhandle("更新人",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
},
nodata:commonLogic.appcommonhandle("",null),
uiactions: {
},
},
default_searchform: {
details: {
formpage1: commonLogic.appcommonhandle("名称",null),
n_ibizcustomername_like: commonLogic.appcommonhandle("客户名称(%)",null),
},
uiactions: {
},
},
editviewtoolbar_toolbar: {
deuiaction1: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
tbitem3: {
caption: commonLogic.appcommonhandle("保存",null),
tip: commonLogic.appcommonhandle("保存",null),
},
tbitem5: {
caption: commonLogic.appcommonhandle("保存并关闭",null),
tip: commonLogic.appcommonhandle("保存并关闭",null),
},
},
usr2gridviewtoolbar_toolbar: {
tbitem3: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
deuiaction2: {
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),
},
deuiaction3: {
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),
},
deuiaction1: {
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),
},
},
usr2editviewtoolbar_toolbar: {
deuiaction1: {
caption: commonLogic.appcommonhandle("新建",null),
tip: commonLogic.appcommonhandle("新建",null),
},
tbitem3: {
caption: commonLogic.appcommonhandle("保存",null),
tip: commonLogic.appcommonhandle("保存",null),
},
tbitem5: {
caption: commonLogic.appcommonhandle("保存并关闭",null),
tip: commonLogic.appcommonhandle("保存并关闭",null),
},
},
usr_treeview: {
nodata:commonLogic.appcommonhandle("",null),
nodes: {
root: commonLogic.appcommonhandle("默认根节点",null),
personname: commonLogic.appcommonhandle("客户名称",null),
},
uiactions: {
},
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZHardware_BO_CN_Base from './ibizhardware_BO_CN_base';
function getLocaleResource(){
const IBIZHardware_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZHardware_BO_CN_Base(), IBIZHardware_BO_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import IBIZOrderDetail_BO_CN_Base from './ibizorder-detail_BO_CN_base';
function getLocaleResource(){
const IBIZOrderDetail_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZOrderDetail_BO_CN_Base(), IBIZOrderDetail_BO_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import IBIZOrderType_BO_CN_Base from './ibizorder-type_BO_CN_base';
function getLocaleResource(){
const IBIZOrderType_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZOrderType_BO_CN_Base(), IBIZOrderType_BO_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import IBIZOrder_BO_CN_Base from './ibizorder_BO_CN_base';
function getLocaleResource(){
const IBIZOrder_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZOrder_BO_CN_Base(), IBIZOrder_BO_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
......@@ -87,6 +87,10 @@ function getLocaleResourceBase(){
caption: commonLogic.appcommonhandle("Entity Edit View (pagination relations)",null),
title: commonLogic.appcommonhandle("实体编辑视图(分页关系)",null),
},
wfdynaactionview: {
caption: commonLogic.appcommonhandle("订单工作流操作视图",null),
title: commonLogic.appcommonhandle("订单工作流操作视图",null),
},
sf1gridview: {
caption: commonLogic.appcommonhandle("Search Form",null),
title: commonLogic.appcommonhandle("搜索表单内置功能",null),
......
......@@ -87,6 +87,10 @@ function getLocaleResourceBase(){
caption: commonLogic.appcommonhandle("实体编辑视图(分页关系)",null),
title: commonLogic.appcommonhandle("实体编辑视图(分页关系)",null),
},
wfdynaactionview: {
caption: commonLogic.appcommonhandle("订单工作流操作视图",null),
title: commonLogic.appcommonhandle("订单工作流操作视图",null),
},
sf1gridview: {
caption: commonLogic.appcommonhandle("搜索表单内置功能",null),
title: commonLogic.appcommonhandle("搜索表单内置功能",null),
......
import IBIZSample_BO_CN_Base from './ibizsample_BO_CN_base';
function getLocaleResource(){
const IBIZSample_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZSample_BO_CN_Base(), IBIZSample_BO_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: {
createdate: commonLogic.appcommonhandle("建立时间",null),
oslink4: commonLogic.appcommonhandle("其他样式链接4",null),
title1: commonLogic.appcommonhandle("分组标题1",null),
updateman: commonLogic.appcommonhandle("更新人",null),
ibizsamplename: commonLogic.appcommonhandle("示例数据库名称",null),
oslink3: commonLogic.appcommonhandle("其他样式链接3",null),
link1: commonLogic.appcommonhandle("链接1",null),
ibizsampleid: commonLogic.appcommonhandle("示例数据库标识",null),
title6: commonLogic.appcommonhandle("分组标题6",null),
link6: commonLogic.appcommonhandle("链接6",null),
title5: commonLogic.appcommonhandle("分组标题5",null),
title4: commonLogic.appcommonhandle("分组标题4",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
oslink1: commonLogic.appcommonhandle("其他样式链接1",null),
oslink5: commonLogic.appcommonhandle("其他样式链接5",null),
oslink6: commonLogic.appcommonhandle("其他样式链接6",null),
link5: commonLogic.appcommonhandle("链接5",null),
link3: commonLogic.appcommonhandle("链接3",null),
title2: commonLogic.appcommonhandle("分组标题2",null),
oslink2: commonLogic.appcommonhandle("其他样式链接2",null),
title3: commonLogic.appcommonhandle("分组标题3",null),
link4: commonLogic.appcommonhandle("链接4",null),
link2: commonLogic.appcommonhandle("链接2",null),
sampletype: commonLogic.appcommonhandle("示例类型",null),
createman: commonLogic.appcommonhandle("建立人",null),
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZSample0001_BO_CN_Base from './ibizsample0001_BO_CN_base';
function getLocaleResource(){
const IBIZSample0001_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZSample0001_BO_CN_Base(), IBIZSample0001_BO_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import IBIZSample0002_BO_CN_Base from './ibizsample0002_BO_CN_base';
function getLocaleResource(){
const IBIZSample0002_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZSample0002_BO_CN_Base(), IBIZSample0002_BO_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import IBIZSample0003_BO_CN_Base from './ibizsample0003_BO_CN_base';
function getLocaleResource(){
const IBIZSample0003_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZSample0003_BO_CN_Base(), IBIZSample0003_BO_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import IBIZSample0004_BO_CN_Base from './ibizsample0004_BO_CN_base';
function getLocaleResource(){
const IBIZSample0004_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZSample0004_BO_CN_Base(), IBIZSample0004_BO_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: {
memo: commonLogic.appcommonhandle("备注",null),
createdate: commonLogic.appcommonhandle("建立时间",null),
wfmvstate: commonLogic.appcommonhandle("状态",null),
wfmvtype: commonLogic.appcommonhandle("订单类型",null),
updateman: commonLogic.appcommonhandle("更新人",null),
createman: commonLogic.appcommonhandle("建立人",null),
mvdate: commonLogic.appcommonhandle("订单时间",null),
updatedate: commonLogic.appcommonhandle("更新时间",null),
wfmvstep: commonLogic.appcommonhandle("工作流步骤",null),
wfversion: commonLogic.appcommonhandle("工作流版本",null),
wfstate: commonLogic.appcommonhandle("工作流步骤",null),
ibizsample0004name: commonLogic.appcommonhandle("名称",null),
wfinstanceid: commonLogic.appcommonhandle("工作流实例",null),
ibizsample0004id: commonLogic.appcommonhandle("多版本流程标识",null),
je: commonLogic.appcommonhandle("订单金额",null),
},
};
return data;
}
export default getLocaleResourceBase;
\ No newline at end of file
import IBIZSample0005_BO_CN_Base from './ibizsample0005_BO_CN_base';
function getLocaleResource(){
const IBIZSample0005_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZSample0005_BO_CN_Base(), IBIZSample0005_BO_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
import IBIZSample0006_BO_CN_Base from './ibizsample0006_BO_CN_base';
function getLocaleResource(){
const IBIZSample0006_BO_CN_OwnData = {};
const targetData = Object.assign(IBIZSample0006_BO_CN_Base(), IBIZSample0006_BO_CN_OwnData);
return targetData;
}
export default getLocaleResource;
\ No newline at end of file
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
此差异已折叠。
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册