提交 6d5ed466 编写于 作者: ibizdev's avatar ibizdev

ibiz4j 发布系统代码

上级 c62dd8cb
...@@ -77,6 +77,7 @@ import IBizGroupSelect from './components/ibiz-group-select/ibiz-group-select.vu ...@@ -77,6 +77,7 @@ import IBizGroupSelect from './components/ibiz-group-select/ibiz-group-select.vu
import IBizGroupPicker from './components/ibiz-group-picker/ibiz-group-picker.vue' import IBizGroupPicker from './components/ibiz-group-picker/ibiz-group-picker.vue'
import AppWFApproval from './components/app-wf-approval/app-wf-approval.vue' import AppWFApproval from './components/app-wf-approval/app-wf-approval.vue'
import Breadcrumb from './components/app-breadcrumb/app-breadcrumb.vue'; import Breadcrumb from './components/app-breadcrumb/app-breadcrumb.vue';
import AppTransfer from './components/app-transfer/app-transfer.vue'
// 全局挂载UI实体服务注册中心 // 全局挂载UI实体服务注册中心
window['uiServiceRegister'] = uiServiceRegister; window['uiServiceRegister'] = uiServiceRegister;
...@@ -163,5 +164,6 @@ export const AppComponents = { ...@@ -163,5 +164,6 @@ export const AppComponents = {
v.component('ibiz-group-picker',IBizGroupPicker); v.component('ibiz-group-picker',IBizGroupPicker);
v.component('app-wf-approval',AppWFApproval); v.component('app-wf-approval',AppWFApproval);
v.component('app-breadcrumb',Breadcrumb); v.component('app-breadcrumb',Breadcrumb);
v.component('app-transfer',AppTransfer);
}, },
}; };
\ No newline at end of file
...@@ -100,12 +100,20 @@ export default class AppAutocomplete extends Vue { ...@@ -100,12 +100,20 @@ export default class AppAutocomplete extends Vue {
@Prop() public name!: string; @Prop() public name!: string;
/** /**
* 编辑器参数 * 局部上下文导航参数
* *
* @type {string} * @type {any}
* @memberof AppAutocomplete * @memberof AppAutocomplete
*/ */
@Prop() public itemParam?: any; @Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {any}
* @memberof AppAutocomplete
*/
@Prop() public localParam!:any;
/** /**
* 值项名称 * 值项名称
...@@ -119,7 +127,7 @@ export default class AppAutocomplete extends Vue { ...@@ -119,7 +127,7 @@ export default class AppAutocomplete extends Vue {
* 值 * 值
* *
* @type {*} * @type {*}
* @memberof AppPicker * @memberof AppAutocomplete
*/ */
@Model('change') public value?: any; @Model('change') public value?: any;
...@@ -127,7 +135,7 @@ export default class AppAutocomplete extends Vue { ...@@ -127,7 +135,7 @@ export default class AppAutocomplete extends Vue {
* 当前值 * 当前值
* *
* @type {string} * @type {string}
* @memberof AppPicker * @memberof AppAutocomplete
*/ */
public curvalue: string = ''; public curvalue: string = '';
...@@ -160,7 +168,7 @@ export default class AppAutocomplete extends Vue { ...@@ -160,7 +168,7 @@ export default class AppAutocomplete extends Vue {
* *
* @param {*} newVal * @param {*} newVal
* @param {*} oldVal * @param {*} oldVal
* @memberof AppPicker * @memberof AppAutocomplete
*/ */
@Watch('value') @Watch('value')
public onValueChange(newVal: any, oldVal: any) { public onValueChange(newVal: any, oldVal: any) {
...@@ -277,19 +285,19 @@ export default class AppAutocomplete extends Vue { ...@@ -277,19 +285,19 @@ export default class AppAutocomplete extends Vue {
*/ */
public handlePublicParams(arg: any): boolean { public handlePublicParams(arg: any): boolean {
if (!this.data) { if (!this.data) {
this.$Notice.error({ title: (this.$t('components.appPicker.error') as any), desc: (this.$t('components.appPicker.formdataException') as any) }); this.$Notice.error({ title: (this.$t('components.AppAutocomplete.error') as any), desc: (this.$t('components.AppAutocomplete.formdataException') as any) });
return false; return false;
} }
// 合并表单参数 // 合并表单参数
arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {}; arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {};
arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {}; arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {};
// 附加参数处理 // 附加参数处理
if (this.itemParam && this.itemParam.context) { if (this.localContext && Object.keys(this.localContext).length >0) {
let _context = this.$util.formatData(this.data,arg.context,this.itemParam.context); let _context = this.$util.computedNavData(this.data,arg.context,arg.param,this.localContext);
Object.assign(arg.context,_context); Object.assign(arg.context,_context);
} }
if (this.itemParam && this.itemParam.param) { if (this.localParam && Object.keys(this.localParam).length >0) {
let _param = this.$util.formatData(this.data,arg.param,this.itemParam.param); let _param = this.$util.computedNavData(this.data,arg.param,arg.param,this.localParam);
Object.assign(arg.param,_param); Object.assign(arg.param,_param);
} }
return true; return true;
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
:key="item.path" :key="item.path"
> >
<span <span
v-if="item.redirect === 'noredirect' || index === breadcrumbs.length-1" v-if="index === breadcrumbs.length-1"
class="no-redirect" class="no-redirect"
>{{ $t(item.meta.caption) }}</span> >{{ $t(item.meta.caption) }}</span>
<a <a
...@@ -22,64 +22,57 @@ ...@@ -22,64 +22,57 @@
</template> </template>
<script lang="ts"> <script lang="ts">
import { compile } from 'path-to-regexp'
import { Component, Vue, Watch, Prop } from 'vue-property-decorator' import { Component, Vue, Watch, Prop } from 'vue-property-decorator'
import { RouteRecord, Route } from 'vue-router' import { RouteRecord, Route } from 'vue-router'
@Component({ @Component({
name: 'Breadcrumb'
}) })
export default class extends Vue { export default class Breadcrumb extends Vue {
private breadcrumbs: RouteRecord[] = []
private breadcrumbs: RouteRecord[] = []; //面包屑列表
@Prop() public defPSAppView?: any; @Prop() public defPSAppView: any; //默认视图
/**
* 监听路由
*
* @memberof Breadcrumb
*/
@Watch('$route') @Watch('$route')
private onRouteChange(route: Route) { private onRouteChange(route: Route) {
// if you go to the redirect page, do not update the breadcrumbs
if (route.path.startsWith('/redirect/')) {
return
}
this.getBreadcrumb() this.getBreadcrumb()
} }
/**
* vue 生命周期
*
* @memberof Breadcrumb
*/
created() { created() {
this.getBreadcrumb() this.getBreadcrumb()
} }
/**
* 获取面包屑数据
*
* @memberof Breadcrumb
*/
private getBreadcrumb() { private getBreadcrumb() {
let matched = this.$route.matched.filter((item) => item.meta && item.meta.caption) this.breadcrumbs = this.$route.matched.filter((item) => {
const first = matched[0] return item.meta && item.meta.caption
if (!this.isDashboard(first)) {
matched = [{ path: "/index/:index?", meta: {
caption: 'app.views.index.caption',
viewType: 'APPINDEX',
parameters: [
{ pathName: 'index', parameterName: 'index' },
],
requireAuth: true, } } as RouteRecord].concat(matched)
}
this.breadcrumbs = matched.filter((item) => {
return item.meta && item.meta.caption && item.meta.breadcrumb !== false
}) })
if(this.defPSAppView){
/**如果配置了默认视图,给面包屑第一级赋值默认视图为首页 */
} }
private isDashboard(route: RouteRecord) {
const name = route && route.meta.parameters[0].pathName;
if (!name) {
return false
}
return name.trim().toLocaleLowerCase() === 'index'.toLocaleLowerCase()
}
private pathCompile(item: any) {
const { params, path, query } = item;
return { params, path, query };
} }
/**
* 单机面包屑
*
* @memberof Breadcrumb
*/
private handleLink(item: any) { private handleLink(item: any) {
this.$router.push(this.pathCompile(item)).catch(err => { this.$router.push(item).catch(err => {
console.warn(err); console.warn(err);
}); });
} }
......
...@@ -57,23 +57,31 @@ export default class AppCheckBox extends Vue { ...@@ -57,23 +57,31 @@ export default class AppCheckBox extends Vue {
* 传入表单数据 * 传入表单数据
* *
* @type {*} * @type {*}
* @memberof DropDownList * @memberof AppCheckBox
*/ */
@Prop() public data?: any; @Prop() public data?: any;
/** /**
* 传入额外参数 * 局部上下文导航参数
* *
* @type {*} * @type {any}
* @memberof DropDownList * @memberof AppCheckBox
*/
@Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {any}
* @memberof AppCheckBox
*/ */
@Prop() public itemParam?: any; @Prop() public localParam!:any;
/** /**
* 视图上下文 * 视图上下文
* *
* @type {*} * @type {*}
* @memberof AppAutocomplete * @memberof AppCheckBox
*/ */
@Prop() public context!: any; @Prop() public context!: any;
...@@ -81,7 +89,7 @@ export default class AppCheckBox extends Vue { ...@@ -81,7 +89,7 @@ export default class AppCheckBox extends Vue {
* 视图参数 * 视图参数
* *
* @type {*} * @type {*}
* @memberof AppFormDRUIPart * @memberof AppCheckBox
*/ */
@Prop() public viewparams!: any; @Prop() public viewparams!: any;
...@@ -203,19 +211,19 @@ export default class AppCheckBox extends Vue { ...@@ -203,19 +211,19 @@ export default class AppCheckBox extends Vue {
* *
* @param {*} arg * @param {*} arg
* @returns * @returns
* @memberof DropDownList * @memberof AppCheckBox
*/ */
public handlePublicParams(arg: any) { public handlePublicParams(arg: any) {
// 合并表单参数 // 合并表单参数
arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {}; arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {};
arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {}; arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {};
// 附加参数处理 // 附加参数处理
if (this.itemParam && this.itemParam.context) { if (this.localContext && Object.keys(this.localContext).length >0) {
let _context = this.$util.formatData(this.data,arg.context,this.itemParam.context); let _context = this.$util.computedNavData(this.data,arg.context,arg.param,this.localContext);
Object.assign(arg.context,_context); Object.assign(arg.context,_context);
} }
if (this.itemParam && this.itemParam.param) { if (this.localParam && Object.keys(this.localParam).length >0) {
let _param = this.$util.formatData(this.data,arg.param,this.itemParam.param); let _param = this.$util.computedNavData(this.data,arg.param,arg.param,this.localParam);
Object.assign(arg.param,_param); Object.assign(arg.param,_param);
} }
} }
...@@ -253,7 +261,7 @@ export default class AppCheckBox extends Vue { ...@@ -253,7 +261,7 @@ export default class AppCheckBox extends Vue {
/** /**
* 监听表单数据变化 * 监听表单数据变化
* *
* @memberof AppOrgSelect * @memberof AppCheckBox
*/ */
@Watch('data',{immediate:true,deep:true}) @Watch('data',{immediate:true,deep:true})
onDataChange(newVal: any, oldVal: any) { onDataChange(newVal: any, oldVal: any) {
......
...@@ -62,7 +62,7 @@ export default class AppEmbedPicker extends Vue { ...@@ -62,7 +62,7 @@ export default class AppEmbedPicker extends Vue {
* 表单数据 * 表单数据
* *
* @type {*} * @type {*}
* @memberof AppPicker * @memberof AppEmbedPicker
*/ */
@Prop() public data!: any; @Prop() public data!: any;
...@@ -95,7 +95,7 @@ export default class AppEmbedPicker extends Vue { ...@@ -95,7 +95,7 @@ export default class AppEmbedPicker extends Vue {
* 值项名称 * 值项名称
* *
* @type {string} * @type {string}
* @memberof AppPicker * @memberof AppEmbedPicker
*/ */
@Prop() public valueItem?: string; @Prop() public valueItem?: string;
...@@ -103,7 +103,7 @@ export default class AppEmbedPicker extends Vue { ...@@ -103,7 +103,7 @@ export default class AppEmbedPicker extends Vue {
* 关联视图名称 * 关联视图名称
* *
* @type {string} * @type {string}
* @memberof AppPicker * @memberof AppEmbedPicker
*/ */
@Prop() public refviewname?: string; @Prop() public refviewname?: string;
...@@ -127,17 +127,25 @@ export default class AppEmbedPicker extends Vue { ...@@ -127,17 +127,25 @@ export default class AppEmbedPicker extends Vue {
* 属性项名称 * 属性项名称
* *
* @type {string} * @type {string}
* @memberof AppPicker * @memberof AppEmbedPicker
*/ */
@Prop() public name!: string; @Prop() public name!: string;
/** /**
* 关联视图参数 * 局部上下文导航参数
* *
* @type {*} * @type {any}
* @memberof AppEmbedPicker * @memberof AppEmbedPicker
*/ */
@Prop() public itemParam: any; @Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {any}
* @memberof AppEmbedPicker
*/
@Prop() public localParam!:any;
/** /**
* 是否忽略之变化 * 是否忽略之变化
...@@ -160,8 +168,8 @@ export default class AppEmbedPicker extends Vue { ...@@ -160,8 +168,8 @@ export default class AppEmbedPicker extends Vue {
* *
* @memberof AppEmbedPicker * @memberof AppEmbedPicker
*/ */
public setViewParam(activeData: any) { public setViewParam() {
if (!this.itemParam || !activeData) { if (!this.data) {
return; return;
} }
let arg: any = {}; let arg: any = {};
...@@ -169,17 +177,13 @@ export default class AppEmbedPicker extends Vue { ...@@ -169,17 +177,13 @@ export default class AppEmbedPicker extends Vue {
let param: any = JSON.parse(JSON.stringify(this.viewparams)); let param: any = JSON.parse(JSON.stringify(this.viewparams));
let context: any = JSON.parse(JSON.stringify(this.context)); let context: any = JSON.parse(JSON.stringify(this.context));
// 附加参数处理 // 附加参数处理
if (this.itemParam.context) { if (this.localContext && Object.keys(this.localContext).length >0) {
let _context = this.$util.formatData(activeData,context,this.itemParam.context); let _context = this.$util.computedNavData(this.data,arg.context,arg.param,this.localContext);
Object.assign(context,_context); Object.assign(arg.context,_context);
}
if (this.itemParam.param) {
let _param = this.$util.formatData(activeData,param,this.itemParam.param);
Object.assign(param,_param);
} }
if (this.itemParam.parentdata) { if (this.localParam && Object.keys(this.localParam).length >0) {
let _parentdata = this.$util.formatData(activeData,param,this.itemParam.parentdata); let _param = this.$util.computedNavData(this.data,arg.param,arg.param,this.localParam);
Object.assign(param,_parentdata); Object.assign(arg.param,_param);
} }
this.viewdata = JSON.stringify(context); this.viewdata = JSON.stringify(context);
this.viewparam = JSON.stringify(param); this.viewparam = JSON.stringify(param);
...@@ -196,7 +200,7 @@ export default class AppEmbedPicker extends Vue { ...@@ -196,7 +200,7 @@ export default class AppEmbedPicker extends Vue {
onActivedataChange(newVal: any, oldVal: any) { onActivedataChange(newVal: any, oldVal: any) {
const newFormData: any = JSON.parse(newVal); const newFormData: any = JSON.parse(newVal);
const oldDormData: any = JSON.parse(oldVal); const oldDormData: any = JSON.parse(oldVal);
this.setViewParam(newFormData); this.setViewParam();
if (!this.refreshitems || this.ignorefieldvaluechange) { if (!this.refreshitems || this.ignorefieldvaluechange) {
return; return;
} }
...@@ -215,7 +219,7 @@ export default class AppEmbedPicker extends Vue { ...@@ -215,7 +219,7 @@ export default class AppEmbedPicker extends Vue {
if(this.formState) { if(this.formState) {
this.formStateEvent = this.formState.subscribe(({ tag, action, data }) => { this.formStateEvent = this.formState.subscribe(({ tag, action, data }) => {
if (Object.is('load', action)) { if (Object.is('load', action)) {
this.setViewParam(JSON.parse(this.data)); this.setViewParam();
} }
}); });
} }
......
...@@ -45,12 +45,20 @@ export default class AppMpicker extends Vue { ...@@ -45,12 +45,20 @@ export default class AppMpicker extends Vue {
@Prop() curvalue?: any; @Prop() curvalue?: any;
/** /**
* 表单项参数 * 局部上下文导航参数
* *
* @type {any} * @type {any}
* @memberof AppPicker * @memberof AppMpicker
*/
@Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {any}
* @memberof AppMpicker
*/ */
@Prop() public itemParam: any; @Prop() public localParam!:any;
/** /**
* 表单项名称 * 表单项名称
...@@ -61,7 +69,7 @@ export default class AppMpicker extends Vue { ...@@ -61,7 +69,7 @@ export default class AppMpicker extends Vue {
* 视图上下文 * 视图上下文
* *
* @type {*} * @type {*}
* @memberof AppFormDRUIPart * @memberof AppMpicker
*/ */
@Prop() public context!: any; @Prop() public context!: any;
...@@ -69,7 +77,7 @@ export default class AppMpicker extends Vue { ...@@ -69,7 +77,7 @@ export default class AppMpicker extends Vue {
* 视图参数 * 视图参数
* *
* @type {*} * @type {*}
* @memberof AppFormDRUIPart * @memberof AppMpicker
*/ */
@Prop() public viewparams!: any; @Prop() public viewparams!: any;
...@@ -77,7 +85,7 @@ export default class AppMpicker extends Vue { ...@@ -77,7 +85,7 @@ export default class AppMpicker extends Vue {
* AC参数 * AC参数
* *
* @type {*} * @type {*}
* @memberof AppFormDRUIPart * @memberof AppMpicker
*/ */
@Prop({default: () => {}}) public acParams?: any; @Prop({default: () => {}}) public acParams?: any;
...@@ -85,7 +93,7 @@ export default class AppMpicker extends Vue { ...@@ -85,7 +93,7 @@ export default class AppMpicker extends Vue {
* 应用实体主信息属性名称 * 应用实体主信息属性名称
* *
* @type {string} * @type {string}
* @memberof AppAutocomplete * @memberof AppMpicker
*/ */
@Prop({default: 'srfmajortext'}) public deMajorField!: string; @Prop({default: 'srfmajortext'}) public deMajorField!: string;
...@@ -93,7 +101,7 @@ export default class AppMpicker extends Vue { ...@@ -93,7 +101,7 @@ export default class AppMpicker extends Vue {
* 应用实体主键属性名称 * 应用实体主键属性名称
* *
* @type {string} * @type {string}
* @memberof AppAutocomplete * @memberof AppMpicker
*/ */
@Prop({default: 'srfkey'}) public deKeyField!: string; @Prop({default: 'srfkey'}) public deKeyField!: string;
...@@ -101,7 +109,7 @@ export default class AppMpicker extends Vue { ...@@ -101,7 +109,7 @@ export default class AppMpicker extends Vue {
* 表单服务 * 表单服务
* *
* @type {*} * @type {*}
* @memberof AppFormDRUIPart * @memberof AppMpicker
*/ */
@Prop() public service?: any; @Prop() public service?: any;
...@@ -242,19 +250,19 @@ export default class AppMpicker extends Vue { ...@@ -242,19 +250,19 @@ export default class AppMpicker extends Vue {
*/ */
public handlePublicParams(arg: any): boolean { public handlePublicParams(arg: any): boolean {
if (!this.activeData) { if (!this.activeData) {
this.$Notice.error({ title: (this.$t('components.appPicker.error') as any), desc: (this.$t('components.appPicker.formdataException') as any) }); this.$Notice.error({ title: (this.$t('components.AppMpicker.error') as any), desc: (this.$t('components.AppMpicker.formdataException') as any) });
return false; return false;
} }
// 合并表单参数 // 合并表单参数
arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {}; arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {};
arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {}; arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {};
// 附加参数处理 // 附加参数处理
if (this.itemParam && this.itemParam.context) { if (this.localContext && Object.keys(this.localContext).length >0) {
let _context = this.$util.formatData(this.activeData,arg.context,this.itemParam.context); let _context = this.$util.computedNavData(this.activeData,arg.context,arg.param,this.localContext);
Object.assign(arg.context,_context); Object.assign(arg.context,_context);
} }
if (this.itemParam && this.itemParam.param) { if (this.localParam && Object.keys(this.localParam).length >0) {
let _param = this.$util.formatData(this.activeData,arg.param,this.itemParam.param); let _param = this.$util.computedNavData(this.activeData,arg.param,arg.param,this.localParam);
Object.assign(arg.param,_param); Object.assign(arg.param,_param);
} }
return true; return true;
......
<template> <template>
<div class="app-picker-select-view"> <div class="app-picker-select-view">
<Dropdown :visible="visible" trigger="custom" style="left:0px;width: 100%" @on-clickoutside="() => {triggerMenu(false);}" > <Dropdown :visible="visible" trigger="custom" style="left:0px;width: 100%" @on-clickoutside="() => {triggerMenu(false);}" >
<Input v-if="isSingleSelect" v-model="queryValue" class="tree-input" type="text" :placeholder="placeholder ? placeholder : $t('components.appPickerSelectView.placeholder')" :disabled="disabled" @on-change="OnInputChange" @on-focus="()=>{triggerMenu(true);}" > <Input v-if="isSingleSelect" v-model="queryValue" class="tree-input" type="text" :placeholder="placeholder ? placeholder : $t('components.AppPickerSelectViewSelectView.placeholder')" :disabled="disabled" @on-change="OnInputChange" @on-focus="()=>{triggerMenu(true);}" >
<template v-slot:suffix> <template v-slot:suffix>
<i v-if="queryValue && !disabled" class='el-icon-circle-close' @click="onClear"></i> <i v-if="queryValue && !disabled" class='el-icon-circle-close' @click="onClear"></i>
<Icon :type="visible ? 'ios-arrow-up' : 'ios-arrow-down'" class="icon-arrow" @click="() => {triggerMenu();}"></Icon> <Icon :type="visible ? 'ios-arrow-up' : 'ios-arrow-down'" class="icon-arrow" @click="() => {triggerMenu();}"></Icon>
...@@ -34,12 +34,12 @@ import { ViewTool } from '@/utils/view-tool/view-tool'; ...@@ -34,12 +34,12 @@ import { ViewTool } from '@/utils/view-tool/view-tool';
@Component({ @Component({
}) })
export default class AppPickerSelectView extends Vue { export default class AppPickerSelectViewSelectView extends Vue {
/** /**
* 视图上下文 * 视图上下文
* *
* @type {*} * @type {*}
* @memberof AppFormDRUIPart * @memberof AppPickerSelectView
*/ */
@Prop() public context!: any; @Prop() public context!: any;
...@@ -47,7 +47,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -47,7 +47,7 @@ export default class AppPickerSelectView extends Vue {
* 视图参数 * 视图参数
* *
* @type {*} * @type {*}
* @memberof AppFormDRUIPart * @memberof AppPickerSelectView
*/ */
@Prop() public viewparams!: any; @Prop() public viewparams!: any;
...@@ -55,7 +55,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -55,7 +55,7 @@ export default class AppPickerSelectView extends Vue {
* 是否单选 * 是否单选
* *
* @type {*} * @type {*}
* @memberof AppFormDRUIPart * @memberof AppPickerSelectView
*/ */
@Prop({default: 'true'}) public isSingleSelect!: any; @Prop({default: 'true'}) public isSingleSelect!: any;
...@@ -63,7 +63,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -63,7 +63,7 @@ export default class AppPickerSelectView extends Vue {
* 当前多选框选中值的key集合 * 当前多选框选中值的key集合
* *
* @type {string} * @type {string}
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
public keySet: any = []; public keySet: any = [];
...@@ -71,7 +71,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -71,7 +71,7 @@ export default class AppPickerSelectView extends Vue {
* 当前多选框选中项对象集合 * 当前多选框选中项对象集合
* *
* @type {string} * @type {string}
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
public selectItems: Array<any> = []; public selectItems: Array<any> = [];
...@@ -79,7 +79,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -79,7 +79,7 @@ export default class AppPickerSelectView extends Vue {
* 所有操作过的下拉选项对象集合 * 所有操作过的下拉选项对象集合
* *
* @type {string} * @type {string}
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
public items: Array<any> = []; public items: Array<any> = [];
...@@ -87,7 +87,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -87,7 +87,7 @@ export default class AppPickerSelectView extends Vue {
* 视图参数 * 视图参数
* *
* @type {string} * @type {string}
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
public viewparam: any = JSON.stringify(this.viewparams); public viewparam: any = JSON.stringify(this.viewparams);
...@@ -95,7 +95,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -95,7 +95,7 @@ export default class AppPickerSelectView extends Vue {
* 视图上下文 * 视图上下文
* *
* @type {string} * @type {string}
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
public viewdata: any = JSON.stringify(this.context); public viewdata: any = JSON.stringify(this.context);
...@@ -103,7 +103,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -103,7 +103,7 @@ export default class AppPickerSelectView extends Vue {
* 表单数据 * 表单数据
* *
* @type {*} * @type {*}
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
@Prop() public data!: any; @Prop() public data!: any;
...@@ -111,7 +111,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -111,7 +111,7 @@ export default class AppPickerSelectView extends Vue {
* 值 * 值
* *
* @type {*} * @type {*}
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
@Prop() public value: any; @Prop() public value: any;
...@@ -119,7 +119,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -119,7 +119,7 @@ export default class AppPickerSelectView extends Vue {
* 是否启用 * 是否启用
* *
* @type {boolean} * @type {boolean}
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
@Prop({default: false}) public disabled!: boolean; @Prop({default: false}) public disabled!: boolean;
...@@ -127,7 +127,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -127,7 +127,7 @@ export default class AppPickerSelectView extends Vue {
* 应用实体主信息属性名称 * 应用实体主信息属性名称
* *
* @type {string} * @type {string}
* @memberof AppAutocomplete * @memberof AppPickerSelectView
*/ */
@Prop({default: 'srfmajortext'}) public deMajorField!: string; @Prop({default: 'srfmajortext'}) public deMajorField!: string;
...@@ -135,7 +135,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -135,7 +135,7 @@ export default class AppPickerSelectView extends Vue {
* 应用实体主键属性名称 * 应用实体主键属性名称
* *
* @type {string} * @type {string}
* @memberof AppAutocomplete * @memberof AppPickerSelectView
*/ */
@Prop({default: 'srfkey'}) public deKeyField!: string; @Prop({default: 'srfkey'}) public deKeyField!: string;
...@@ -143,7 +143,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -143,7 +143,7 @@ export default class AppPickerSelectView extends Vue {
* 输入框值(搜索值) * 输入框值(搜索值)
* *
* @type {string} * @type {string}
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
public queryValue: any = ''; public queryValue: any = '';
...@@ -151,7 +151,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -151,7 +151,7 @@ export default class AppPickerSelectView extends Vue {
* 值项名称 * 值项名称
* *
* @type {string} * @type {string}
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
@Prop() public valueitem!: string; @Prop() public valueitem!: string;
...@@ -159,7 +159,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -159,7 +159,7 @@ export default class AppPickerSelectView extends Vue {
* 关联视图名称 * 关联视图名称
* *
* @type {string} * @type {string}
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
@Prop() public pickupView?: any; @Prop() public pickupView?: any;
...@@ -167,7 +167,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -167,7 +167,7 @@ export default class AppPickerSelectView extends Vue {
* 数据链接视图参数 * 数据链接视图参数
* *
* @type {*} * @type {*}
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
@Prop() public linkview?: any; @Prop() public linkview?: any;
...@@ -175,7 +175,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -175,7 +175,7 @@ export default class AppPickerSelectView extends Vue {
* 提示信息 * 提示信息
* *
* @type {string} * @type {string}
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
@Prop() public placeholder!: string; @Prop() public placeholder!: string;
...@@ -183,23 +183,31 @@ export default class AppPickerSelectView extends Vue { ...@@ -183,23 +183,31 @@ export default class AppPickerSelectView extends Vue {
* 属性项名称 * 属性项名称
* *
* @type {string} * @type {string}
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
@Prop() public name!: string; @Prop() public name!: string;
/** /**
* 编辑器参数 * 局部上下文导航参数
* *
* @type {*} * @type {any}
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
@Prop() public itemParam: any; @Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {any}
* @memberof AppPickerSelectView
*/
@Prop() public localParam!:any;
/** /**
* 下拉显示控制变量 * 下拉显示控制变量
* *
* @type {string} * @type {string}
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
public visible: boolean = false; public visible: boolean = false;
...@@ -207,7 +215,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -207,7 +215,7 @@ export default class AppPickerSelectView extends Vue {
* 父视图数据 * 父视图数据
* *
* @type {string} * @type {string}
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
public srfparentdata: any = {}; public srfparentdata: any = {};
...@@ -215,7 +223,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -215,7 +223,7 @@ export default class AppPickerSelectView extends Vue {
* 输入框change事件 * 输入框change事件
* *
* @param $event 事件对象 * @param $event 事件对象
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
public OnInputChange($event: any){ public OnInputChange($event: any){
let _viewdata = Object.assign({ query: this.queryValue }, JSON.parse(this.viewdata)) ; let _viewdata = Object.assign({ query: this.queryValue }, JSON.parse(this.viewdata)) ;
...@@ -226,7 +234,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -226,7 +234,7 @@ export default class AppPickerSelectView extends Vue {
* 输入框change事件 * 输入框change事件
* *
* @param $event 事件对象 * @param $event 事件对象
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
public triggerMenu(visible?: boolean){ public triggerMenu(visible?: boolean){
if(this.disabled){ if(this.disabled){
...@@ -244,26 +252,23 @@ export default class AppPickerSelectView extends Vue { ...@@ -244,26 +252,23 @@ export default class AppPickerSelectView extends Vue {
* *
* @param {*} arg * @param {*} arg
* @returns * @returns
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
public handlePublicParams(arg: any): boolean { public handlePublicParams(arg: any): boolean {
if (!this.itemParam) {
return true;
}
if (!this.data) { if (!this.data) {
this.$Notice.error({ title: (this.$t('components.appPickerSelectView.error') as any), desc: (this.$t('components.appPickerSelectView.formdataException') as any) }); this.$Notice.error({ title: (this.$t('components.AppPickerSelectViewSelectView.error') as any), desc: (this.$t('components.AppPickerSelectViewSelectView.formdataException') as any) });
return false; return false;
} }
// 合并表单参数 // 合并表单参数
arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {}; arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {};
arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {}; arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {};
// 附加参数处理 // 附加参数处理
if (this.itemParam.context) { if (this.localContext && Object.keys(this.localContext).length >0) {
let _context = this.$util.formatData(this.data,arg.context,this.itemParam.context); let _context = this.$util.computedNavData(this.data,arg.context,arg.param,this.localContext);
Object.assign(arg.context,_context); Object.assign(arg.context,_context);
} }
if (this.itemParam.param) { if (this.localParam && Object.keys(this.localParam).length >0) {
let _param = this.$util.formatData(this.data,arg.param,this.itemParam.param); let _param = this.$util.computedNavData(this.data,arg.param,arg.param,this.localParam);
Object.assign(arg.param,_param); Object.assign(arg.param,_param);
} }
return true; return true;
...@@ -274,7 +279,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -274,7 +279,7 @@ export default class AppPickerSelectView extends Vue {
* *
* @param {*} newVal * @param {*} newVal
* @param {*} oldVal * @param {*} oldVal
* @memberof AppFormDRUIPart * @memberof AppPickerSelectView
*/ */
@Watch('data',{deep:true}) @Watch('data',{deep:true})
onActivedataChange(newVal: any, oldVal: any) { onActivedataChange(newVal: any, oldVal: any) {
...@@ -294,14 +299,14 @@ export default class AppPickerSelectView extends Vue { ...@@ -294,14 +299,14 @@ export default class AppPickerSelectView extends Vue {
* *
* @param {*} newVal * @param {*} newVal
* @param {*} oldVal * @param {*} oldVal
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
@Watch('value', { deep: true }) @Watch('value', { deep: true })
public onValueChange(newVal: any, oldVal: any) { public onValueChange(newVal: any, oldVal: any) {
if(this.isSingleSelect){ if(this.isSingleSelect){
this.queryValue = newVal; this.queryValue = newVal;
if (!this.data || !this.valueitem || !this.data[this.valueitem]) { if (!this.data || !this.valueitem || !this.data[this.valueitem]) {
this.$Notice.error({ title: (this.$t('components.appPickerSelectView.error') as any), desc: (this.$t('components.appPickerSelectView.editor') as any)+this.name+(this.$t('components.appPickerSelectView.valueitemException') as any) }); this.$Notice.error({ title: (this.$t('components.AppPickerSelectViewSelectView.error') as any), desc: (this.$t('components.AppPickerSelectViewSelectView.editor') as any)+this.name+(this.$t('components.AppPickerSelectViewSelectView.valueitemException') as any) });
}else{ }else{
let _viewparam = JSON.parse(this.viewparam); let _viewparam = JSON.parse(this.viewparam);
_viewparam.selectedData = [{srfkey: this.data[this.valueitem], srfmajortext: this.value }]; _viewparam.selectedData = [{srfkey: this.data[this.valueitem], srfmajortext: this.value }];
...@@ -330,7 +335,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -330,7 +335,7 @@ export default class AppPickerSelectView extends Vue {
/** /**
* 生命周期 * 生命周期
* *
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
public created() { public created() {
// 公共参数处理 // 公共参数处理
...@@ -347,7 +352,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -347,7 +352,7 @@ export default class AppPickerSelectView extends Vue {
/** /**
* vue 生命周期 * vue 生命周期
* *
* @memberof SelectType * @memberof AppPickerSelectView
*/ */
public destroyed() { public destroyed() {
...@@ -357,7 +362,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -357,7 +362,7 @@ export default class AppPickerSelectView extends Vue {
* 设置值 * 设置值
* *
* @param {*} item * @param {*} item
* @memberof AppTreePicker * @memberof AppPickerSelectView
*/ */
public onViewdatasChange($event: any) { public onViewdatasChange($event: any) {
if($event.length == 0){ if($event.length == 0){
...@@ -409,11 +414,11 @@ export default class AppPickerSelectView extends Vue { ...@@ -409,11 +414,11 @@ export default class AppPickerSelectView extends Vue {
/** /**
* 打开链接视图 * 打开链接视图
* *
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
public openLinkView($event: any): void { public openLinkView($event: any): void {
if (!this.data || !this.valueitem || !this.data[this.valueitem]) { if (!this.data || !this.valueitem || !this.data[this.valueitem]) {
console.error({ title: (this.$t('components.appPickerSelectView.error') as any), desc: (this.$t('components.appPickerSelectView.editor') as any)+this.name+(this.$t('components.appPickerSelectView.valueitemException') as any) }); console.error({ title: (this.$t('components.AppPickerSelectViewSelectView.error') as any), desc: (this.$t('components.AppPickerSelectViewSelectView.editor') as any)+this.name+(this.$t('components.AppPickerSelectViewSelectView.valueitemException') as any) });
return; return;
} }
// 公共参数处理 // 公共参数处理
...@@ -447,7 +452,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -447,7 +452,7 @@ export default class AppPickerSelectView extends Vue {
* @private * @private
* @param {string} viewpath * @param {string} viewpath
* @param {*} data * @param {*} data
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
private openIndexViewTab(view: any, context: any, param: any): void { private openIndexViewTab(view: any, context: any, param: any): void {
const routePath = this.$viewTool.buildUpRoutePath(this.$route, this.context, view.deResParameters, view.parameters, [context] , param); const routePath = this.$viewTool.buildUpRoutePath(this.$route, this.context, view.deResParameters, view.parameters, [context] , param);
...@@ -461,7 +466,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -461,7 +466,7 @@ export default class AppPickerSelectView extends Vue {
* @param {*} $event * @param {*} $event
* @param {*} view * @param {*} view
* @param {*} data * @param {*} data
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
private openPopOver($event: any, view: any, context: any, param: any): void { private openPopOver($event: any, view: any, context: any, param: any): void {
let container: Subject<any> = this.$apppopover.openPop($event, view, context, param); let container: Subject<any> = this.$apppopover.openPop($event, view, context, param);
...@@ -480,7 +485,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -480,7 +485,7 @@ export default class AppPickerSelectView extends Vue {
* @private * @private
* @param {*} view * @param {*} view
* @param {*} data * @param {*} data
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
private openPopupModal(view: any, context: any, param: any): void { private openPopupModal(view: any, context: any, param: any): void {
let container: Subject<any> = this.$appmodal.openModal(view, context, param); let container: Subject<any> = this.$appmodal.openModal(view, context, param);
...@@ -498,7 +503,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -498,7 +503,7 @@ export default class AppPickerSelectView extends Vue {
* @private * @private
* @param {*} view * @param {*} view
* @param {*} data * @param {*} data
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
private openDrawer(view: any, context: any, param: any): void { private openDrawer(view: any, context: any, param: any): void {
let container: Subject<any> = this.$appdrawer.openDrawer(view, context, param); let container: Subject<any> = this.$appdrawer.openDrawer(view, context, param);
...@@ -514,7 +519,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -514,7 +519,7 @@ export default class AppPickerSelectView extends Vue {
* 打开页面关闭 * 打开页面关闭
* *
* @param {*} result * @param {*} result
* @memberof AppPicker * @memberof AppPickerSelectView
*/ */
public openViewClose(result: any) { public openViewClose(result: any) {
let item: any = {}; let item: any = {};
...@@ -536,7 +541,7 @@ export default class AppPickerSelectView extends Vue { ...@@ -536,7 +541,7 @@ export default class AppPickerSelectView extends Vue {
* 下拉选中回调 * 下拉选中回调
* *
* @param {*} selects 当前选中的key值集合 * @param {*} selects 当前选中的key值集合
* @memberof AppMpicker * @memberof AppPickerSelectView
*/ */
public onSelectChange(selects: any) { public onSelectChange(selects: any) {
let val: Array<any> = []; let val: Array<any> = [];
......
...@@ -153,12 +153,20 @@ export default class AppPicker extends Vue { ...@@ -153,12 +153,20 @@ export default class AppPicker extends Vue {
@Prop() public linkview?: any; @Prop() public linkview?: any;
/** /**
* 表单项参数 * 局部上下文导航参数
* *
* @type {any} * @type {any}
* @memberof AppPicker * @memberof AppPicker
*/ */
@Prop() public itemParam: any; @Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {any}
* @memberof AppPicker
*/
@Prop() public localParam!:any;
/** /**
* 值项名称 * 值项名称
...@@ -639,9 +647,6 @@ export default class AppPicker extends Vue { ...@@ -639,9 +647,6 @@ export default class AppPicker extends Vue {
* @memberof AppPicker * @memberof AppPicker
*/ */
public handlePublicParams(arg: any): boolean { public handlePublicParams(arg: any): boolean {
if (!this.itemParam) {
return true;
}
if (!this.data) { if (!this.data) {
this.$Notice.error({ title: (this.$t('components.appPicker.error') as any), desc: (this.$t('components.appPicker.formdataException') as any) }); this.$Notice.error({ title: (this.$t('components.appPicker.error') as any), desc: (this.$t('components.appPicker.formdataException') as any) });
return false; return false;
...@@ -650,12 +655,12 @@ export default class AppPicker extends Vue { ...@@ -650,12 +655,12 @@ export default class AppPicker extends Vue {
arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {}; arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {};
arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {}; arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {};
// 附加参数处理 // 附加参数处理
if (this.itemParam && this.itemParam.context) { if (this.localContext && Object.keys(this.localContext).length >0) {
let _context = this.$util.formatData(this.data,arg.context,this.itemParam.context); let _context = this.$util.computedNavData(this.data,arg.context,arg.param,this.localContext);
Object.assign(arg.context,_context); Object.assign(arg.context,_context);
} }
if (this.itemParam && this.itemParam.param) { if (this.localParam && Object.keys(this.localParam).length >0) {
let _param = this.$util.formatData(this.data,arg.param,this.itemParam.param); let _param = this.$util.computedNavData(this.data,arg.param,arg.param,this.localParam);
Object.assign(arg.param,_param); Object.assign(arg.param,_param);
} }
return true; return true;
......
...@@ -65,14 +65,14 @@ export default class AppRadioGroup extends Vue { ...@@ -65,14 +65,14 @@ export default class AppRadioGroup extends Vue {
* 传入表单数据 * 传入表单数据
* *
* @type {*} * @type {*}
* @memberof DropDownList * @memberof AppRadioGroup
*/ */
@Prop() public data?: any; @Prop() public data?: any;
/** /**
* 监听表单数据变化 * 监听表单数据变化
* *
* @memberof AppOrgSelect * @memberof AppRadioGroup
*/ */
@Watch('data',{immediate:true,deep:true}) @Watch('data',{immediate:true,deep:true})
onDataChange(newVal: any, oldVal: any) { onDataChange(newVal: any, oldVal: any) {
...@@ -103,18 +103,26 @@ export default class AppRadioGroup extends Vue { ...@@ -103,18 +103,26 @@ export default class AppRadioGroup extends Vue {
@Prop() public disabled?: boolean; @Prop() public disabled?: boolean;
/** /**
* 传入额外参数 * 局部上下文导航参数
* *
* @type {*} * @type {any}
* @memberof DropDownList * @memberof AppRadioGroup
*/
@Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {any}
* @memberof AppRadioGroup
*/ */
@Prop() public itemParam?: any; @Prop() public localParam!:any;
/** /**
* 视图上下文 * 视图上下文
* *
* @type {*} * @type {*}
* @memberof AppAutocomplete * @memberof AppRadioGroup
*/ */
@Prop() public context!: any; @Prop() public context!: any;
...@@ -122,7 +130,7 @@ export default class AppRadioGroup extends Vue { ...@@ -122,7 +130,7 @@ export default class AppRadioGroup extends Vue {
* 视图参数 * 视图参数
* *
* @type {*} * @type {*}
* @memberof AppFormDRUIPart * @memberof AppRadioGroup
*/ */
@Prop() public viewparams!: any; @Prop() public viewparams!: any;
...@@ -161,19 +169,19 @@ export default class AppRadioGroup extends Vue { ...@@ -161,19 +169,19 @@ export default class AppRadioGroup extends Vue {
* *
* @param {*} arg * @param {*} arg
* @returns * @returns
* @memberof DropDownList * @memberof AppRadioGroup
*/ */
public handlePublicParams(arg: any) { public handlePublicParams(arg: any) {
// 合并表单参数 // 合并表单参数
arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {}; arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {};
arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {}; arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {};
// 附加参数处理 // 附加参数处理
if (this.itemParam && this.itemParam.context) { if (this.localContext && Object.keys(this.localContext).length >0) {
let _context = this.$util.formatData(this.data,arg.context,this.itemParam.context); let _context = this.$util.computedNavData(this.data,arg.context,arg.param,this.localContext);
Object.assign(arg.context,_context); Object.assign(arg.context,_context);
} }
if (this.itemParam && this.itemParam.param) { if (this.localParam && Object.keys(this.localParam).length >0) {
let _param = this.$util.formatData(this.data,arg.param,this.itemParam.param); let _param = this.$util.computedNavData(this.data,arg.param,arg.param,this.localParam);
Object.assign(arg.param,_param); Object.assign(arg.param,_param);
} }
} }
......
...@@ -72,12 +72,20 @@ export default class AppSpan extends Vue { ...@@ -72,12 +72,20 @@ export default class AppSpan extends Vue {
@Prop() public data?: any; @Prop() public data?: any;
/** /**
* 传入额外参数 * 局部上下文导航参数
* *
* @type {*} * @type {any}
* @memberof AppSpan
*/
@Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {any}
* @memberof AppSpan * @memberof AppSpan
*/ */
@Prop() public itemParam?: any; @Prop() public localParam!:any;
/** /**
* 视图上下文 * 视图上下文
......
.ivu-select-dropdown {
padding: 0px;
.hidden {
display: none;
}
}
\ No newline at end of file
<template>
<Select v-model="dataRight" style="width:586px" multiple>
<Option
class="hidden"
:value="item"
v-for="(item,i) in dataRight"
:key="i"
>{{dataLeft[item-1].label}}</Option>
<el-transfer v-model="dataRight" :data="dataLeft" @change=dataChange></el-transfer>
</Select>
</template>
<script lang="ts">
import { Vue, Component, Watch, Prop, Model } from "vue-property-decorator";
import CodeListService from "@service/app/codelist-service";
@Component({})
export default class FromTransfer extends Vue {
/**
* 表单传递右侧框中的数据
*/
@Prop() public data: any;
/**
* 左侧框数据
*/
public dataLeft: any[] = [];
/**
* 右侧框数据
*/
public dataRight: any[] = [];
/**
* 代码表服务对象
*
* @type {CodeListService}
* @memberof FromTransfer
*/
public codeListService: CodeListService = new CodeListService({
$store: this.$store
});
/**
* 额外参数
*
* @type {*}
* @memberof FromTransfer
*/
public otherParam: any;
/**
* 查询参数
* @type {*}
* @memberof FromTransfer
*/
public queryParam: any;
/**
* 当前选中值
* @type {any}
* @memberof Drop
*/
@Model("change") readonly itemValue!: any;
/**
* 代码表标识
*
* @type {string}
* @memberof FromTransfer
*/
@Prop() public tag?: string;
/**
* 代码表类型
*
* @type {string}
* @memberof FromTransfer
*/
@Prop() public codelistType?: string;
/**
* 监听表单数据
*
* @memberof FromTransfer
*/
@Watch("data", { deep: true })
onDataChange(newVal: any, val: any) {
if (newVal) {
}
}
/**
* 组件change事件,右侧框数据变化时
* @memberof FromTransfer
*/
dataChange(e:any){
console.log(e);
let val:any[]=[];
let newVal:any;
this.dataLeft.forEach((elem: any) => {
e.forEach((item: any) => {
if (elem.key === item) val.push(elem.value);
});
});
newVal=val.join(',');
console.log(newVal);
this.$emit("change", newVal);
}
/**
* 传入额外参数
*
* @type {*}
* @memberof FromTransfer
*/
@Prop() public itemParam?: any;
/**
* 视图上下文
*
* @type {*}
* @memberof AppAutocomplete
*/
@Prop() public context!: any;
/**
* 视图参数
*
* @type {*}
* @memberof AppFormDRUIPart
*/
@Prop() public viewparams!: any;
/**
* 是否禁用
* @type {any}
* @memberof FromTransfer
*
*/
@Prop() public disabled?: any;
/**
* 是否支持过滤
* @type {boolean}
* @memberof FromTransfer
*/
@Prop() public filterable?: boolean;
/**
* 下拉选提示内容
* @type {string}
* @memberof FromTransfer
*/
@Prop() public placeholder?: string;
/**
* 计算属性(当前值)
* @type {any}
* @memberof FromTransfer
*/
set currentVal(val: any) {
// const type: string = this.$util.typeOf(val);
// val =
// Object.is(type, "null") || Object.is(type, "undefined") ? undefined : val;
// this.dataLeft.forEach((elem: any) => {
// this.dataRight.forEach((item: any) => {
// if (elem.key === item) val.push(elem.value);
// });
// });
// val=val.join(',');
// this.$emit("change", val);
}
/**
* 获取值对象
*
* @memberof FromTransfer
*/
// get currentVal() {
// return this.itemValue;
// }
get currentVal() {
return this.itemValue;
}
/**
* 代码表
*
* @type {any[]}
* @memberof FromTransfer
*/
// public items: any[] = [];
/**
* 公共参数处理
*
* @param {*} arg
* @returns
* @memberof FromTransfer
*/
public handlePublicParams(arg: any) {
// 合并表单参数
arg.param = this.viewparams
? JSON.parse(JSON.stringify(this.viewparams))
: {};
arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {};
// 附加参数处理
if (this.itemParam && this.itemParam.context) {
let _context = this.$util.formatData(
this.data,
arg.context,
this.itemParam.context
);
Object.assign(arg.context, _context);
}
if (this.itemParam && this.itemParam.param) {
let _param = this.$util.formatData(
this.data,
arg.param,
this.itemParam.param
);
Object.assign(arg.param, _param);
}
}
/**
* vue 生命周期
*
* @memberof FromTransfer
*/
public created() {
this.dataHandle();
this.initRight();
}
/**
* 数据处理
*/
public dataHandle() {
if (this.tag && Object.is(this.codelistType, "STATIC")) {
const codelist = this.$store.getters.getCodeList(this.tag);
if (codelist) {
this.dataLeft = [...JSON.parse(JSON.stringify(codelist.items))];
this.initLeft();
console.log(this.dataLeft);
} else {
console.log(`----${this.tag}----代码表不存在`);
}
} else if (this.tag && Object.is(this.codelistType, "DYNAMIC")) {
// 公共参数处理
let data: any = {};
this.handlePublicParams(data);
// 参数处理
let _context = data.context;
let _param = data.param;
this.codeListService
.getItems(this.tag, _context, _param)
.then((res: any) => {
this.dataLeft = res;
console.log(this.dataLeft);
this.initLeft();
})
.catch((error: any) => {
console.log(`----${this.tag}----代码表不存在`);
});
}
}
/**
* 初始化左侧框数据
*/
public initLeft() {
let left: any[] = [];
Object.assign(left, this.dataLeft);
this.dataLeft = [];
left.forEach((elem: any, i: any) => {
this.dataLeft.push({
key: i + 1,
id: elem.id,
value: elem.value,
label: elem.label,
disabled: elem.disabled
});
});
}
/**
* 初始化右侧框数据
*/
public initRight() {
if (this.data) {
this.data.forEach((elem: any) => {
this.dataRight.push(elem);
});
}
}
}
</script>
<style lang='less'>
@import "./app-transfer.less";
</style>
\ No newline at end of file
...@@ -36,7 +36,7 @@ export default class AppTreePicker extends Vue { ...@@ -36,7 +36,7 @@ export default class AppTreePicker extends Vue {
* 视图上下文 * 视图上下文
* *
* @type {*} * @type {*}
* @memberof AppFormDRUIPart * @memberof AppTreePicker
*/ */
@Prop() public context!: any; @Prop() public context!: any;
...@@ -44,7 +44,7 @@ export default class AppTreePicker extends Vue { ...@@ -44,7 +44,7 @@ export default class AppTreePicker extends Vue {
* 视图参数 * 视图参数
* *
* @type {*} * @type {*}
* @memberof AppFormDRUIPart * @memberof AppTreePicker
*/ */
@Prop() public viewparams!: any; @Prop() public viewparams!: any;
...@@ -52,7 +52,7 @@ export default class AppTreePicker extends Vue { ...@@ -52,7 +52,7 @@ export default class AppTreePicker extends Vue {
* 表单数据 * 表单数据
* *
* @type {*} * @type {*}
* @memberof AppPicker * @memberof AppTreePicker
*/ */
@Prop() public data!: any; @Prop() public data!: any;
...@@ -68,7 +68,7 @@ export default class AppTreePicker extends Vue { ...@@ -68,7 +68,7 @@ export default class AppTreePicker extends Vue {
* 是否启用 * 是否启用
* *
* @type {boolean} * @type {boolean}
* @memberof AppPicker * @memberof AppTreePicker
*/ */
@Prop({default: false}) public disabled!: boolean; @Prop({default: false}) public disabled!: boolean;
...@@ -101,7 +101,7 @@ export default class AppTreePicker extends Vue { ...@@ -101,7 +101,7 @@ export default class AppTreePicker extends Vue {
* 值项名称 * 值项名称
* *
* @type {string} * @type {string}
* @memberof AppPicker * @memberof AppTreePicker
*/ */
@Prop() public valueItem?: string; @Prop() public valueItem?: string;
...@@ -109,7 +109,7 @@ export default class AppTreePicker extends Vue { ...@@ -109,7 +109,7 @@ export default class AppTreePicker extends Vue {
* 关联视图名称 * 关联视图名称
* *
* @type {string} * @type {string}
* @memberof AppPicker * @memberof AppTreePicker
*/ */
@Prop() public refviewname?: string; @Prop() public refviewname?: string;
...@@ -125,17 +125,25 @@ export default class AppTreePicker extends Vue { ...@@ -125,17 +125,25 @@ export default class AppTreePicker extends Vue {
* 属性项名称 * 属性项名称
* *
* @type {string} * @type {string}
* @memberof AppPicker * @memberof AppTreePicker
*/ */
@Prop() public name!: string; @Prop() public name!: string;
/** /**
* 关联视图参数 * 局部上下文导航参数
* *
* @type {*} * @type {any}
* @memberof AppTreePicker
*/
@Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {any}
* @memberof AppTreePicker * @memberof AppTreePicker
*/ */
@Prop() public itemParam: any; @Prop() public localParam!:any;
/** /**
* 是否忽略之变化 * 是否忽略之变化
...@@ -210,8 +218,8 @@ export default class AppTreePicker extends Vue { ...@@ -210,8 +218,8 @@ export default class AppTreePicker extends Vue {
* *
* @memberof AppTreePicker * @memberof AppTreePicker
*/ */
public setViewParam(activeData: any) { public setViewParam() {
if (!this.itemParam || !activeData) { if (!this.data) {
return; return;
} }
let arg: any = {}; let arg: any = {};
...@@ -219,17 +227,13 @@ export default class AppTreePicker extends Vue { ...@@ -219,17 +227,13 @@ export default class AppTreePicker extends Vue {
let param: any = JSON.parse(JSON.stringify(this.viewparams)); let param: any = JSON.parse(JSON.stringify(this.viewparams));
let context: any = JSON.parse(JSON.stringify(this.context)); let context: any = JSON.parse(JSON.stringify(this.context));
// 附加参数处理 // 附加参数处理
if (this.itemParam.context) { if (this.localContext && Object.keys(this.localContext).length >0) {
let _context = this.$util.formatData(activeData,context,this.itemParam.context); let _context = this.$util.computedNavData(this.data,arg.context,arg.param,this.localContext);
Object.assign(context,_context); Object.assign(arg.context,_context);
}
if (this.itemParam.param) {
let _param = this.$util.formatData(activeData,param,this.itemParam.param);
Object.assign(param,_param);
} }
if (this.itemParam.parentdata) { if (this.localParam && Object.keys(this.localParam).length >0) {
let _parentdata = this.$util.formatData(activeData,param,this.itemParam.parentdata); let _param = this.$util.computedNavData(this.data,arg.param,arg.param,this.localParam);
Object.assign(param,_parentdata); Object.assign(arg.param,_param);
} }
this.viewdata = JSON.stringify(context); this.viewdata = JSON.stringify(context);
this.viewparam = JSON.stringify(param); this.viewparam = JSON.stringify(param);
...@@ -240,13 +244,13 @@ export default class AppTreePicker extends Vue { ...@@ -240,13 +244,13 @@ export default class AppTreePicker extends Vue {
* *
* @param {*} newVal * @param {*} newVal
* @param {*} oldVal * @param {*} oldVal
* @memberof AppFormDRUIPart * @memberof AppTreePicker
*/ */
@Watch('data') @Watch('data')
onActivedataChange(newVal: any, oldVal: any) { onActivedataChange(newVal: any, oldVal: any) {
const newFormData: any = JSON.parse(newVal); const newFormData: any = JSON.parse(newVal);
const oldDormData: any = JSON.parse(oldVal); const oldDormData: any = JSON.parse(oldVal);
this.setViewParam(newFormData); this.setViewParam();
if (!this.refreshitems || this.ignorefieldvaluechange) { if (!this.refreshitems || this.ignorefieldvaluechange) {
return; return;
} }
...@@ -261,7 +265,7 @@ export default class AppTreePicker extends Vue { ...@@ -261,7 +265,7 @@ export default class AppTreePicker extends Vue {
* *
* @param {*} newVal * @param {*} newVal
* @param {*} oldVal * @param {*} oldVal
* @memberof AppPicker * @memberof AppTreePicker
*/ */
@Watch('value') @Watch('value')
public onValueChange(newVal: any, oldVal: any) { public onValueChange(newVal: any, oldVal: any) {
...@@ -277,7 +281,7 @@ export default class AppTreePicker extends Vue { ...@@ -277,7 +281,7 @@ export default class AppTreePicker extends Vue {
if(this.formState) { if(this.formState) {
this.formStateEvent = this.formState.subscribe(({ tag, action, data }) => { this.formStateEvent = this.formState.subscribe(({ tag, action, data }) => {
if (Object.is('load', action)) { if (Object.is('load', action)) {
this.setViewParam(JSON.parse(this.data)); this.setViewParam();
} }
}); });
} }
...@@ -286,7 +290,7 @@ export default class AppTreePicker extends Vue { ...@@ -286,7 +290,7 @@ export default class AppTreePicker extends Vue {
/** /**
* vue 生命周期 * vue 生命周期
* *
* @memberof SelectType * @memberof AppTreePicker
*/ */
public destroyed() { public destroyed() {
if (this.formStateEvent) { if (this.formStateEvent) {
......
...@@ -79,12 +79,20 @@ export default class CodeList extends Vue { ...@@ -79,12 +79,20 @@ export default class CodeList extends Vue {
@Prop() public data?: any; @Prop() public data?: any;
/** /**
* 传入额外参数 * 局部上下文导航参数
* *
* @type {*} * @type {any}
* @memberof CodeList
*/
@Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {any}
* @memberof CodeList * @memberof CodeList
*/ */
@Prop() public itemParam?: any; @Prop() public localParam!:any;
/** /**
* 视图上下文 * 视图上下文
...@@ -270,12 +278,12 @@ export default class CodeList extends Vue { ...@@ -270,12 +278,12 @@ export default class CodeList extends Vue {
arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {}; arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {};
arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {}; arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {};
// 附加参数处理 // 附加参数处理
if (this.itemParam && this.itemParam.context) { if (this.localContext && Object.keys(this.localContext).length >0) {
let _context = this.$util.formatData(this.data,arg.context,this.itemParam.context); let _context = this.$util.computedNavData(this.data,arg.context,arg.param,this.localContext);
Object.assign(arg.context,_context); Object.assign(arg.context,_context);
} }
if (this.itemParam && this.itemParam.param) { if (this.localParam && Object.keys(this.localParam).length >0) {
let _param = this.$util.formatData(this.data,arg.param,this.itemParam.param); let _param = this.$util.computedNavData(this.data,arg.param,arg.param,this.localParam);
Object.assign(arg.param,_param); Object.assign(arg.param,_param);
} }
} }
......
...@@ -12,6 +12,11 @@ ...@@ -12,6 +12,11 @@
position: absolute; position: absolute;
background: #FFF; background: #FFF;
// border: 1px solid #e3e3e3; // border: 1px solid #e3e3e3;
.tree-right-menu{
.ivu-select-dropdown{
overflow: auto;
}
}
.ivu-divider{ .ivu-divider{
width: 100%; width: 100%;
} }
......
...@@ -86,12 +86,20 @@ export default class DropDownListDynamic extends Vue { ...@@ -86,12 +86,20 @@ export default class DropDownListDynamic extends Vue {
} }
/** /**
* 传入额外参数 * 局部上下文导航参数
* *
* @type {*} * @type {*}
* @memberof DropDownListDynamic * @memberof DropDownList
*/
@Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {*}
* @memberof DropDownList
*/ */
@Prop() public itemParam?: any; @Prop() public localParam!:any;
/** /**
* 是否禁用 * 是否禁用
...@@ -172,12 +180,12 @@ export default class DropDownListDynamic extends Vue { ...@@ -172,12 +180,12 @@ export default class DropDownListDynamic extends Vue {
arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {}; arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {};
arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {}; arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {};
// 附加参数处理 // 附加参数处理
if (this.itemParam.context) { if (this.localContext && Object.keys(this.localContext).length >0) {
let _context = this.$util.formatData(this.data,arg.context,this.itemParam.context); let _context = this.$util.computedNavData(this.data,arg.context,arg.param,this.localContext);
Object.assign(arg.context,_context); Object.assign(arg.context,_context);
} }
if (this.itemParam.param) { if (this.localParam && Object.keys(this.localParam).length >0) {
let _param = this.$util.formatData(this.data,arg.param,this.itemParam.param); let _param = this.$util.computedNavData(this.data,arg.context,arg.param,this.localParam);
Object.assign(arg.param,_param); Object.assign(arg.param,_param);
} }
} }
......
...@@ -85,12 +85,20 @@ export default class DropDownListMpicker extends Vue { ...@@ -85,12 +85,20 @@ export default class DropDownListMpicker extends Vue {
@Prop() public placeholder?: string; @Prop() public placeholder?: string;
/** /**
* 传入额外参数 * 局部上下文导航参数
* *
* @type {*} * @type {any}
* @memberof DropDownListMpicker
*/
@Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {any}
* @memberof DropDownListMpicker * @memberof DropDownListMpicker
*/ */
@Prop() public itemParam?: any; @Prop() public localParam!:any;
/** /**
* 视图上下文 * 视图上下文
...@@ -157,12 +165,12 @@ export default class DropDownListMpicker extends Vue { ...@@ -157,12 +165,12 @@ export default class DropDownListMpicker extends Vue {
arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {}; arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {};
arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {}; arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {};
// 附加参数处理 // 附加参数处理
if (this.itemParam.context) { if (this.localContext && Object.keys(this.localContext).length >0) {
let _context = this.$util.formatData(this.data,arg.context,this.itemParam.context); let _context = this.$util.computedNavData(this.data,arg.context,arg.param,this.localContext);
Object.assign(arg.context,_context); Object.assign(arg.context,_context);
} }
if (this.itemParam.param) { if (this.localParam && Object.keys(this.localParam).length >0) {
let _param = this.$util.formatData(this.data,arg.param,this.itemParam.param); let _param = this.$util.computedNavData(this.data,arg.param,arg.param,this.localParam);
Object.assign(arg.param,_param); Object.assign(arg.param,_param);
} }
} }
......
...@@ -86,12 +86,20 @@ export default class DropDownList extends Vue { ...@@ -86,12 +86,20 @@ export default class DropDownList extends Vue {
} }
/** /**
* 传入额外参数 * 局部上下文导航参数
* *
* @type {*} * @type {*}
* @memberof DropDownList * @memberof DropDownList
*/ */
@Prop() public itemParam?: any; @Prop() public localContext!:any;
/**
* 局部导航参数
*
* @type {*}
* @memberof DropDownList
*/
@Prop() public localParam!:any;
/** /**
* 视图上下文 * 视图上下文
...@@ -172,12 +180,12 @@ export default class DropDownList extends Vue { ...@@ -172,12 +180,12 @@ export default class DropDownList extends Vue {
arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {}; arg.param = this.viewparams ? JSON.parse(JSON.stringify(this.viewparams)) : {};
arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {}; arg.context = this.context ? JSON.parse(JSON.stringify(this.context)) : {};
// 附加参数处理 // 附加参数处理
if (this.itemParam && this.itemParam.context) { if (this.localContext && Object.keys(this.localContext).length >0) {
let _context = this.$util.formatData(this.data,arg.context,this.itemParam.context); let _context = this.$util.computedNavData(this.data,arg.context,arg.param,this.localContext);
Object.assign(arg.context,_context); Object.assign(arg.context,_context);
} }
if (this.itemParam && this.itemParam.param) { if (this.localParam && Object.keys(this.localParam).length >0) {
let _param = this.$util.formatData(this.data,arg.param,this.itemParam.param); let _param = this.$util.computedNavData(this.data,arg.context,arg.param,this.localParam);
Object.assign(arg.param,_param); Object.assign(arg.param,_param);
} }
} }
......
// .ibiz-page-tag {
// position: relative;
// box-sizing: border-box;
// // width: calc(100% + 30px);
// height: 38px;
// padding: 0 60px 0 30px;
// background: #f6f6f6;
// .tags-body {
// position: relative;
// width: 100%;
// height: 100%;
// overflow: hidden;
// .tags-container {
// position: absolute;
// overflow: visible;
// white-space: nowrap;
// transition: left .3s ease;
// .ivu-tag {
// margin: 0;
// height: 38px;
// line-height: 38px;
// border: 0;
// border-radius: 0;
// border-right: 1px solid #ddd;
// font-size: 14px;
// .text-icon {
// height: 16px;
// margin-bottom: -3px;
// }
// .ivu-icon-ios-close {
// visibility: hidden;
// }
// .tag-text {
// display: table-cell;
// .ivu-tooltip {
// display: block;
// .ivu-tooltip-rel {
// display: block;
// max-width: 200px;
// overflow: hidden;
// text-overflow: ellipsis;
// }
// }
// }
// }
// .ivu-tag.tag-is-active {
// background: #fff;
// }
// .ivu-tag:hover,.ivu-tag.tag-is-active {
// .ivu-icon-ios-close {
// visibility: initial;
// }
// }
// }
// }
// .move-btn {
// font-size: 18px;
// width: 30px;
// height: 38px;
// line-height: 38px;
// border-left: 1px solid #ddd;
// border-right: 1px solid #ddd;
// text-align: center;
// cursor: pointer;
// }
// .move-btn:hover {
// background: #efefef;
// }
// .move-left, .move-right, .ivu-dropdown{
// position: absolute;
// top: 0;
// }
// .move-left {
// left: 0;
// }
// .move-right {
// right: 30px;
// }
// .ivu-dropdown {
// right: 0;
// }
// }
// .tags-transition-move {
// transition: transform .3s;
// }
// .tags-transition-enter,.tags-transition-leave-to{
// opacity: 0;
// }
.ibiz-page-tag { .ibiz-page-tag {
position: relative;
.left{
.el-tabs__header{
padding-right:120px;
}
}
.right{
position: absolute;
right:0px;
top:0px;
width:120px;
margin:5px 0px;
display: flex;
justify-content: center;
}
>.tag-tabs{
background-color: #F0F0F0 !important;
.el-tabs{ .el-tabs{
.el-tabs__nav{ .el-tabs__nav{
padding:0px 10px; padding:0px 10px;
border:none; border:none;
} }
.el-tabs__active-bar{
background-color: transparent !important;
}
.el-tabs__item{ .el-tabs__item{
color:#ccc; height: 32px;
border:none; line-height: 32px;
border: 1px solid #e8eaec!important;
color: #515a6e!important;
background: #fff!important;
padding: 0 12px;
display: inline-block;
margin: 4px 4px 4px 0;
border-radius: 3px;
font-size: 12px;
vertical-align: middle;
opacity: 1;
overflow: hidden;
.ivu-tag-dot-inner{
display: inline-block;
width: 12px;
height: 12px;
margin-right: 8px;
border-radius: 50%;
background: #e8eaec;
position: relative;
top: 1px;
}
} }
.el-tabs__item:hover{ .el-tabs__item:hover{
color:#409eff; color:#409eff;
} }
.is-active{ .is-active{
color:#409eff; color:#409eff;
border-bottom:2px solid #409eff !important; .ivu-tag-dot-inner{
background-color:#409eff !important;
} }
.el-tabs__nav-scroll{ border-bottom:2px solid transparent !important;
background-color: white;
} }
.el-tabs__header{ .el-tabs__header{
box-shadow: 0 1px 2px 0 rgba(0,0,0,.15);
margin:0 0 1 0; margin:0 0 1 0;
} }
} }
}
} }
\ No newline at end of file
<template> <template>
<div class="ibiz-page-tag"> <div class="ibiz-page-tag">
<div class="tag-tabs left">
<el-tabs <el-tabs
type="card" type="card"
@tab-click="changePage" @tab-click="changePage"
...@@ -9,12 +10,25 @@ ...@@ -9,12 +10,25 @@
> >
<el-tab-pane <el-tab-pane
v-for="(meta, index) of $store.state.pageMetas" v-for="(meta, index) of $store.state.pageMetas"
:label="getCaption(meta.caption, meta.info)"
:name="index+''" :name="index+''"
:key="index+''" :key="index+''"
></el-tab-pane>
>
<span slot="label"><span class="ivu-tag-dot-inner"></span>{{ getCaption(meta.caption, meta.info) }}</span>
</el-tab-pane>
</el-tabs> </el-tabs>
</div> </div>
<div v-show="$store.state.pageMetas.length > 0" class="right">
<el-dropdown @command="handlerClose">
<el-button size="mini" type="primary">
更多<i class="el-icon-arrow-down el-icon--right"></i>
</el-button>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item :command="item" v-for="(item,index) in actions" :key="index">{{ $t(item.text) }}</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</div>
</div>
</template> </template>
<script lang="ts"> <script lang="ts">
...@@ -23,6 +37,7 @@ import { Environment } from "../../environments/environment"; ...@@ -23,6 +37,7 @@ import { Environment } from "../../environments/environment";
@Component({}) @Component({})
export default class TabPageExp extends Vue { export default class TabPageExp extends Vue {
@Provide() @Provide()
public styleLeft: number = 0; public styleLeft: number = 0;
...@@ -32,7 +47,14 @@ export default class TabPageExp extends Vue { ...@@ -32,7 +47,14 @@ export default class TabPageExp extends Vue {
{ text: "app.tabpage.closeother", value: "closeOther" } { text: "app.tabpage.closeother", value: "closeOther" }
]; ];
public editableTabsValue: any = ""; /**
* 关闭tab页方法
*/
public handlerClose(item: any){
this.doTagAction(item.value);
}
public editableTabsValue: any = ""; //tabs页绑定值
@Watch("$route") @Watch("$route")
public onRouteChange(newVal: any) { public onRouteChange(newVal: any) {
......
...@@ -101,7 +101,7 @@ export default class EditViewEngine extends ViewEngine { ...@@ -101,7 +101,7 @@ export default class EditViewEngine extends ViewEngine {
* @memberof EditViewEngine * @memberof EditViewEngine
*/ */
public onFormLoad(arg: any): void { public onFormLoad(arg: any): void {
this.view.model.dataInfo = Object.is(arg.srfuf, '1') ? arg.srfmajortext : '新建'; this.view.model.dataInfo = Object.is(arg.srfuf, '1') ? (this.majorPSDEField?arg[this.majorPSDEField]:arg.srfmajortext) : this.view.$t('app.local.new');
this.setTabCaption(this.view.model.dataInfo); this.setTabCaption(this.view.model.dataInfo);
const newdata: boolean = !Object.is(arg.srfuf, '1'); const newdata: boolean = !Object.is(arg.srfuf, '1');
...@@ -115,7 +115,7 @@ export default class EditViewEngine extends ViewEngine { ...@@ -115,7 +115,7 @@ export default class EditViewEngine extends ViewEngine {
* @memberof EditViewEngine * @memberof EditViewEngine
*/ */
public onFormSave(arg: any): void { public onFormSave(arg: any): void {
this.view.model.dataInfo = Object.is(arg.srfuf, '1') ? arg.srfmajortext : '新建'; this.view.model.dataInfo = Object.is(arg.srfuf, '1') ? (this.majorPSDEField?arg[this.majorPSDEField]:arg.srfmajortext) : this.view.$t('app.local.new');
this.setTabCaption(this.view.model.dataInfo); this.setTabCaption(this.view.model.dataInfo);
const newdata: boolean = !Object.is(arg.srfuf, '1'); const newdata: boolean = !Object.is(arg.srfuf, '1');
...@@ -248,7 +248,8 @@ export default class EditViewEngine extends ViewEngine { ...@@ -248,7 +248,8 @@ export default class EditViewEngine extends ViewEngine {
public setTabCaption(info: string): void { public setTabCaption(info: string): void {
let viewdata: any = this.view.model; let viewdata: any = this.view.model;
if (viewdata && info && !Object.is(info, '') && this.view.$tabPageExp && (viewdata.srfTitle.indexOf(" - ") === -1)) { if (viewdata && info && !Object.is(info, '') && this.view.$tabPageExp && (viewdata.srfTitle.indexOf(" - ") === -1)) {
this.view.$tabPageExp.setCurPageCaption(viewdata.srfCaption, viewdata.srfTitle, info); this.view.$tabPageExp.setCurPageCaption(viewdata.srfTitle, viewdata.srfTitle, info);
this.view.$route.meta.info = info;
this.view.model.srfTitle = `${this.view.$t(viewdata.srfTitle)} - ${viewdata.dataInfo}`; this.view.model.srfTitle = `${this.view.$t(viewdata.srfTitle)} - ${viewdata.dataInfo}`;
} }
} }
......
...@@ -26,7 +26,8 @@ vueApp.locale = () => { }; ...@@ -26,7 +26,8 @@ vueApp.locale = () => { };
const i18n = new VueI18n({ const i18n = new VueI18n({
locale: lang, locale: lang,
messages messages,
silentTranslationWarn:true
}); });
export default i18n; export default i18n;
...@@ -16,6 +16,9 @@ export default { ...@@ -16,6 +16,9 @@ export default {
ok: 'OK', ok: 'OK',
cancel: 'Cancel', cancel: 'Cancel',
}, },
local:{
new: 'New'
},
gridpage: { gridpage: {
choicecolumns: 'Choice columns', choicecolumns: 'Choice columns',
refresh: 'refresh', refresh: 'refresh',
......
...@@ -16,6 +16,9 @@ export default { ...@@ -16,6 +16,9 @@ export default {
ok: '确认', ok: '确认',
cancel: '取消', cancel: '取消',
}, },
local:{
new: '新建'
},
gridpage: { gridpage: {
choicecolumns: '选择列', choicecolumns: '选择列',
refresh: '刷新', refresh: '刷新',
......
...@@ -667,6 +667,7 @@ export default class IBZDepartmentMPickupViewBase extends Vue { ...@@ -667,6 +667,7 @@ export default class IBZDepartmentMPickupViewBase extends Vue {
}); });
this.viewSelections = newSelections; this.viewSelections = newSelections;
}); });
this.selectedData = JSON.stringify(this.viewSelections);
} }
/** /**
...@@ -677,6 +678,7 @@ export default class IBZDepartmentMPickupViewBase extends Vue { ...@@ -677,6 +678,7 @@ export default class IBZDepartmentMPickupViewBase extends Vue {
public onCLickAllLeft():void { public onCLickAllLeft():void {
this.viewSelections = []; this.viewSelections = [];
this.containerModel.view_leftbtn.disabled = true; this.containerModel.view_leftbtn.disabled = true;
this.engine.onCtrlEvent('pickupviewpanel', 'selectionchange', []);
this.selectedData = JSON.stringify(this.viewSelections); this.selectedData = JSON.stringify(this.viewSelections);
} }
...@@ -704,6 +706,7 @@ export default class IBZDepartmentMPickupViewBase extends Vue { ...@@ -704,6 +706,7 @@ export default class IBZDepartmentMPickupViewBase extends Vue {
} }
}); });
}); });
this.selectedData = JSON.stringify(this.viewSelections);
} }
/** /**
......
...@@ -667,6 +667,7 @@ export default class IBZEmployeeMPickupViewBase extends Vue { ...@@ -667,6 +667,7 @@ export default class IBZEmployeeMPickupViewBase extends Vue {
}); });
this.viewSelections = newSelections; this.viewSelections = newSelections;
}); });
this.selectedData = JSON.stringify(this.viewSelections);
} }
/** /**
...@@ -677,6 +678,7 @@ export default class IBZEmployeeMPickupViewBase extends Vue { ...@@ -677,6 +678,7 @@ export default class IBZEmployeeMPickupViewBase extends Vue {
public onCLickAllLeft():void { public onCLickAllLeft():void {
this.viewSelections = []; this.viewSelections = [];
this.containerModel.view_leftbtn.disabled = true; this.containerModel.view_leftbtn.disabled = true;
this.engine.onCtrlEvent('pickupviewpanel', 'selectionchange', []);
this.selectedData = JSON.stringify(this.viewSelections); this.selectedData = JSON.stringify(this.viewSelections);
} }
...@@ -704,6 +706,7 @@ export default class IBZEmployeeMPickupViewBase extends Vue { ...@@ -704,6 +706,7 @@ export default class IBZEmployeeMPickupViewBase extends Vue {
} }
}); });
}); });
this.selectedData = JSON.stringify(this.viewSelections);
} }
/** /**
......
...@@ -25,7 +25,8 @@ const router = new Router({ ...@@ -25,7 +25,8 @@ const router = new Router({
}); });
}, },
meta: { meta: {
caption: 'app.views.ouindexview.caption', caption: 'app.views.ouindexview.title',
info:'',
viewType: 'APPINDEX', viewType: 'APPINDEX',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
...@@ -37,7 +38,8 @@ const router = new Router({ ...@@ -37,7 +38,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/editview/:editview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.editview.caption', caption: 'entities.ibzemployee.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -52,7 +54,8 @@ const router = new Router({ ...@@ -52,7 +54,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/editview/:editview?', path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.editview.caption', caption: 'entities.ibzemployee.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -66,7 +69,8 @@ const router = new Router({ ...@@ -66,7 +69,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/editview/:editview?', path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.editview.caption', caption: 'entities.ibzemployee.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -80,7 +84,8 @@ const router = new Router({ ...@@ -80,7 +84,8 @@ const router = new Router({
{ {
path: 'ibzemployees/:ibzemployee?/editview/:editview?', path: 'ibzemployees/:ibzemployee?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.editview.caption', caption: 'entities.ibzemployee.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -93,7 +98,8 @@ const router = new Router({ ...@@ -93,7 +98,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/optionview/:optionview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.optionview.caption', caption: 'entities.ibzdepartment.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -107,7 +113,8 @@ const router = new Router({ ...@@ -107,7 +113,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/optionview/:optionview?', path: 'ibzdepartments/:ibzdepartment?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.optionview.caption', caption: 'entities.ibzdepartment.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -120,7 +127,8 @@ const router = new Router({ ...@@ -120,7 +127,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/pickupgridview/:pickupgridview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.pickupgridview.caption', caption: 'entities.ibzdepartment.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -134,7 +142,8 @@ const router = new Router({ ...@@ -134,7 +142,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/pickupgridview/:pickupgridview?', path: 'ibzdepartments/:ibzdepartment?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.pickupgridview.caption', caption: 'entities.ibzdepartment.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -147,7 +156,8 @@ const router = new Router({ ...@@ -147,7 +156,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/optionview/:optionview?', path: 'ibzorganizations/:ibzorganization?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzorganization.views.optionview.caption', caption: 'entities.ibzorganization.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -160,7 +170,8 @@ const router = new Router({ ...@@ -160,7 +170,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/gridview/:gridview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.gridview.caption', caption: 'entities.ibzemployee.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -175,7 +186,8 @@ const router = new Router({ ...@@ -175,7 +186,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/gridview/:gridview?', path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.gridview.caption', caption: 'entities.ibzemployee.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -189,7 +201,8 @@ const router = new Router({ ...@@ -189,7 +201,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/gridview/:gridview?', path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.gridview.caption', caption: 'entities.ibzemployee.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -203,7 +216,8 @@ const router = new Router({ ...@@ -203,7 +216,8 @@ const router = new Router({
{ {
path: 'ibzemployees/:ibzemployee?/gridview/:gridview?', path: 'ibzemployees/:ibzemployee?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.gridview.caption', caption: 'entities.ibzemployee.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -216,7 +230,8 @@ const router = new Router({ ...@@ -216,7 +230,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/pickupgridview/:pickupgridview?', path: 'ibzorganizations/:ibzorganization?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzorganization.views.pickupgridview.caption', caption: 'entities.ibzorganization.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -229,7 +244,8 @@ const router = new Router({ ...@@ -229,7 +244,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/gridview/:gridview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.gridview.caption', caption: 'entities.ibzdepartment.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -243,7 +259,8 @@ const router = new Router({ ...@@ -243,7 +259,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/gridview/:gridview?', path: 'ibzdepartments/:ibzdepartment?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.gridview.caption', caption: 'entities.ibzdepartment.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -256,7 +273,8 @@ const router = new Router({ ...@@ -256,7 +273,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/gridview/:gridview?', path: 'ibzorganizations/:ibzorganization?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzorganization.views.gridview.caption', caption: 'entities.ibzorganization.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -269,7 +287,8 @@ const router = new Router({ ...@@ -269,7 +287,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.mpickupview.caption', caption: 'entities.ibzemployee.views.mpickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -284,7 +303,8 @@ const router = new Router({ ...@@ -284,7 +303,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?', path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.mpickupview.caption', caption: 'entities.ibzemployee.views.mpickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -298,7 +318,8 @@ const router = new Router({ ...@@ -298,7 +318,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?', path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.mpickupview.caption', caption: 'entities.ibzemployee.views.mpickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -312,7 +333,8 @@ const router = new Router({ ...@@ -312,7 +333,8 @@ const router = new Router({
{ {
path: 'ibzemployees/:ibzemployee?/mpickupview/:mpickupview?', path: 'ibzemployees/:ibzemployee?/mpickupview/:mpickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.mpickupview.caption', caption: 'entities.ibzemployee.views.mpickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -325,7 +347,8 @@ const router = new Router({ ...@@ -325,7 +347,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/editview/:editview?', path: 'ibzorganizations/:ibzorganization?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzorganization.views.editview.caption', caption: 'entities.ibzorganization.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -338,7 +361,8 @@ const router = new Router({ ...@@ -338,7 +361,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -354,7 +378,8 @@ const router = new Router({ ...@@ -354,7 +378,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -369,7 +394,8 @@ const router = new Router({ ...@@ -369,7 +394,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -384,7 +410,8 @@ const router = new Router({ ...@@ -384,7 +410,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -399,7 +426,8 @@ const router = new Router({ ...@@ -399,7 +426,8 @@ const router = new Router({
{ {
path: 'ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: 'ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -413,7 +441,8 @@ const router = new Router({ ...@@ -413,7 +441,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: 'ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -427,7 +456,8 @@ const router = new Router({ ...@@ -427,7 +456,8 @@ const router = new Router({
{ {
path: 'ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: 'ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' }, { pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' },
...@@ -440,7 +470,8 @@ const router = new Router({ ...@@ -440,7 +470,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/treeexpview/:treeexpview?', path: 'ibzorganizations/:ibzorganization?/treeexpview/:treeexpview?',
meta: { meta: {
caption: 'entities.ibzorganization.views.treeexpview.caption', caption: 'entities.ibzorganization.views.treeexpview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -453,7 +484,8 @@ const router = new Router({ ...@@ -453,7 +484,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupgridview.caption', caption: 'entities.ibzemployee.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -468,7 +500,8 @@ const router = new Router({ ...@@ -468,7 +500,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?', path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupgridview.caption', caption: 'entities.ibzemployee.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -482,7 +515,8 @@ const router = new Router({ ...@@ -482,7 +515,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?', path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupgridview.caption', caption: 'entities.ibzemployee.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -496,7 +530,8 @@ const router = new Router({ ...@@ -496,7 +530,8 @@ const router = new Router({
{ {
path: 'ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?', path: 'ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupgridview.caption', caption: 'entities.ibzemployee.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -509,7 +544,8 @@ const router = new Router({ ...@@ -509,7 +544,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/editview/:editview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.editview.caption', caption: 'entities.ibzdepartment.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -523,7 +559,8 @@ const router = new Router({ ...@@ -523,7 +559,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/editview/:editview?', path: 'ibzdepartments/:ibzdepartment?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.editview.caption', caption: 'entities.ibzdepartment.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -536,7 +573,8 @@ const router = new Router({ ...@@ -536,7 +573,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupview/:pickupview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupview.caption', caption: 'entities.ibzemployee.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -551,7 +589,8 @@ const router = new Router({ ...@@ -551,7 +589,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/pickupview/:pickupview?', path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupview.caption', caption: 'entities.ibzemployee.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -565,7 +604,8 @@ const router = new Router({ ...@@ -565,7 +604,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupview/:pickupview?', path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupview.caption', caption: 'entities.ibzemployee.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -579,7 +619,8 @@ const router = new Router({ ...@@ -579,7 +619,8 @@ const router = new Router({
{ {
path: 'ibzemployees/:ibzemployee?/pickupview/:pickupview?', path: 'ibzemployees/:ibzemployee?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupview.caption', caption: 'entities.ibzemployee.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -592,7 +633,8 @@ const router = new Router({ ...@@ -592,7 +633,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/mpickupview/:mpickupview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/mpickupview/:mpickupview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.mpickupview.caption', caption: 'entities.ibzdepartment.views.mpickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -606,7 +648,8 @@ const router = new Router({ ...@@ -606,7 +648,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/mpickupview/:mpickupview?', path: 'ibzdepartments/:ibzdepartment?/mpickupview/:mpickupview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.mpickupview.caption', caption: 'entities.ibzdepartment.views.mpickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -619,7 +662,8 @@ const router = new Router({ ...@@ -619,7 +662,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -635,7 +679,8 @@ const router = new Router({ ...@@ -635,7 +679,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -650,7 +695,8 @@ const router = new Router({ ...@@ -650,7 +695,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -665,7 +711,8 @@ const router = new Router({ ...@@ -665,7 +711,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -680,7 +727,8 @@ const router = new Router({ ...@@ -680,7 +727,8 @@ const router = new Router({
{ {
path: 'ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: 'ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -694,7 +742,8 @@ const router = new Router({ ...@@ -694,7 +742,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: 'ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -708,7 +757,8 @@ const router = new Router({ ...@@ -708,7 +757,8 @@ const router = new Router({
{ {
path: 'ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: 'ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' }, { pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' },
...@@ -721,7 +771,8 @@ const router = new Router({ ...@@ -721,7 +771,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/pickupview/:pickupview?', path: 'ibzorganizations/:ibzorganization?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzorganization.views.pickupview.caption', caption: 'entities.ibzorganization.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -734,7 +785,8 @@ const router = new Router({ ...@@ -734,7 +785,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/optionview/:optionview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.optionview.caption', caption: 'entities.ibzemployee.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -749,7 +801,8 @@ const router = new Router({ ...@@ -749,7 +801,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/optionview/:optionview?', path: 'ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.optionview.caption', caption: 'entities.ibzemployee.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -763,7 +816,8 @@ const router = new Router({ ...@@ -763,7 +816,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/optionview/:optionview?', path: 'ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.optionview.caption', caption: 'entities.ibzemployee.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -777,7 +831,8 @@ const router = new Router({ ...@@ -777,7 +831,8 @@ const router = new Router({
{ {
path: 'ibzemployees/:ibzemployee?/optionview/:optionview?', path: 'ibzemployees/:ibzemployee?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.optionview.caption', caption: 'entities.ibzemployee.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -790,7 +845,8 @@ const router = new Router({ ...@@ -790,7 +845,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/treeexpview/:treeexpview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/treeexpview/:treeexpview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.treeexpview.caption', caption: 'entities.ibzdepartment.views.treeexpview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -804,7 +860,8 @@ const router = new Router({ ...@@ -804,7 +860,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/treeexpview/:treeexpview?', path: 'ibzdepartments/:ibzdepartment?/treeexpview/:treeexpview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.treeexpview.caption', caption: 'entities.ibzdepartment.views.treeexpview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -817,7 +874,8 @@ const router = new Router({ ...@@ -817,7 +874,8 @@ const router = new Router({
{ {
path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/pickupview/:pickupview?', path: 'ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.pickupview.caption', caption: 'entities.ibzdepartment.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
...@@ -831,7 +889,8 @@ const router = new Router({ ...@@ -831,7 +889,8 @@ const router = new Router({
{ {
path: 'ibzdepartments/:ibzdepartment?/pickupview/:pickupview?', path: 'ibzdepartments/:ibzdepartment?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.pickupview.caption', caption: 'entities.ibzdepartment.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ouindexview', parameterName: 'ouindexview' }, { pathName: 'ouindexview', parameterName: 'ouindexview' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -847,7 +906,8 @@ const router = new Router({ ...@@ -847,7 +906,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/editview/:editview?', path: '/ibzorganizations/:ibzorganization?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzorganization.views.editview.caption', caption: 'entities.ibzorganization.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'editview', parameterName: 'editview' }, { pathName: 'editview', parameterName: 'editview' },
...@@ -859,7 +919,8 @@ const router = new Router({ ...@@ -859,7 +919,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/editview/:editview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.editview.caption', caption: 'entities.ibzemployee.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -873,7 +934,8 @@ const router = new Router({ ...@@ -873,7 +934,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/editview/:editview?', path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.editview.caption', caption: 'entities.ibzemployee.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -886,7 +948,8 @@ const router = new Router({ ...@@ -886,7 +948,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/editview/:editview?', path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.editview.caption', caption: 'entities.ibzemployee.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -899,7 +962,8 @@ const router = new Router({ ...@@ -899,7 +962,8 @@ const router = new Router({
{ {
path: '/ibzemployees/:ibzemployee?/editview/:editview?', path: '/ibzemployees/:ibzemployee?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.editview.caption', caption: 'entities.ibzemployee.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
{ pathName: 'editview', parameterName: 'editview' }, { pathName: 'editview', parameterName: 'editview' },
...@@ -911,7 +975,8 @@ const router = new Router({ ...@@ -911,7 +975,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/optionview/:optionview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.optionview.caption', caption: 'entities.ibzdepartment.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -924,7 +989,8 @@ const router = new Router({ ...@@ -924,7 +989,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/optionview/:optionview?', path: '/ibzdepartments/:ibzdepartment?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.optionview.caption', caption: 'entities.ibzdepartment.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'optionview', parameterName: 'optionview' }, { pathName: 'optionview', parameterName: 'optionview' },
...@@ -936,7 +1002,8 @@ const router = new Router({ ...@@ -936,7 +1002,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/editview/:editview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.editview.caption', caption: 'entities.ibzdepartment.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -949,7 +1016,8 @@ const router = new Router({ ...@@ -949,7 +1016,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/editview/:editview?', path: '/ibzdepartments/:ibzdepartment?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.editview.caption', caption: 'entities.ibzdepartment.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'editview', parameterName: 'editview' }, { pathName: 'editview', parameterName: 'editview' },
...@@ -961,7 +1029,8 @@ const router = new Router({ ...@@ -961,7 +1029,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/gridview/:gridview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.gridview.caption', caption: 'entities.ibzemployee.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -975,7 +1044,8 @@ const router = new Router({ ...@@ -975,7 +1044,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/gridview/:gridview?', path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.gridview.caption', caption: 'entities.ibzemployee.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -988,7 +1058,8 @@ const router = new Router({ ...@@ -988,7 +1058,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/gridview/:gridview?', path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.gridview.caption', caption: 'entities.ibzemployee.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1001,7 +1072,8 @@ const router = new Router({ ...@@ -1001,7 +1072,8 @@ const router = new Router({
{ {
path: '/ibzemployees/:ibzemployee?/gridview/:gridview?', path: '/ibzemployees/:ibzemployee?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.gridview.caption', caption: 'entities.ibzemployee.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
{ pathName: 'gridview', parameterName: 'gridview' }, { pathName: 'gridview', parameterName: 'gridview' },
...@@ -1013,7 +1085,8 @@ const router = new Router({ ...@@ -1013,7 +1085,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/treeexpview/:treeexpview?', path: '/ibzorganizations/:ibzorganization?/treeexpview/:treeexpview?',
meta: { meta: {
caption: 'entities.ibzorganization.views.treeexpview.caption', caption: 'entities.ibzorganization.views.treeexpview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'treeexpview', parameterName: 'treeexpview' }, { pathName: 'treeexpview', parameterName: 'treeexpview' },
...@@ -1025,7 +1098,8 @@ const router = new Router({ ...@@ -1025,7 +1098,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/pickupgridview/:pickupgridview?', path: '/ibzorganizations/:ibzorganization?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzorganization.views.pickupgridview.caption', caption: 'entities.ibzorganization.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'pickupgridview', parameterName: 'pickupgridview' }, { pathName: 'pickupgridview', parameterName: 'pickupgridview' },
...@@ -1037,7 +1111,8 @@ const router = new Router({ ...@@ -1037,7 +1111,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.mpickupview.caption', caption: 'entities.ibzemployee.views.mpickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1051,7 +1126,8 @@ const router = new Router({ ...@@ -1051,7 +1126,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?', path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.mpickupview.caption', caption: 'entities.ibzemployee.views.mpickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1064,7 +1140,8 @@ const router = new Router({ ...@@ -1064,7 +1140,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?', path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.mpickupview.caption', caption: 'entities.ibzemployee.views.mpickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1077,7 +1154,8 @@ const router = new Router({ ...@@ -1077,7 +1154,8 @@ const router = new Router({
{ {
path: '/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?', path: '/ibzemployees/:ibzemployee?/mpickupview/:mpickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.mpickupview.caption', caption: 'entities.ibzemployee.views.mpickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
{ pathName: 'mpickupview', parameterName: 'mpickupview' }, { pathName: 'mpickupview', parameterName: 'mpickupview' },
...@@ -1089,7 +1167,8 @@ const router = new Router({ ...@@ -1089,7 +1167,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/optionview/:optionview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.optionview.caption', caption: 'entities.ibzemployee.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1103,7 +1182,8 @@ const router = new Router({ ...@@ -1103,7 +1182,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/optionview/:optionview?', path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.optionview.caption', caption: 'entities.ibzemployee.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1116,7 +1196,8 @@ const router = new Router({ ...@@ -1116,7 +1196,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/optionview/:optionview?', path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.optionview.caption', caption: 'entities.ibzemployee.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1129,7 +1210,8 @@ const router = new Router({ ...@@ -1129,7 +1210,8 @@ const router = new Router({
{ {
path: '/ibzemployees/:ibzemployee?/optionview/:optionview?', path: '/ibzemployees/:ibzemployee?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.optionview.caption', caption: 'entities.ibzemployee.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
{ pathName: 'optionview', parameterName: 'optionview' }, { pathName: 'optionview', parameterName: 'optionview' },
...@@ -1141,7 +1223,8 @@ const router = new Router({ ...@@ -1141,7 +1223,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/pickupgridview/:pickupgridview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.pickupgridview.caption', caption: 'entities.ibzdepartment.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1154,7 +1237,8 @@ const router = new Router({ ...@@ -1154,7 +1237,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/pickupgridview/:pickupgridview?', path: '/ibzdepartments/:ibzdepartment?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.pickupgridview.caption', caption: 'entities.ibzdepartment.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'pickupgridview', parameterName: 'pickupgridview' }, { pathName: 'pickupgridview', parameterName: 'pickupgridview' },
...@@ -1166,7 +1250,8 @@ const router = new Router({ ...@@ -1166,7 +1250,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/mpickupview/:mpickupview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/mpickupview/:mpickupview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.mpickupview.caption', caption: 'entities.ibzdepartment.views.mpickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1179,7 +1264,8 @@ const router = new Router({ ...@@ -1179,7 +1264,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/mpickupview/:mpickupview?', path: '/ibzdepartments/:ibzdepartment?/mpickupview/:mpickupview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.mpickupview.caption', caption: 'entities.ibzdepartment.views.mpickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'mpickupview', parameterName: 'mpickupview' }, { pathName: 'mpickupview', parameterName: 'mpickupview' },
...@@ -1191,7 +1277,8 @@ const router = new Router({ ...@@ -1191,7 +1277,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/optionview/:optionview?', path: '/ibzorganizations/:ibzorganization?/optionview/:optionview?',
meta: { meta: {
caption: 'entities.ibzorganization.views.optionview.caption', caption: 'entities.ibzorganization.views.optionview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'optionview', parameterName: 'optionview' }, { pathName: 'optionview', parameterName: 'optionview' },
...@@ -1203,7 +1290,8 @@ const router = new Router({ ...@@ -1203,7 +1290,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/pickupview/:pickupview?', path: '/ibzorganizations/:ibzorganization?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzorganization.views.pickupview.caption', caption: 'entities.ibzorganization.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'pickupview', parameterName: 'pickupview' }, { pathName: 'pickupview', parameterName: 'pickupview' },
...@@ -1215,7 +1303,8 @@ const router = new Router({ ...@@ -1215,7 +1303,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/gridview/:gridview?', path: '/ibzorganizations/:ibzorganization?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzorganization.views.gridview.caption', caption: 'entities.ibzorganization.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'gridview', parameterName: 'gridview' }, { pathName: 'gridview', parameterName: 'gridview' },
...@@ -1227,7 +1316,8 @@ const router = new Router({ ...@@ -1227,7 +1316,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/pickupview/:pickupview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.pickupview.caption', caption: 'entities.ibzdepartment.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1240,7 +1330,8 @@ const router = new Router({ ...@@ -1240,7 +1330,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/pickupview/:pickupview?', path: '/ibzdepartments/:ibzdepartment?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.pickupview.caption', caption: 'entities.ibzdepartment.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'pickupview', parameterName: 'pickupview' }, { pathName: 'pickupview', parameterName: 'pickupview' },
...@@ -1252,7 +1343,8 @@ const router = new Router({ ...@@ -1252,7 +1343,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1267,7 +1359,8 @@ const router = new Router({ ...@@ -1267,7 +1359,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1281,7 +1374,8 @@ const router = new Router({ ...@@ -1281,7 +1374,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1295,7 +1389,8 @@ const router = new Router({ ...@@ -1295,7 +1389,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1309,7 +1404,8 @@ const router = new Router({ ...@@ -1309,7 +1404,8 @@ const router = new Router({
{ {
path: '/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: '/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
{ pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' }, { pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' },
...@@ -1322,7 +1418,8 @@ const router = new Router({ ...@@ -1322,7 +1418,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: '/ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' }, { pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' },
...@@ -1335,7 +1432,8 @@ const router = new Router({ ...@@ -1335,7 +1432,8 @@ const router = new Router({
{ {
path: '/ibzdeptmembers/:ibzdeptmember?/editview/:editview?', path: '/ibzdeptmembers/:ibzdeptmember?/editview/:editview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.editview.caption', caption: 'entities.ibzdeptmember.views.editview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' }, { pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' },
{ pathName: 'editview', parameterName: 'editview' }, { pathName: 'editview', parameterName: 'editview' },
...@@ -1347,7 +1445,8 @@ const router = new Router({ ...@@ -1347,7 +1445,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1362,7 +1461,8 @@ const router = new Router({ ...@@ -1362,7 +1461,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1376,7 +1476,8 @@ const router = new Router({ ...@@ -1376,7 +1476,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1390,7 +1491,8 @@ const router = new Router({ ...@@ -1390,7 +1491,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1404,7 +1506,8 @@ const router = new Router({ ...@@ -1404,7 +1506,8 @@ const router = new Router({
{ {
path: '/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: '/ibzemployees/:ibzemployee?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
{ pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' }, { pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' },
...@@ -1417,7 +1520,8 @@ const router = new Router({ ...@@ -1417,7 +1520,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: '/ibzdepartments/:ibzdepartment?/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' }, { pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' },
...@@ -1430,7 +1534,8 @@ const router = new Router({ ...@@ -1430,7 +1534,8 @@ const router = new Router({
{ {
path: '/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?', path: '/ibzdeptmembers/:ibzdeptmember?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdeptmember.views.gridview.caption', caption: 'entities.ibzdeptmember.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' }, { pathName: 'ibzdeptmembers', parameterName: 'ibzdeptmember' },
{ pathName: 'gridview', parameterName: 'gridview' }, { pathName: 'gridview', parameterName: 'gridview' },
...@@ -1442,7 +1547,8 @@ const router = new Router({ ...@@ -1442,7 +1547,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/treeexpview/:treeexpview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/treeexpview/:treeexpview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.treeexpview.caption', caption: 'entities.ibzdepartment.views.treeexpview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1455,7 +1561,8 @@ const router = new Router({ ...@@ -1455,7 +1561,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/treeexpview/:treeexpview?', path: '/ibzdepartments/:ibzdepartment?/treeexpview/:treeexpview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.treeexpview.caption', caption: 'entities.ibzdepartment.views.treeexpview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'treeexpview', parameterName: 'treeexpview' }, { pathName: 'treeexpview', parameterName: 'treeexpview' },
...@@ -1467,7 +1574,8 @@ const router = new Router({ ...@@ -1467,7 +1574,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupview/:pickupview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupview.caption', caption: 'entities.ibzemployee.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1481,7 +1589,8 @@ const router = new Router({ ...@@ -1481,7 +1589,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/pickupview/:pickupview?', path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupview.caption', caption: 'entities.ibzemployee.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1494,7 +1603,8 @@ const router = new Router({ ...@@ -1494,7 +1603,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupview/:pickupview?', path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupview.caption', caption: 'entities.ibzemployee.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1507,7 +1617,8 @@ const router = new Router({ ...@@ -1507,7 +1617,8 @@ const router = new Router({
{ {
path: '/ibzemployees/:ibzemployee?/pickupview/:pickupview?', path: '/ibzemployees/:ibzemployee?/pickupview/:pickupview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupview.caption', caption: 'entities.ibzemployee.views.pickupview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
{ pathName: 'pickupview', parameterName: 'pickupview' }, { pathName: 'pickupview', parameterName: 'pickupview' },
...@@ -1519,7 +1630,8 @@ const router = new Router({ ...@@ -1519,7 +1630,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/gridview/:gridview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.gridview.caption', caption: 'entities.ibzdepartment.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1532,7 +1644,8 @@ const router = new Router({ ...@@ -1532,7 +1644,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/gridview/:gridview?', path: '/ibzdepartments/:ibzdepartment?/gridview/:gridview?',
meta: { meta: {
caption: 'entities.ibzdepartment.views.gridview.caption', caption: 'entities.ibzdepartment.views.gridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'gridview', parameterName: 'gridview' }, { pathName: 'gridview', parameterName: 'gridview' },
...@@ -1544,7 +1657,8 @@ const router = new Router({ ...@@ -1544,7 +1657,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?', path: '/ibzorganizations/:ibzorganization?/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupgridview.caption', caption: 'entities.ibzemployee.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
...@@ -1558,7 +1672,8 @@ const router = new Router({ ...@@ -1558,7 +1672,8 @@ const router = new Router({
{ {
path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?', path: '/ibzorganizations/:ibzorganization?/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupgridview.caption', caption: 'entities.ibzemployee.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzorganizations', parameterName: 'ibzorganization' }, { pathName: 'ibzorganizations', parameterName: 'ibzorganization' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1571,7 +1686,8 @@ const router = new Router({ ...@@ -1571,7 +1686,8 @@ const router = new Router({
{ {
path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?', path: '/ibzdepartments/:ibzdepartment?/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupgridview.caption', caption: 'entities.ibzemployee.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzdepartments', parameterName: 'ibzdepartment' }, { pathName: 'ibzdepartments', parameterName: 'ibzdepartment' },
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
...@@ -1584,7 +1700,8 @@ const router = new Router({ ...@@ -1584,7 +1700,8 @@ const router = new Router({
{ {
path: '/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?', path: '/ibzemployees/:ibzemployee?/pickupgridview/:pickupgridview?',
meta: { meta: {
caption: 'entities.ibzemployee.views.pickupgridview.caption', caption: 'entities.ibzemployee.views.pickupgridview.title',
info:'',
parameters: [ parameters: [
{ pathName: 'ibzemployees', parameterName: 'ibzemployee' }, { pathName: 'ibzemployees', parameterName: 'ibzemployee' },
{ pathName: 'pickupgridview', parameterName: 'pickupgridview' }, { pathName: 'pickupgridview', parameterName: 'pickupgridview' },
......
...@@ -9,3 +9,4 @@ declare module '@fullcalendar/list'; ...@@ -9,3 +9,4 @@ declare module '@fullcalendar/list';
declare module '@fullcalendar/interaction'; declare module '@fullcalendar/interaction';
declare module 'vue-grid-layout'; declare module 'vue-grid-layout';
declare module 'vue-print-nb'; declare module 'vue-print-nb';
declare module 'vuedraggable';
\ No newline at end of file
...@@ -237,6 +237,12 @@ ...@@ -237,6 +237,12 @@
} }
} }
// 清除看板里视图的阴影
.dashboard .portlet .view-container{
-webkit-box-shadow: none ;
box-shadow: none;
}
/*** END:多数据视图属性布局 ***/ /*** END:多数据视图属性布局 ***/
// 看板视图,卡片模式 // 看板视图,卡片模式
......
...@@ -130,6 +130,20 @@ export declare interface Util { ...@@ -130,6 +130,20 @@ export declare interface Util {
*/ */
formatData(arg: any,parent:any, params: any): any ; formatData(arg: any,parent:any, params: any): any ;
/**
* 计算导航数据
* 先从当前数据目标计算,然后再从当前上下文计算,最后从当前视图参数计算,没有则为null
*
* @static
* @param {any} data 表单数据
* @param {any} parentContext 外层context
* @param {any} parentParam 外层param
* @param {any} params 附加参数
* @returns {any}
* @memberof Util
*/
computedNavData(data:any,parentContext:any,parentParam:any,params:any):any;
/** /**
* 日期格式化 * 日期格式化
* *
......
...@@ -324,6 +324,44 @@ export class Util { ...@@ -324,6 +324,44 @@ export class Util {
return _data; return _data;
} }
/**
* 计算导航数据
* 先从当前数据目标计算,然后再从当前上下文计算,最后从当前视图参数计算,没有则为null
*
* @static
* @param {any} data 表单数据
* @param {any} parentContext 外层context
* @param {any} parentParam 外层param
* @param {any} params 附加参数
* @returns {any}
* @memberof Util
*/
public static computedNavData(data:any,parentContext:any,parentParam:any,params:any):any{
let _data: any = {};
if(params && Object.keys(params).length >0){
Object.keys(params).forEach((name: string) => {
if (!name) {
return;
}
let value: string | null = params[name];
if (value && value.startsWith('%') && value.endsWith('%')) {
const key = value.substring(1, value.length - 1).toLowerCase();
if (data && data.hasOwnProperty(key)) {
value = data[key];
}else if(parentContext && parentContext[key]){
value = parentContext[key];
}else if(parentParam && parentParam[key]){
value = parentParam[key];
} else {
value = null;
}
}
Object.assign(_data, { [name.toLowerCase()]: value });
});
}
return _data;
}
/** /**
* 日期格式化 * 日期格式化
* *
......
...@@ -208,7 +208,7 @@ export default class DeptTreeService extends ControlService { ...@@ -208,7 +208,7 @@ export default class DeptTreeService extends ControlService {
Object.assign(treeNode, { id: strNodeId }); Object.assign(treeNode, { id: strNodeId });
Object.assign(treeNode, { expanded: filter.isautoexpand }); Object.assign(treeNode, { expanded: filter.isautoexpand });
Object.assign(treeNode, { leaf: true }); Object.assign(treeNode, { leaf: true });
Object.assign(treeNode, { navparams: '{}' }); Object.assign(treeNode, { curData: entity });
Object.assign(treeNode, { nodeid: treeNode.srfkey }); Object.assign(treeNode, { nodeid: treeNode.srfkey });
Object.assign(treeNode, { nodeid2: filter.strRealNodeId }); Object.assign(treeNode, { nodeid2: filter.strRealNodeId });
list.push(treeNode); list.push(treeNode);
...@@ -330,7 +330,6 @@ export default class DeptTreeService extends ControlService { ...@@ -330,7 +330,6 @@ export default class DeptTreeService extends ControlService {
Object.assign(treeNode, { expanded: filter.isAutoexpand }); Object.assign(treeNode, { expanded: filter.isAutoexpand });
Object.assign(treeNode, { leaf: false }); Object.assign(treeNode, { leaf: false });
Object.assign(treeNode, { navparams: '{}' });
Object.assign(treeNode, { nodeid: treeNode.srfkey }); Object.assign(treeNode, { nodeid: treeNode.srfkey });
Object.assign(treeNode, { nodeid2: filter.strRealNodeId }); Object.assign(treeNode, { nodeid2: filter.strRealNodeId });
list.push(treeNode); list.push(treeNode);
......
...@@ -102,7 +102,8 @@ ...@@ -102,7 +102,8 @@
:data="row" :data="row"
:context="context" :context="context"
:viewparams="viewparams" :viewparams="viewparams"
:itemParam='{ }' :localContext ='{ }'
:localParam ='{ }'
:disabled="row.srfuf === 1 ? (3 & 2) !== 2 : (3 & 1) !== 1" :disabled="row.srfuf === 1 ? (3 & 2) !== 2 : (3 & 1) !== 1"
name='pdeptname' name='pdeptname'
deMajorField='deptname' deMajorField='deptname'
......
...@@ -74,23 +74,15 @@ ...@@ -74,23 +74,15 @@
</i-col> </i-col>
<i-col v-show="detailsModel.createdate.visible" :style="{}" :lg="{ span: 24, offset: 0 }"> <i-col v-show="detailsModel.createdate.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='createdate' :itemRules="this.rules.createdate" class='' :caption="$t('entities.ibzdepartment.main_form.details.createdate')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.createdate.error" :isEmptyCaption="false" labelPos="LEFT"> <app-form-item name='createdate' :itemRules="this.rules.createdate" class='' :caption="$t('entities.ibzdepartment.main_form.details.createdate')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.createdate.error" :isEmptyCaption="false" labelPos="LEFT">
<app-span name='createdate'
:value="data.createdate" :data="data" <app-span name='createdate' :value="data.createdate" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""></app-span>
:context="context"
:viewparams="viewparams"
:itemParam="{}"
style=""></app-span>
</app-form-item> </app-form-item>
</i-col> </i-col>
<i-col v-show="detailsModel.updatedate.visible" :style="{}" :lg="{ span: 24, offset: 0 }"> <i-col v-show="detailsModel.updatedate.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='updatedate' :itemRules="this.rules.updatedate" class='' :caption="$t('entities.ibzdepartment.main_form.details.updatedate')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.updatedate.error" :isEmptyCaption="false" labelPos="LEFT"> <app-form-item name='updatedate' :itemRules="this.rules.updatedate" class='' :caption="$t('entities.ibzdepartment.main_form.details.updatedate')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.updatedate.error" :isEmptyCaption="false" labelPos="LEFT">
<app-span name='updatedate'
:value="data.updatedate" :data="data" <app-span name='updatedate' :value="data.updatedate" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""></app-span>
:context="context"
:viewparams="viewparams"
:itemParam="{}"
style=""></app-span>
</app-form-item> </app-form-item>
</i-col> </i-col>
......
...@@ -328,38 +328,32 @@ export default class TreeExpViewtreeexpbarBase extends Vue implements ControlInt ...@@ -328,38 +328,32 @@ export default class TreeExpViewtreeexpbarBase extends Vue implements ControlInt
}) })
Object.assign(tempContext,{srfcounter:this.counter}); Object.assign(tempContext,{srfcounter:this.counter});
} }
if(arg && arg.navparams){
let curNavParams:any = JSON.parse(arg.navparams);
if(Object.keys(curNavParams).length >0){
Object.keys(curNavParams).forEach((name:any) =>{
if (!name) {
return;
}
let value: string | null = curNavParams[name];
if (value && value.startsWith('%') && value.endsWith('%')) {
const key = value.substring(1, value.length - 1);
if (arg && arg.hasOwnProperty(key)) {
value = (arg[key] !== null && arg[key] !== undefined) ? arg[key] : null;
} else {
value = null;
}
}
Object.assign(tempViewparam, { [name]: value });
})
this.counter += 1;
Object.assign(tempContext,{srfcounter:this.counter});
}
}
Object.assign(tempContext,JSON.parse(JSON.stringify(this.context))); Object.assign(tempContext,JSON.parse(JSON.stringify(this.context)));
if(arg.srfappctx){ if(arg.srfappctx){
Object.assign(tempContext,JSON.parse(JSON.stringify(arg.srfappctx))); Object.assign(tempContext,JSON.parse(JSON.stringify(arg.srfappctx)));
} }
// 计算导航上下文
if(arg && arg.navigateContext && Object.keys(arg.navigateContext).length >0){
let tempData:any = arg.curData?JSON.parse(JSON.stringify(arg.curData)):{};
Object.assign(tempData,arg);
let _context = this.$util.computedNavData(tempData,tempContext,tempViewparam,arg.navigateContext);
Object.assign(tempContext,_context);
}
if(arg.srfparentdename){ if(arg.srfparentdename){
Object.assign(tempContext,{srfparentdename:arg.srfparentdename}); Object.assign(tempContext,{srfparentdename:arg.srfparentdename});
} }
if(arg.srfparentkey){ if(arg.srfparentkey){
Object.assign(tempContext,{srfparentkey:arg.srfparentkey}); Object.assign(tempContext,{srfparentkey:arg.srfparentkey});
} }
// 计算导航参数
if(arg && arg.navigateParams && Object.keys(arg.navigateParams).length >0){
let tempData:any = arg.curData?JSON.parse(JSON.stringify(arg.curData)):{};
Object.assign(tempData,arg);
let _params = this.$util.computedNavData(tempData,tempContext,tempViewparam,arg.navigateParams);
Object.assign(tempViewparam,_params);
this.counter += 1;
Object.assign(tempContext,{srfcounter:this.counter});
}
this.selection = {}; this.selection = {};
Object.assign(this.selection, { view: { viewname: refview.viewname } }); Object.assign(this.selection, { view: { viewname: refview.viewname } });
Object.assign(this.selection,{'viewparam':tempViewparam,'context':tempContext}); Object.assign(this.selection,{'viewparam':tempViewparam,'context':tempContext});
......
...@@ -14,7 +14,8 @@ ...@@ -14,7 +14,8 @@
:data="data" :data="data"
:context="context" :context="context"
:viewparams="viewparams" :viewparams="viewparams"
:itemParam='{ }' :localContext ='{ }'
:localParam ='{ }'
:disabled="detailsModel.deptname.disabled" :disabled="detailsModel.deptname.disabled"
name='deptname' name='deptname'
deMajorField='deptname' deMajorField='deptname'
...@@ -40,7 +41,8 @@ ...@@ -40,7 +41,8 @@
:data="data" :data="data"
:context="context" :context="context"
:viewparams="viewparams" :viewparams="viewparams"
:itemParam='{ }' :localContext ='{ }'
:localParam ='{ }'
:disabled="detailsModel.personname.disabled" :disabled="detailsModel.personname.disabled"
name='personname' name='personname'
deMajorField='personname' deMajorField='personname'
......
...@@ -129,7 +129,8 @@ ...@@ -129,7 +129,8 @@
:data="row" :data="row"
:context="context" :context="context"
:viewparams="viewparams" :viewparams="viewparams"
:itemParam='{ }' :localContext ='{ }'
:localParam ='{ }'
:disabled="row.srfuf === 1 ? (3 & 2) !== 2 : (3 & 1) !== 1" :disabled="row.srfuf === 1 ? (3 & 2) !== 2 : (3 & 1) !== 1"
name='orgname' name='orgname'
deMajorField='orgname' deMajorField='orgname'
...@@ -180,7 +181,8 @@ ...@@ -180,7 +181,8 @@
:data="row" :data="row"
:context="context" :context="context"
:viewparams="viewparams" :viewparams="viewparams"
:itemParam='{ }' :localContext ='{ }'
:localParam ='{ }'
:disabled="row.srfuf === 1 ? (3 & 2) !== 2 : (3 & 1) !== 1" :disabled="row.srfuf === 1 ? (3 & 2) !== 2 : (3 & 1) !== 1"
name='mdeptname' name='mdeptname'
deMajorField='deptname' deMajorField='deptname'
...@@ -213,7 +215,21 @@ ...@@ -213,7 +215,21 @@
<template v-slot="{row,column,$index}"> <template v-slot="{row,column,$index}">
<template v-if="actualIsOpenEdit"> <template v-if="actualIsOpenEdit">
<app-form-item :error="gridItemsModel[$index][column.property].error"> <app-form-item :error="gridItemsModel[$index][column.property].error">
<dropdown-list v-model="row[column.property]" :disabled="row.srfuf === 1 ? (3 & 2) !== 2 : (3 & 1) !== 1" tag='CLIBZSex' codelistType='STATIC' placeholder='请选择...' style="" @change="($event)=>{gridEditItemChange(row, column.property, $event, $index)}"></dropdown-list>
<dropdown-list
v-model="row[column.property]"
:disabled="row.srfuf === 1 ? (3 & 2) !== 2 : (3 & 1) !== 1"
:data="row"
:context="context"
:viewparams="viewparams"
:localContext ='{ }'
:localParam ='{ }'
tag='CLIBZSex'
codelistType='STATIC'
placeholder='请选择...'
style=""
@change="($event)=>{gridEditItemChange(row, column.property, $event, $index)}">
</dropdown-list>
</app-form-item> </app-form-item>
</template> </template>
<template v-if="!actualIsOpenEdit"> <template v-if="!actualIsOpenEdit">
......
...@@ -58,12 +58,14 @@ ...@@ -58,12 +58,14 @@
</i-col> </i-col>
<i-col v-show="detailsModel.sex.visible" :style="{}" :lg="{ span: 24, offset: 0 }"> <i-col v-show="detailsModel.sex.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='sex' :itemRules="this.rules.sex" class='' :caption="$t('entities.ibzemployee.main_form.details.sex')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.sex.error" :isEmptyCaption="false" labelPos="LEFT"> <app-form-item name='sex' :itemRules="this.rules.sex" class='' :caption="$t('entities.ibzemployee.main_form.details.sex')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.sex.error" :isEmptyCaption="false" labelPos="LEFT">
<dropdown-list <dropdown-list
v-model="data.sex" v-model="data.sex"
:data="data" :data="data"
:context="context" :context="context"
:viewparams="viewparams" :viewparams="viewparams"
:itemParam="{}" :localContext ='{ }'
:localParam ='{ }'
:disabled="detailsModel.sex.disabled" :disabled="detailsModel.sex.disabled"
tag='CLIBZSex' tag='CLIBZSex'
codelistType='STATIC' codelistType='STATIC'
......
...@@ -41,23 +41,15 @@ ...@@ -41,23 +41,15 @@
</i-col> </i-col>
<i-col v-show="detailsModel.createdate.visible" :style="{}" :lg="{ span: 24, offset: 0 }"> <i-col v-show="detailsModel.createdate.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='createdate' :itemRules="this.rules.createdate" class='' :caption="$t('entities.ibzorganization.main_form.details.createdate')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.createdate.error" :isEmptyCaption="false" labelPos="LEFT"> <app-form-item name='createdate' :itemRules="this.rules.createdate" class='' :caption="$t('entities.ibzorganization.main_form.details.createdate')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.createdate.error" :isEmptyCaption="false" labelPos="LEFT">
<app-span name='createdate'
:value="data.createdate" :data="data" <app-span name='createdate' :value="data.createdate" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""></app-span>
:context="context"
:viewparams="viewparams"
:itemParam="{}"
style=""></app-span>
</app-form-item> </app-form-item>
</i-col> </i-col>
<i-col v-show="detailsModel.updatedate.visible" :style="{}" :lg="{ span: 24, offset: 0 }"> <i-col v-show="detailsModel.updatedate.visible" :style="{}" :lg="{ span: 24, offset: 0 }">
<app-form-item name='updatedate' :itemRules="this.rules.updatedate" class='' :caption="$t('entities.ibzorganization.main_form.details.updatedate')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.updatedate.error" :isEmptyCaption="false" labelPos="LEFT"> <app-form-item name='updatedate' :itemRules="this.rules.updatedate" class='' :caption="$t('entities.ibzorganization.main_form.details.updatedate')" uiStyle="DEFAULT" :labelWidth="130" :isShowCaption="true" :error="detailsModel.updatedate.error" :isEmptyCaption="false" labelPos="LEFT">
<app-span name='updatedate'
:value="data.updatedate" :data="data" <app-span name='updatedate' :value="data.updatedate" :data="data" :context="context" :viewparams="viewparams" :localContext ='{ }' :localParam ='{ }' style=""></app-span>
:context="context"
:viewparams="viewparams"
:itemParam="{}"
style=""></app-span>
</app-form-item> </app-form-item>
</i-col> </i-col>
......
...@@ -198,7 +198,6 @@ export default class OrgTreeService extends ControlService { ...@@ -198,7 +198,6 @@ export default class OrgTreeService extends ControlService {
Object.assign(treeNode, { expanded: filter.isAutoexpand }); Object.assign(treeNode, { expanded: filter.isAutoexpand });
Object.assign(treeNode, { leaf: false }); Object.assign(treeNode, { leaf: false });
Object.assign(treeNode, { navparams: '{}' });
Object.assign(treeNode, { nodeid: treeNode.srfkey }); Object.assign(treeNode, { nodeid: treeNode.srfkey });
Object.assign(treeNode, { nodeid2: filter.strRealNodeId }); Object.assign(treeNode, { nodeid2: filter.strRealNodeId });
list.push(treeNode); list.push(treeNode);
...@@ -276,7 +275,7 @@ export default class OrgTreeService extends ControlService { ...@@ -276,7 +275,7 @@ export default class OrgTreeService extends ControlService {
Object.assign(treeNode, { id: strNodeId }); Object.assign(treeNode, { id: strNodeId });
Object.assign(treeNode, { expanded: filter.isautoexpand }); Object.assign(treeNode, { expanded: filter.isautoexpand });
Object.assign(treeNode, { leaf: true }); Object.assign(treeNode, { leaf: true });
Object.assign(treeNode, { navparams: '{}' }); Object.assign(treeNode, { curData: entity });
Object.assign(treeNode, { nodeid: treeNode.srfkey }); Object.assign(treeNode, { nodeid: treeNode.srfkey });
Object.assign(treeNode, { nodeid2: filter.strRealNodeId }); Object.assign(treeNode, { nodeid2: filter.strRealNodeId });
list.push(treeNode); list.push(treeNode);
......
...@@ -328,38 +328,32 @@ export default class TreeExpViewtreeexpbarBase extends Vue implements ControlInt ...@@ -328,38 +328,32 @@ export default class TreeExpViewtreeexpbarBase extends Vue implements ControlInt
}) })
Object.assign(tempContext,{srfcounter:this.counter}); Object.assign(tempContext,{srfcounter:this.counter});
} }
if(arg && arg.navparams){
let curNavParams:any = JSON.parse(arg.navparams);
if(Object.keys(curNavParams).length >0){
Object.keys(curNavParams).forEach((name:any) =>{
if (!name) {
return;
}
let value: string | null = curNavParams[name];
if (value && value.startsWith('%') && value.endsWith('%')) {
const key = value.substring(1, value.length - 1);
if (arg && arg.hasOwnProperty(key)) {
value = (arg[key] !== null && arg[key] !== undefined) ? arg[key] : null;
} else {
value = null;
}
}
Object.assign(tempViewparam, { [name]: value });
})
this.counter += 1;
Object.assign(tempContext,{srfcounter:this.counter});
}
}
Object.assign(tempContext,JSON.parse(JSON.stringify(this.context))); Object.assign(tempContext,JSON.parse(JSON.stringify(this.context)));
if(arg.srfappctx){ if(arg.srfappctx){
Object.assign(tempContext,JSON.parse(JSON.stringify(arg.srfappctx))); Object.assign(tempContext,JSON.parse(JSON.stringify(arg.srfappctx)));
} }
// 计算导航上下文
if(arg && arg.navigateContext && Object.keys(arg.navigateContext).length >0){
let tempData:any = arg.curData?JSON.parse(JSON.stringify(arg.curData)):{};
Object.assign(tempData,arg);
let _context = this.$util.computedNavData(tempData,tempContext,tempViewparam,arg.navigateContext);
Object.assign(tempContext,_context);
}
if(arg.srfparentdename){ if(arg.srfparentdename){
Object.assign(tempContext,{srfparentdename:arg.srfparentdename}); Object.assign(tempContext,{srfparentdename:arg.srfparentdename});
} }
if(arg.srfparentkey){ if(arg.srfparentkey){
Object.assign(tempContext,{srfparentkey:arg.srfparentkey}); Object.assign(tempContext,{srfparentkey:arg.srfparentkey});
} }
// 计算导航参数
if(arg && arg.navigateParams && Object.keys(arg.navigateParams).length >0){
let tempData:any = arg.curData?JSON.parse(JSON.stringify(arg.curData)):{};
Object.assign(tempData,arg);
let _params = this.$util.computedNavData(tempData,tempContext,tempViewparam,arg.navigateParams);
Object.assign(tempViewparam,_params);
this.counter += 1;
Object.assign(tempContext,{srfcounter:this.counter});
}
this.selection = {}; this.selection = {};
Object.assign(this.selection, { view: { viewname: refview.viewname } }); Object.assign(this.selection, { view: { viewname: refview.viewname } });
Object.assign(this.selection,{'viewparam':tempViewparam,'context':tempContext}); Object.assign(this.selection,{'viewparam':tempViewparam,'context':tempContext});
......
...@@ -77,6 +77,9 @@ ...@@ -77,6 +77,9 @@
<!--xxl-job定时服务 --> <!--xxl-job定时服务 -->
<xxl-job.version>2.1.0</xxl-job.version> <xxl-job.version>2.1.0</xxl-job.version>
<oracle.version>11.2.0.3</oracle.version>
<postgresql.version>42.2.6</postgresql.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
...@@ -299,12 +302,6 @@ ...@@ -299,12 +302,6 @@
<artifactId>httpclient</artifactId> <artifactId>httpclient</artifactId>
</dependency> </dependency>
<!-- MySQL驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<!-- 阿里Druid数据源 --> <!-- 阿里Druid数据源 -->
<dependency> <dependency>
<groupId>com.alibaba</groupId> <groupId>com.alibaba</groupId>
...@@ -317,9 +314,23 @@ ...@@ -317,9 +314,23 @@
<artifactId>h2</artifactId> <artifactId>h2</artifactId>
</dependency> </dependency>
<!-- Error --> <!-- Oracle驱动包 -->
<dependency>
<!-- Security --> <groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>${oracle.version}</version>
</dependency>
<!-- PostgreSQL驱动包 -->
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>${postgresql.version}</version>
</dependency>
<!-- MySQL驱动包 -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
</dependencies> </dependencies>
......
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册