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

zhouweidong@lab.ibiz5.com 发布系统代码

上级 f37d3656
...@@ -27,7 +27,7 @@ ...@@ -27,7 +27,7 @@
"file-saver": "^2.0.2", "file-saver": "^2.0.2",
"font-awesome": "^4.7.0", "font-awesome": "^4.7.0",
"ibiz-gantt-elastic": "^1.0.17", "ibiz-gantt-elastic": "^1.0.17",
"ibiz-vue-lib": "^0.1.10", "ibiz-vue-lib": "^0.1.13",
"interactjs": "^1.9.4", "interactjs": "^1.9.4",
"moment": "^2.24.0", "moment": "^2.24.0",
"path-to-regexp": "^6.1.0", "path-to-regexp": "^6.1.0",
......
...@@ -73,7 +73,9 @@ import AppWFApproval from './components/app-wf-approval/app-wf-approval.vue' ...@@ -73,7 +73,9 @@ 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' import AppTransfer from './components/app-transfer/app-transfer.vue'
import ContextMenuDrag from './components/context-menu-drag/context-menu-drag.vue' import ContextMenuDrag from './components/context-menu-drag/context-menu-drag.vue'
import AppOrgSelect from './components/app-org-select/app-org-select.vue'
import AppDepartmentSelect from './components/app-department-select/app-department-select.vue'
import AppGroupSelect from './components/app-group-select/app-group-select.vue'
// 全局挂载UI实体服务注册中心 // 全局挂载UI实体服务注册中心
window['uiServiceRegister'] = uiServiceRegister; window['uiServiceRegister'] = uiServiceRegister;
// 全局挂载功能服务注册中心 // 全局挂载功能服务注册中心
...@@ -153,10 +155,10 @@ export const AppComponents = { ...@@ -153,10 +155,10 @@ export const AppComponents = {
v.component('context-menu',ContextMenu); v.component('context-menu',ContextMenu);
v.component('app-column-format',AppColumnFormat); v.component('app-column-format',AppColumnFormat);
v.component('app-quick-group',AppQuickGroup); v.component('app-quick-group',AppQuickGroup);
v.component('app-org-select',() => import('./components/app-org-select/app-org-select.vue')); v.component('app-org-select',AppOrgSelect);
v.component('app-department-select',() => import('./components/app-department-select/app-department-select.vue')); v.component('app-department-select',AppDepartmentSelect);
v.component('app-group-select',() => import('./components/app-group-select/app-group-select.vue')); v.component('app-group-select',AppGroupSelect);
v.component('app-group-picker',() => import('./components/app-group-picker/app-group-picker.vue')); v.component('app-group-picker',AppGroupPicker);
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); v.component('app-transfer',AppTransfer);
......
...@@ -6,8 +6,6 @@ ...@@ -6,8 +6,6 @@
<script lang="ts"> <script lang="ts">
import { Vue, Component, Watch, Prop, Model } from 'vue-property-decorator'; import { Vue, Component, Watch, Prop, Model } from 'vue-property-decorator';
import 'ibiz-vue-lib/lib/ibiz-vue-lib.css';
import {IBizSelectTree} from 'ibiz-vue-lib';
@Component({ @Component({
}) })
export default class AppDepartmentSelect extends Vue { export default class AppDepartmentSelect extends Vue {
......
...@@ -19,17 +19,14 @@ ...@@ -19,17 +19,14 @@
import { Component, Vue, Prop, Watch } from 'vue-property-decorator'; import { Component, Vue, Prop, Watch } from 'vue-property-decorator';
import { Subject } from 'rxjs'; import { Subject } from 'rxjs';
import { Http } from '../../utils'; import { Http } from '../../utils';
import 'ibiz-vue-lib/lib/ibiz-vue-lib.css';
import {IBizSelectTree} from 'ibiz-vue-lib';
import {IBizGroupCard} from 'ibiz-vue-lib';
@Component({}) @Component({})
export default class IBizGroupPicker extends Vue { export default class AppGroupPicker extends Vue {
/** /**
* 视图上下文参数 * 视图上下文参数
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
@Prop() viewdata: any; @Prop() viewdata: any;
...@@ -37,7 +34,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -37,7 +34,7 @@ export default class IBizGroupPicker extends Vue {
* 视图参数 * 视图参数
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
@Prop() viewparam: any; @Prop() viewparam: any;
...@@ -45,7 +42,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -45,7 +42,7 @@ export default class IBizGroupPicker extends Vue {
* 多选 * 多选
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
protected multiple: boolean = false; protected multiple: boolean = false;
...@@ -53,7 +50,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -53,7 +50,7 @@ export default class IBizGroupPicker extends Vue {
* 加载树url * 加载树url
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
protected treeurl:any; protected treeurl:any;
...@@ -61,7 +58,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -61,7 +58,7 @@ export default class IBizGroupPicker extends Vue {
* 加载人员url * 加载人员url
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
protected url:any; protected url:any;
...@@ -69,7 +66,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -69,7 +66,7 @@ export default class IBizGroupPicker extends Vue {
* 树数据集 * 树数据集
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
protected treeItems: any[] = []; protected treeItems: any[] = [];
...@@ -77,7 +74,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -77,7 +74,7 @@ export default class IBizGroupPicker extends Vue {
* 分组表数据集 * 分组表数据集
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
protected cardItems: any[] = []; protected cardItems: any[] = [];
...@@ -85,7 +82,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -85,7 +82,7 @@ export default class IBizGroupPicker extends Vue {
* 视图上下文参数对象 * 视图上下文参数对象
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
protected viewData: any; protected viewData: any;
...@@ -93,7 +90,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -93,7 +90,7 @@ export default class IBizGroupPicker extends Vue {
* 视图参数对象 * 视图参数对象
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
protected viewParam: any; protected viewParam: any;
...@@ -101,7 +98,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -101,7 +98,7 @@ export default class IBizGroupPicker extends Vue {
* 树选中值 * 树选中值
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
protected treeSelectVal: string = ''; protected treeSelectVal: string = '';
...@@ -109,7 +106,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -109,7 +106,7 @@ export default class IBizGroupPicker extends Vue {
* 分组表选中集合 * 分组表选中集合
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
protected cardSelctVal: any = []; protected cardSelctVal: any = [];
...@@ -117,7 +114,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -117,7 +114,7 @@ export default class IBizGroupPicker extends Vue {
* 数据选中集合 * 数据选中集合
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
protected selects: any[] = []; protected selects: any[] = [];
...@@ -125,7 +122,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -125,7 +122,7 @@ export default class IBizGroupPicker extends Vue {
* 是否显示树 * 是否显示树
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
get showTree() { get showTree() {
if(this.viewParam) { if(this.viewParam) {
...@@ -137,7 +134,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -137,7 +134,7 @@ export default class IBizGroupPicker extends Vue {
* 生命周期 * 生命周期
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
public created() { public created() {
if(!this.viewdata || !this.viewparam) { if(!this.viewdata || !this.viewparam) {
...@@ -161,7 +158,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -161,7 +158,7 @@ export default class IBizGroupPicker extends Vue {
* 加载数据 * 加载数据
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
public load() { public load() {
if(this.showTree) { if(this.showTree) {
...@@ -175,7 +172,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -175,7 +172,7 @@ export default class IBizGroupPicker extends Vue {
* 加载树数据 * 加载树数据
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
public loadTree() { public loadTree() {
let orgid = this.viewParam.filtervalue; let orgid = this.viewParam.filtervalue;
...@@ -194,7 +191,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -194,7 +191,7 @@ export default class IBizGroupPicker extends Vue {
* 加载分组表数据 * 加载分组表数据
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
public loadGroupData(key: string) { public loadGroupData(key: string) {
let tempUrl = this.url.replace('${selected-orgid}',key); let tempUrl = this.url.replace('${selected-orgid}',key);
...@@ -212,7 +209,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -212,7 +209,7 @@ export default class IBizGroupPicker extends Vue {
* 树选中 * 树选中
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
public treeSelect(event: any) { public treeSelect(event: any) {
if(!event || JSON.parse(event).length == 0) { if(!event || JSON.parse(event).length == 0) {
...@@ -226,7 +223,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -226,7 +223,7 @@ export default class IBizGroupPicker extends Vue {
* 分组表选中 * 分组表选中
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
public groupSelect(event: any) { public groupSelect(event: any) {
if (!event || !event.select) { if (!event || !event.select) {
...@@ -258,7 +255,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -258,7 +255,7 @@ export default class IBizGroupPicker extends Vue {
* 确认 * 确认
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
public onOK() { public onOK() {
this.$emit('close', this.selects); this.$emit('close', this.selects);
...@@ -268,7 +265,7 @@ export default class IBizGroupPicker extends Vue { ...@@ -268,7 +265,7 @@ export default class IBizGroupPicker extends Vue {
* 取消 * 取消
* *
* @type {*} * @type {*}
* @memberof IBizGroupPicker * @memberof AppGroupPicker
*/ */
public onCancel() { public onCancel() {
this.$emit('close'); this.$emit('close');
......
...@@ -23,12 +23,12 @@ import { Component, Vue, Prop, Watch } from 'vue-property-decorator'; ...@@ -23,12 +23,12 @@ import { Component, Vue, Prop, Watch } from 'vue-property-decorator';
import { Subject } from 'rxjs'; import { Subject } from 'rxjs';
@Component({}) @Component({})
export default class IBizGroupSelect extends Vue { export default class AppGroupSelect extends Vue {
/** /**
* 名称标识 * 名称标识
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
@Prop() name!: string; @Prop() name!: string;
...@@ -36,7 +36,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -36,7 +36,7 @@ export default class IBizGroupSelect extends Vue {
* 树加载地址 * 树加载地址
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
@Prop() treeurl?:boolean; @Prop() treeurl?:boolean;
...@@ -44,7 +44,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -44,7 +44,7 @@ export default class IBizGroupSelect extends Vue {
* 数据接口地址 * 数据接口地址
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
@Prop() url!: string; @Prop() url!: string;
...@@ -52,7 +52,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -52,7 +52,7 @@ export default class IBizGroupSelect extends Vue {
* 多选 * 多选
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
@Prop({default: false}) multiple?: boolean; @Prop({default: false}) multiple?: boolean;
...@@ -60,7 +60,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -60,7 +60,7 @@ export default class IBizGroupSelect extends Vue {
* 数据对象 * 数据对象
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
@Prop() data: any; @Prop() data: any;
...@@ -68,7 +68,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -68,7 +68,7 @@ export default class IBizGroupSelect extends Vue {
* 过滤属性标识 * 过滤属性标识
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
@Prop() filter?: string; @Prop() filter?: string;
...@@ -76,7 +76,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -76,7 +76,7 @@ export default class IBizGroupSelect extends Vue {
* 是否启用 * 是否启用
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
@Prop() disabled?: boolean; @Prop() disabled?: boolean;
...@@ -84,7 +84,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -84,7 +84,7 @@ export default class IBizGroupSelect extends Vue {
* 值 * 值
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
@Prop() value: any; @Prop() value: any;
...@@ -92,7 +92,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -92,7 +92,7 @@ export default class IBizGroupSelect extends Vue {
* 上下文参数 * 上下文参数
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
@Prop() context: any; @Prop() context: any;
...@@ -100,7 +100,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -100,7 +100,7 @@ export default class IBizGroupSelect extends Vue {
* 关联属性 * 关联属性
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
@Prop() valueitem: any; @Prop() valueitem: any;
...@@ -108,7 +108,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -108,7 +108,7 @@ export default class IBizGroupSelect extends Vue {
* 填充属性 * 填充属性
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
@Prop() fillmap: any; @Prop() fillmap: any;
...@@ -116,7 +116,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -116,7 +116,7 @@ export default class IBizGroupSelect extends Vue {
* 选中项集合 * 选中项集合
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
protected selects: any[] = []; protected selects: any[] = [];
...@@ -124,7 +124,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -124,7 +124,7 @@ export default class IBizGroupSelect extends Vue {
* 值变化 * 值变化
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
@Watch('value') @Watch('value')
onValueChange(newVal: any) { onValueChange(newVal: any) {
...@@ -154,7 +154,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -154,7 +154,7 @@ export default class IBizGroupSelect extends Vue {
* 单选时选中名称 * 单选时选中名称
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
get selectName() { get selectName() {
if(this.selects.length > 0) { if(this.selects.length > 0) {
...@@ -166,11 +166,11 @@ export default class IBizGroupSelect extends Vue { ...@@ -166,11 +166,11 @@ export default class IBizGroupSelect extends Vue {
* 打开选择视图 * 打开选择视图
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
public openView() { public openView() {
const view: any = { const view: any = {
viewname: 'ibiz-group-picker', viewname: 'app-group-picker',
title: '分组选择' title: '分组选择'
}; };
const context: any = JSON.parse(JSON.stringify(this.context)); const context: any = JSON.parse(JSON.stringify(this.context));
...@@ -208,7 +208,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -208,7 +208,7 @@ export default class IBizGroupSelect extends Vue {
* 选择视图关闭 * 选择视图关闭
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
public openViewClose(result: any) { public openViewClose(result: any) {
this.selects = []; this.selects = [];
...@@ -222,7 +222,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -222,7 +222,7 @@ export default class IBizGroupSelect extends Vue {
* 数据删除 * 数据删除
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
public remove(item: any) { public remove(item: any) {
this.selects.splice(this.selects.indexOf(item), 1); this.selects.splice(this.selects.indexOf(item), 1);
...@@ -233,7 +233,7 @@ export default class IBizGroupSelect extends Vue { ...@@ -233,7 +233,7 @@ export default class IBizGroupSelect extends Vue {
* 设置值 * 设置值
* *
* @type {*} * @type {*}
* @memberof IBizGroupSelect * @memberof AppGroupSelect
*/ */
public setValue() { public setValue() {
let item: any = {}; let item: any = {};
......
...@@ -6,8 +6,6 @@ ...@@ -6,8 +6,6 @@
<script lang = 'ts'> <script lang = 'ts'>
import { Vue, Component, Prop, Watch } from "vue-property-decorator"; import { Vue, Component, Prop, Watch } from "vue-property-decorator";
import { Http } from '@/utils'; import { Http } from '@/utils';
import 'ibiz-vue-lib/lib/ibiz-vue-lib.css';
import {IBizSelectTree} from 'ibiz-vue-lib';
@Component({}) @Component({})
export default class AppOrgSelect extends Vue { export default class AppOrgSelect extends Vue {
......
...@@ -194,7 +194,7 @@ export default class WFGroupEditViewBase extends Vue { ...@@ -194,7 +194,7 @@ export default class WFGroupEditViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFGroupEditViewBase * @memberof WFGroupEditViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -223,7 +223,7 @@ export default class WFGroupGridViewBase extends Vue { ...@@ -223,7 +223,7 @@ export default class WFGroupGridViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFGroupGridViewBase * @memberof WFGroupGridViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -139,7 +139,7 @@ export default class WFGroupMPickupViewBase extends Vue { ...@@ -139,7 +139,7 @@ export default class WFGroupMPickupViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFGroupMPickupViewBase * @memberof WFGroupMPickupViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -121,7 +121,7 @@ export default class WFGroupPickupGridViewBase extends Vue { ...@@ -121,7 +121,7 @@ export default class WFGroupPickupGridViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFGroupPickupGridViewBase * @memberof WFGroupPickupGridViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -106,7 +106,7 @@ export default class WFGroupPickupViewBase extends Vue { ...@@ -106,7 +106,7 @@ export default class WFGroupPickupViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFGroupPickupViewBase * @memberof WFGroupPickupViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -4,13 +4,14 @@ import VueRouter from 'vue-router'; ...@@ -4,13 +4,14 @@ import VueRouter from 'vue-router';
import App from '@/App.vue'; import App from '@/App.vue';
import ElementUi from 'element-ui'; import ElementUi from 'element-ui';
import ViewUI from 'view-design'; import ViewUI from 'view-design';
import ibizLab from 'ibiz-vue-lib';
import { Interceptors } from '@/utils'; import { Interceptors } from '@/utils';
import {Print} from '@/utils/print'; import {Print} from '@/utils/print';
import i18n from '@/locale' import i18n from '@/locale'
import 'element-ui/lib/theme-chalk/index.css'; import 'element-ui/lib/theme-chalk/index.css';
import 'view-design/dist/styles/iview.css'; import 'view-design/dist/styles/iview.css';
import 'ibiz-vue-lib/lib/ibiz-vue-lib.css';
import '@/styles/default.less'; import '@/styles/default.less';
// 模拟数据 // 模拟数据
...@@ -31,6 +32,7 @@ Vue.config.errorHandler = function (err: any, vm: any, info: any) { ...@@ -31,6 +32,7 @@ Vue.config.errorHandler = function (err: any, vm: any, info: any) {
} }
Vue.config.productionTip = false; Vue.config.productionTip = false;
Vue.use(Print); Vue.use(Print);
Vue.use(ibizLab);
Vue.use(Vuex); Vue.use(Vuex);
Vue.use(VueRouter);; Vue.use(VueRouter);;
Vue.use(ElementUi, { Vue.use(ElementUi, {
......
...@@ -194,7 +194,7 @@ export default class WFMemberEditViewBase extends Vue { ...@@ -194,7 +194,7 @@ export default class WFMemberEditViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFMemberEditViewBase * @memberof WFMemberEditViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -223,7 +223,7 @@ export default class WFMemberGridViewBase extends Vue { ...@@ -223,7 +223,7 @@ export default class WFMemberGridViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFMemberGridViewBase * @memberof WFMemberGridViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -194,7 +194,7 @@ export default class WFProcessDefinitionEditViewBase extends Vue { ...@@ -194,7 +194,7 @@ export default class WFProcessDefinitionEditViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFProcessDefinitionEditViewBase * @memberof WFProcessDefinitionEditViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -223,7 +223,7 @@ export default class WFProcessDefinitionGridViewBase extends Vue { ...@@ -223,7 +223,7 @@ export default class WFProcessDefinitionGridViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFProcessDefinitionGridViewBase * @memberof WFProcessDefinitionGridViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -124,7 +124,7 @@ export default class WFREModelEditViewBase extends Vue { ...@@ -124,7 +124,7 @@ export default class WFREModelEditViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFREModelEditViewBase * @memberof WFREModelEditViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -194,7 +194,7 @@ export default class WFUserEditViewBase extends Vue { ...@@ -194,7 +194,7 @@ export default class WFUserEditViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFUserEditViewBase * @memberof WFUserEditViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -223,7 +223,7 @@ export default class WFUserGridViewBase extends Vue { ...@@ -223,7 +223,7 @@ export default class WFUserGridViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFUserGridViewBase * @memberof WFUserGridViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -139,7 +139,7 @@ export default class WFUserMPickupViewBase extends Vue { ...@@ -139,7 +139,7 @@ export default class WFUserMPickupViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFUserMPickupViewBase * @memberof WFUserMPickupViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -121,7 +121,7 @@ export default class WFUserPickupGridViewBase extends Vue { ...@@ -121,7 +121,7 @@ export default class WFUserPickupGridViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFUserPickupGridViewBase * @memberof WFUserPickupGridViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -106,7 +106,7 @@ export default class WFUserPickupViewBase extends Vue { ...@@ -106,7 +106,7 @@ export default class WFUserPickupViewBase extends Vue {
* @type {string} * @type {string}
* @memberof WFUserPickupViewBase * @memberof WFUserPickupViewBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -189,7 +189,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -189,7 +189,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @type {string} * @type {string}
* @memberof MainBase * @memberof MainBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -178,7 +178,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -178,7 +178,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @type {string} * @type {string}
* @memberof MainBase * @memberof MainBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -206,7 +206,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -206,7 +206,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @type {string} * @type {string}
* @memberof MainBase * @memberof MainBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -157,7 +157,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -157,7 +157,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @type {string} * @type {string}
* @memberof MainBase * @memberof MainBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -163,7 +163,7 @@ export default class MainBase extends Vue implements ControlInterface { ...@@ -163,7 +163,7 @@ export default class MainBase extends Vue implements ControlInterface {
* @type {string} * @type {string}
* @memberof MainBase * @memberof MainBase
*/ */
@Inject('navModel') @Inject({from:'navModel',default: 'tab'})
public navModel!:string; public navModel!:string;
/** /**
......
...@@ -37,11 +37,6 @@ ...@@ -37,11 +37,6 @@
git clone -b master $para2 ibzwf/ git clone -b master $para2 ibzwf/
export NODE_OPTIONS=--max-old-space-size=4096 export NODE_OPTIONS=--max-old-space-size=4096
cd ibzwf/ cd ibzwf/
mvn clean package -Pweb
cd ibzwf-app/ibzwf-app-web
mvn -Pweb docker:build
mvn -Pweb docker:push
docker -H $para1 stack deploy --compose-file=src/main/docker/ibzwf-app-web.yaml ibzlab-rt --with-registry-auth
</command> </command>
</hudson.tasks.Shell> </hudson.tasks.Shell>
</builders> </builders>
......
...@@ -9,6 +9,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \ ...@@ -9,6 +9,6 @@ CMD echo "The application will start in ${IBIZ_SLEEP}s..." && \
sleep ${IBIZ_SLEEP} && \ sleep ${IBIZ_SLEEP} && \
java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /ibzwf-app-web.jar java ${JAVA_OPTS} -Djava.security.egd=file:/dev/./urandom -jar /ibzwf-app-web.jar
EXPOSE 30003 EXPOSE 8080
ADD ibzwf-app-web.jar /ibzwf-app-web.jar ADD ibzwf-app-web.jar /ibzwf-app-web.jar
...@@ -3,22 +3,9 @@ services: ...@@ -3,22 +3,9 @@ services:
ibzwf-app-web: ibzwf-app-web:
image: registry.cn-shanghai.aliyuncs.com/ibizsys/ibzwf-app-web:latest image: registry.cn-shanghai.aliyuncs.com/ibizsys/ibzwf-app-web:latest
ports: ports:
- "30003:30003" - "8080:8080"
networks: networks:
- agent_network - agent_network
environment:
- SPRING_CLOUD_NACOS_DISCOVERY_IP=172.16.180.237
- SERVER_PORT=30003
- SPRING_CLOUD_NACOS_DISCOVERY_SERVER-ADDR=172.16.102.211:8848
- SPRING_REDIS_HOST=172.16.100.243
- SPRING_REDIS_PORT=6379
- SPRING_REDIS_DATABASE=0
- SPRING_DATASOURCE_USERNAME=a_A_5d9d78509
- SPRING_DATASOURCE_PASSWORD=@6dEfb3@
- SPRING_DATASOURCE_URL=jdbc:mysql://172.16.180.232:3306/a_A_5d9d78509?autoReconnect=true&useUnicode=true&characterEncoding=UTF-8&useOldAliasMetadataBehavior=true
- SPRING_DATASOURCE_DRIVER-CLASS-NAME=com.mysql.jdbc.Driver
- SPRING_DATASOURCE_DEFAULTSCHEMA=a_A_5d9d78509
- NACOS=172.16.102.211:8848
deploy: deploy:
resources: resources:
limits: limits:
......
<?xml version="1.1" encoding="UTF-8" standalone="no"?> !!!!模版产生代码错误:----
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.6.xsd"> Tip: If the failing expression is known to be legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)??
----
----
FTL stack trace ("~" means nesting-related):
- Failed at: ${dbinst.getUserName()} [in template "CODETEMPL_zh_CN" at line 28, column 24]
<!--输出实体[WF_PSSYSTEM]数据结构 --> ----
\ No newline at end of file
<!--输出实体[WF_GROUP]数据结构 -->
<changeSet author="a_A_5d9d78509" id="tab-wf_group-24-2">
<createTable tableName="IBZWFGROUP">
<column name="GROUPID" remarks="" type="VARCHAR(100)">
<constraints primaryKey="true" primaryKeyName="PK_WF_GROUP_GROUPID"/>
</column>
<column name="GROUPNAME" remarks="" type="VARCHAR(100)">
</column>
<column name="GROUPSCOPE" remarks="" type="VARCHAR(100)">
</column>
</createTable>
</changeSet>
<!--输出实体[WF_DEFINITION]数据结构 -->
<changeSet author="a_A_5d9d78509" id="tab-wf_definition-51-3">
<createTable tableName="IBZWFDEFINITION">
<column name="DEFINITIONKEY" remarks="" type="VARCHAR(100)">
<constraints primaryKey="true" primaryKeyName="PK_WF_DEFINITION_DEFINITIONKEY"/>
</column>
<column name="DEFINITIONNAME" remarks="" type="VARCHAR(100)">
</column>
<column name="MODELVERSION" remarks="" type="INT">
</column>
<column name="MODELENABLE" remarks="" type="INT">
</column>
<column name="PSSYSTEMID" remarks="" type="VARCHAR(100)">
</column>
<column name="TASKDEFINITIONKEY" remarks="" type="VARCHAR(100)">
</column>
<column name="MD5CHECK" remarks="" type="VARCHAR(100)">
</column>
<column name="BPMNFILE" remarks="" type="VARCHAR(1000)">
</column>
<column name="DEPLOYKEY" remarks="" type="VARCHAR(100)">
</column>
</createTable>
</changeSet>
<!--输出实体[WF_GROUP_MEMBER]数据结构 -->
<changeSet author="a_A_5d9d78509" id="tab-wf_group_member-40-4">
<createTable tableName="IBZWFMEMBER">
<column name="MEMBERID" remarks="" type="VARCHAR(100)">
<constraints primaryKey="true" primaryKeyName="PK_WF_GROUP_MEMBER_MEMBERID"/>
</column>
<column name="MEMBERNAME" remarks="" type="VARCHAR(100)">
</column>
<column name="GROUPID" remarks="" type="VARCHAR(100)">
</column>
<column name="USERID" remarks="" type="VARCHAR(100)">
</column>
</createTable>
</changeSet>
<!--输出实体[WF_PSSYSTEM]外键关系 -->
<!--输出实体[WF_GROUP]外键关系 -->
<!--输出实体[WF_DEFINITION]外键关系 -->
<!--输出实体[WF_GROUP_MEMBER]外键关系 -->
<changeSet author="a_A_5d9d78509" id="fk-wf_group_member-40-5">
<addForeignKeyConstraint baseColumnNames="GROUPID" baseTableName="IBZWFMEMBER" constraintName="DER1N_WF_GROUP_MEMBER_WF_GROUP" deferrable="false" initiallyDeferred="false" onDelete="RESTRICT" onUpdate="RESTRICT" referencedColumnNames="GROUPID" referencedTableName="IBZWFGROUP" validate="true"/>
</changeSet>
</databaseChangeLog>
package cn.ibizlab.util.client; package cn.ibizlab.util.client;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import java.util.List; import java.util.*;
@Component @Component
public class IBZWFFallback implements IBZWFFeignClient { public class IBZWFFallback implements IBZWFFeignClient {
...@@ -15,4 +15,9 @@ public class IBZWFFallback implements IBZWFFeignClient { ...@@ -15,4 +15,9 @@ public class IBZWFFallback implements IBZWFFeignClient {
public List<String> getbusinesskeysByUserId(String system, String userId, String entity, String processDefinitionKey, String taskDefinitionKey) { public List<String> getbusinesskeysByUserId(String system, String userId, String entity, String processDefinitionKey, String taskDefinitionKey) {
return null; return null;
} }
@Override
public Boolean deployBpmnFile(List<Map<String, Object>> bpmnfiles) {
return null;
}
} }
...@@ -2,7 +2,7 @@ package cn.ibizlab.util.client; ...@@ -2,7 +2,7 @@ package cn.ibizlab.util.client;
import org.springframework.cloud.openfeign.FeignClient; import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import java.util.List; import java.util.*;
@FeignClient(value = "ibzwf-api",fallback = IBZWFFallback.class) @FeignClient(value = "ibzwf-api",fallback = IBZWFFallback.class)
public interface IBZWFFeignClient public interface IBZWFFeignClient
...@@ -15,4 +15,7 @@ public interface IBZWFFeignClient ...@@ -15,4 +15,7 @@ public interface IBZWFFeignClient
@RequestMapping(method = RequestMethod.POST, value = "/{system}-user-{userId}/{entity}/process-definitions/{processDefinitionKey}/usertasks/{taskDefinitionKey}/tasks") @RequestMapping(method = RequestMethod.POST, value = "/{system}-user-{userId}/{entity}/process-definitions/{processDefinitionKey}/usertasks/{taskDefinitionKey}/tasks")
List<String> getbusinesskeysByUserId(@PathVariable("system") String system,@PathVariable("userId") String userId, List<String> getbusinesskeysByUserId(@PathVariable("system") String system,@PathVariable("userId") String userId,
@PathVariable("entity") String entity,@PathVariable("processDefinitionKey") String processDefinitionKey,@PathVariable("taskDefinitionKey") String taskDefinitionKey); @PathVariable("entity") String entity,@PathVariable("processDefinitionKey") String processDefinitionKey,@PathVariable("taskDefinitionKey") String taskDefinitionKey);
@RequestMapping(method = RequestMethod.POST, value = "/deploybpmn")
Boolean deployBpmnFile(@RequestBody List<Map<String,Object>> bpmnfiles);
} }
...@@ -12,6 +12,7 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty; ...@@ -12,6 +12,7 @@ import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Lazy; import org.springframework.context.annotation.Lazy;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import java.io.InputStream; import java.io.InputStream;
import java.util.*;
/** /**
* 权限:向uaa同步当前系统菜单、权限资源任务类 * 权限:向uaa同步当前系统菜单、权限资源任务类
...@@ -21,15 +22,14 @@ import java.io.InputStream; ...@@ -21,15 +22,14 @@ import java.io.InputStream;
@ConditionalOnProperty( name = "ibiz.enablePermissionValid", havingValue = "true") @ConditionalOnProperty( name = "ibiz.enablePermissionValid", havingValue = "true")
public class PermissionSyncJob implements ApplicationRunner { public class PermissionSyncJob implements ApplicationRunner {
@Autowired @Autowired
@Lazy @Lazy
private IBZUAAFeignClient client; private IBZUAAFeignClient client;
@Value("${ibiz.systemid:ibzwf}") @Value("${ibiz.systemid:ibzwf}")
private String systemId; private String systemId;
@Override @Override
public void run(ApplicationArguments args) { public void run(ApplicationArguments args) {
try { try {
...@@ -49,5 +49,6 @@ public class PermissionSyncJob implements ApplicationRunner { ...@@ -49,5 +49,6 @@ public class PermissionSyncJob implements ApplicationRunner {
catch (Exception ex) { catch (Exception ex) {
log.error(String.format("向[UAA]同步系统资源失败,请检查[UAA]服务是否正常! [%s]",ex)); log.error(String.format("向[UAA]同步系统资源失败,请检查[UAA]服务是否正常! [%s]",ex));
} }
} }
} }
\ No newline at end of file
Markdown 格式
0% or
您添加了 0 到此讨论。请谨慎行事。
先完成此消息的编辑!
想要评论请 注册