<template> <div class='view-container dedataview ibizbookdata-view'> <card class='view-card view-no-caption ' :dis-hover="true" :bordered="false"> <div class='view-top-messages'> <app-alert-group position='TOP' :context="context" :viewparam="viewparams" infoGroup='VMGroup6' viewname='ibizbookdataview'></app-alert-group> </div> <div class='content-container'> <div style="margin-bottom:6px;"> <div class="quick-group-container"> <app-quick-group :items="quickGroupModel" @valuechange="quickGroupValueChange"></app-quick-group> </div> <div class="quick-search-container"> <view_quicksearchform :viewState="viewState" :viewparams="viewparams" :context="context" :pViewCtx="viewCtx" :showBusyIndicator="true" v-show="true" loaddraftAction="FilterGetDraft" loadAction="FilterGet" @valuechange="quickFormValueChange" name="quicksearchform" ref='quicksearchform' @closeview="closeView($event)"> </view_quicksearchform> </div> <i-input v-show='!this.isExpandSearchForm ' v-model='query' search @on-search='onSearch' placeholder="图书名称" class='pull-left' style='max-width: 400px;margin-top:6px;padding-left: 24px;' /> <div class='pull-right'> <div class='toolbar-container'> <tooltip :transfer="true" :max-width="600"> <i-button v-show="toolBarModels.deuiaction1.visabled" :disabled="toolBarModels.deuiaction1.disabled" class=' 100' v-button-loading:i-button @click="toolbar_click({ tag: 'deuiaction1' }, $event)"> <i class='fa fa-file-text-o'></i> <span class='caption'>{{$t('entities.ibizbook.dataviewtoolbar_toolbar.deuiaction1.caption')}}</span> </i-button> <div slot='content'>{{$t('entities.ibizbook.dataviewtoolbar_toolbar.deuiaction1.tip')}}</div> </tooltip> <tooltip :transfer="true" :max-width="600"> <i-button v-show="toolBarModels.deuiaction2.visabled" :disabled="toolBarModels.deuiaction2.disabled" class=' 100' v-button-loading:i-button @click="toolbar_click({ tag: 'deuiaction2' }, $event)"> <i class='fa fa-remove'></i> <span class='caption'>{{$t('entities.ibizbook.dataviewtoolbar_toolbar.deuiaction2.caption')}}</span> </i-button> <div slot='content'>{{$t('entities.ibizbook.dataviewtoolbar_toolbar.deuiaction2.tip')}}</div> </tooltip> <tooltip :transfer="true" :max-width="600"> <i-button v-show="toolBarModels.deuiaction3.visabled" :disabled="toolBarModels.deuiaction3.disabled" class=' 100' v-button-loading:i-button @click="toolbar_click({ tag: 'deuiaction3' }, $event)"> <i class='fa fa-filter'></i> <span class='caption'>{{$t('entities.ibizbook.dataviewtoolbar_toolbar.deuiaction3.caption')}}</span> </i-button> <div slot='content'>{{$t('entities.ibizbook.dataviewtoolbar_toolbar.deuiaction3.tip')}}</div> </tooltip> </div> </div> </div> <view_searchform :viewState="viewState" :viewparams="viewparams" :context="context" :pViewCtx="viewCtx" :showBusyIndicator="true" v-show="isExpandSearchForm" loaddraftAction="FilterGetDraft" loadAction="FilterGet" name="searchform" ref='searchform' @search="searchform_search($event)" @load="searchform_load($event)" @save="searchform_save($event)" @closeview="closeView($event)"> </view_searchform> <view_dataview :viewState="viewState" :viewparams="viewparams" :context="context" :pViewCtx="viewCtx" :isSingleSelect="isSingleSelect" createAction="Create" removeAction="Remove" updateAction="Update" fetchAction="FetchDefault" :showBusyIndicator="true" :newdata="newdata" :opendata="opendata" name="dataview" ref='dataview' @rowdblclick="dataview_rowdblclick($event)" @selectionchange="dataview_selectionchange($event)" @remove="dataview_remove($event)" @load="dataview_load($event)" @beforeload="dataview_beforeload($event)" @closeview="closeView($event)"> </view_dataview> </div> </card> </div> </template> // 基于 @VIEW/实体数据视图/VIEW-BASE.vue.ftl 生成 <script lang='tsx'> import { Vue, Component, Prop, Provide, Emit, Watch,Inject } from 'vue-property-decorator'; import { UIActionTool, Util } from '@/utils'; import axios from 'axios'; import { AppMessageBox } from '@/utils/app-message-box/app-message-box'; import NavDataService from '@/service/app/navdata-service'; import { Subject,Subscription } from 'rxjs'; import IBIZBOOKService from '@/service/ibizbook/ibizbook-service'; import IBIZBOOKAuthService from '@/authservice/ibizbook/ibizbook-auth-service'; import DataViewEngine from '@engine/view/data-view-engine'; import IBIZBOOKUIService from '@/uiservice/ibizbook/ibizbook-ui-service'; import CodeListService from "@/codelist/codelist-service"; @Component({ components: { }, }) export default class IBIZBOOKDataViewBase extends Vue { /** * 实体服务对象 * * @type {IBIZBOOKService} * @memberof IBIZBOOKDataViewBase */ public appEntityService: IBIZBOOKService = new IBIZBOOKService(); /** * 实体UI服务对象 * * @type IBIZBOOKUIService * @memberof IBIZBOOKDataViewBase */ public appUIService: IBIZBOOKUIService = new IBIZBOOKUIService(); /** * 数据变化 * * @param {*} val * @returns {*} * @memberof IBIZBOOKDataViewBase */ @Emit() public viewDatasChange(val: any):any { return val; } /** * 传入视图上下文 * * @type {string} * @memberof IBIZBOOKDataViewBase */ @Prop() public viewdata!: string; /** * 传入视图参数 * * @type {string} * @memberof IBIZBOOKDataViewBase */ @Prop() public viewparam!: string; /** * 视图默认使用 * * @type {boolean} * @memberof IBIZBOOKDataViewBase */ @Prop({ default: true }) public viewDefaultUsage!: boolean; /** * 视图默认使用 * * @type {string} * @memberof IBIZBOOKDataViewBase */ @Inject({from:'navModel',default: 'tab'}) public navModel!:string; /** * 视图标识 * * @type {string} * @memberof IBIZBOOKDataViewBase */ public viewtag: string = 'b0c93f3f44b11b2fab1afa559b374b40'; /** * 视图类型 * * @type {string} * @memberof IBIZBOOKDataViewBase */ public viewType: string = 'DEDATAVIEW'; /** * 自定义视图导航上下文集合 * * @type {*} * @memberof IBIZBOOKDataViewBase */ public customViewNavContexts:any ={ }; /** * 自定义视图导航参数集合 * * @type {*} * @memberof IBIZBOOKDataViewBase */ public customViewParams:any ={ }; /** * 视图模型数据 * * @type {*} * @memberof IBIZBOOKDataViewBase */ public model: any = { srfCaption: 'entities.ibizbook.views.dataview.caption', srfTitle: 'entities.ibizbook.views.dataview.title', srfSubTitle: 'entities.ibizbook.views.dataview.subtitle', dataInfo: '' } /** * 视图参数变化 * * @param {*} newVal * @param {*} oldVal * @memberof IBIZBOOKDataViewBase */ @Watch('viewparam',{immediate: true, deep: true}) onParamData(newVal: any, oldVal: any) { if(newVal){ this.viewparams = {}; if(typeof newVal == 'string') { Object.assign(this.viewparams, JSON.parse(this.viewparam)); }else{ this.viewparams = Util.deepCopy(this.viewparam); } } } /** * 处理应用上下文变化 * * @param {*} newVal * @param {*} oldVal * @memberof IBIZBOOKDataViewBase */ @Watch('viewdata') onViewData(newVal: any, oldVal: any) { const _this: any = this; if (!Object.is(newVal, oldVal) && _this.engine) { this.$nextTick(()=>{ _this.parseViewParam(); _this.engine.load(); }); } else if(!Object.is(newVal, oldVal) && _this.refresh && _this.refresh instanceof Function) { _this.refresh(); } } /** * 容器模型 * * @type {*} * @memberof IBIZBOOKDataViewBase */ public containerModel: any = { view_quicksearchform: { name: 'quicksearchform', type: 'SEARCHFORM' }, view_searchform: { name: 'searchform', type: 'SEARCHFORM' }, view_toolbar: { name: 'toolbar', type: 'TOOLBAR' }, view_dataview: { name: 'dataview', type: 'DATAVIEW' }, }; /** * 视图操作参数 * * @type {*} * @readonly * @memberof IBIZBOOKDataViewBase */ public viewCtx: any = {}; /** * 视图刷新 * * @param {*} args * @memberof IBIZBOOKDataViewBase */ public refresh(args?: any): void { const refs: any = this.$refs; if (refs && refs.dataview) { refs.dataview.refresh(); } } /** * 计数器刷新 * * @memberof IBIZBOOKDataViewBase */ public counterRefresh(){ const _this:any =this; if(_this.counterServiceArray && _this.counterServiceArray.length >0){ _this.counterServiceArray.forEach((item:any) =>{ if(item.refreshData && item.refreshData instanceof Function){ item.refreshData(); } }) } } /** * 视图状态订阅对象 * * @public * @type {Subject<{action: string, data: any}>} * @memberof IBIZBOOKDataViewBase */ public viewState: Subject<ViewState> = new Subject(); /** * 工具栏模型 * * @type {*} * @memberof IBIZBOOKDataView */ public toolBarModels: any = { deuiaction1: { name: 'deuiaction1', actiontarget: 'NONE', caption: '新建', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'New', target: '' } }, deuiaction2: { name: 'deuiaction2', actiontarget: 'NONE', caption: '删除', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'Remove', target: 'MULTIKEY' } }, deuiaction3: { name: 'deuiaction3', actiontarget: 'NONE', caption: '过滤', disabled: false, type: 'DEUIACTION', visabled: true,noprivdisplaymode:2,dataaccaction: '', uiaction: { tag: 'ToggleFilter', target: '' } }, }; /** * 视图引擎 * * @public * @type {Engine} * @memberof IBIZBOOKDataViewBase */ public engine: DataViewEngine = new DataViewEngine(); /** * 引擎初始化 * * @public * @memberof IBIZBOOKDataViewBase */ public engineInit(): void { this.engine.init({ view: this, opendata: (args: any[],fullargs?:any[],params?: any, $event?: any, xData?: any) => { this.opendata(args,fullargs, params, $event, xData); }, newdata: (args: any[],fullargs?:any[],params?: any, $event?: any, xData?: any) => { this.newdata(args,fullargs, params, $event, xData); }, searchform: this.$refs.searchform, dataview: this.$refs.dataview, keyPSDEField: 'ibizbook', majorPSDEField: 'ibizbookname', isLoadDefault: true, }); } /** * 应用导航服务 * * @type {*} * @memberof IBIZBOOKDataViewBase */ public navDataService = NavDataService.getInstance(); /** * 导航服务事件 * * @public * @type {(Subscription | undefined)} * @memberof IBIZBOOKDataViewBase */ public serviceStateEvent: Subscription | undefined; /** * 门户部件状态对象 * * @type {*} * @memberof IBIZBOOKDataViewBase */ @Prop() public portletState?: any; /** * 门户部件状态事件 * * @public * @type {(Subscription | undefined)} * @memberof IBIZBOOKDataViewBase */ public portletStateEvent: Subscription | undefined; /** * 门户部件状态事件 * * @public * @type {(Subscription | undefined)} * @memberof IBIZBOOKDataViewBase */ public formDruipartEvent: Subscription | undefined; /** * 应用上下文 * * @type {*} * @memberof IBIZBOOKDataViewBase */ public context:any = {}; /** * 视图参数 * * @type {*} * @memberof IBIZBOOKDataViewBase */ public viewparams:any = {}; /** * 视图缓存数据 * * @type {*} * @memberof IBIZBOOKDataViewBase */ public viewCacheData:any; /** * 计数器服务对象集合 * * @type {Array<*>} * @memberof IBIZBOOKDataViewBase */ public counterServiceArray:Array<any> = []; /** * 解析视图参数 * * @public * @memberof IBIZBOOKDataViewBase */ public parseViewParam(inputvalue:any = null): void { for(let key in this.context){ delete this.context[key]; } if(this.$store.getters.getAppData() && this.$store.getters.getAppData().context){ Object.assign(this.context,this.$store.getters.getAppData().context); } if (!this.viewDefaultUsage && this.viewdata && !Object.is(this.viewdata, '')) { if(typeof this.viewdata == 'string') { Object.assign(this.context, JSON.parse(this.viewdata)); } if(this.context && this.context.srfparentdename){ Object.assign(this.viewparams,{srfparentdename:this.context.srfparentdename}); } if(this.context && this.context.srfparentkey){ Object.assign(this.viewparams,{srfparentkey:this.context.srfparentkey}); } this.handleCustomViewData(); return; } const path = (this.$route.matched[this.$route.matched.length - 1]).path; const keys: Array<any> = []; const curReg = this.$pathToRegExp.pathToRegexp(path, keys); const matchArray = curReg.exec(this.$route.path); let tempValue: Object = {}; keys.forEach((item: any, index: number) => { if(matchArray[index + 1]){ Object.defineProperty(tempValue, item.name, { enumerable: true, value: decodeURIComponent(matchArray[index + 1]) }); } }); this.$viewTool.formatRouteParams(tempValue,this.$route,this.context,this.viewparams); if(inputvalue){ Object.assign(this.context,{'ibizbook':inputvalue}); } //初始化视图唯一标识 Object.assign(this.context,{srfsessionid:this.$util.createUUID()}); this.handleCustomViewData(); //初始化导航数据 this.initNavDataWithRoute(); } /** * 处理自定义视图数据 * * @memberof IBIZBOOKDataViewBase */ public handleCustomViewData(){ if(Object.keys(this.customViewNavContexts).length > 0){ Object.keys(this.customViewNavContexts).forEach((item:any) =>{ let tempContext:any = {}; let curNavContext:any = this.customViewNavContexts[item]; this.handleCustomDataLogic(curNavContext,tempContext,item); Object.assign(this.context,tempContext); }) } if(Object.keys(this.customViewParams).length > 0){ Object.keys(this.customViewParams).forEach((item:any) =>{ let tempParam:any = {}; let curNavParam:any = this.customViewParams[item]; this.handleCustomDataLogic(curNavParam,tempParam,item); Object.assign(this.viewparams,tempParam); }) } } /** * 处理自定义视图数据逻辑 * * @memberof IBIZBOOKDataViewBase */ public handleCustomDataLogic(curNavData:any,tempData:any,item:string){ // 直接值直接赋值 if(curNavData.isRawValue){ if(Object.is(curNavData.value,"null") || Object.is(curNavData.value,"")){ Object.defineProperty(tempData, item.toLowerCase(), { value: null, writable : true, enumerable : true, configurable : true }); }else{ Object.defineProperty(tempData, item.toLowerCase(), { value: curNavData.value, writable : true, enumerable : true, configurable : true }); } }else{ // 先从导航上下文取数,没有再从导航参数(URL)取数,如果导航上下文和导航参数都没有则为null if(this.context[(curNavData.value).toLowerCase()] != null){ Object.defineProperty(tempData, item.toLowerCase(), { value: this.context[(curNavData.value).toLowerCase()], writable : true, enumerable : true, configurable : true }); }else{ if(this.viewparams[(curNavData.value).toLowerCase()] != null){ Object.defineProperty(tempData, item.toLowerCase(), { value: this.viewparams[(curNavData.value).toLowerCase()], writable : true, enumerable : true, configurable : true }); }else{ Object.defineProperty(tempData, item.toLowerCase(), { value: null, writable : true, enumerable : true, configurable : true }); } } } } /** * 初始化导航数据(路由模式) * * @memberof IBIZBOOKDataViewBase */ public initNavDataWithRoute(data:any = null, isNew:boolean = false, isAlways:boolean = false){ if( isAlways || (this.viewDefaultUsage && Object.is(this.navModel,"route")) ){ this.navDataService.addNavData({id:'ibizbookdata-view',tag:this.viewtag,srfkey:isNew ? null : this.context.ibizbook,title:this.$t(this.model.srfCaption),data:data,context:this.context,viewparams:this.viewparams,path:this.$route.fullPath}); } } /** * 初始化导航数据(分页模式) * * @memberof IBIZBOOKDataViewBase */ public initNavDataWithTab(data:any = null,isOnlyAdd:boolean = true, isAlways:boolean = false){ if( isAlways || (this.viewDefaultUsage && !Object.is(this.navModel,"route")) ){ this.navDataService.addNavDataByOnly({id:'ibizbookdata-view',tag:this.viewtag,srfkey:this.context.ibizbook,title:this.$t(this.model.srfCaption),data:data,context:this.context,viewparams:this.viewparams,path:this.$route.fullPath},isOnlyAdd); } } /** * Vue声明周期 * * @memberof IBIZBOOKDataViewBase */ public created() { this.afterCreated(); } /** * 执行created后的逻辑 * * @memberof IBIZBOOKDataViewBase */ public afterCreated(){ let _this:any = this; const secondtag = _this.$util.createUUID(); _this.$store.commit('viewaction/createdView', { viewtag: _this.viewtag, secondtag: secondtag }); _this.viewtag = secondtag; _this.parseViewParam(); _this.serviceStateEvent = _this.navDataService.serviceState.subscribe(({ action,name, data }:{ action:string,name:any,data:any }) => { if(!Object.is(name,'ibizbookdata-view')){ return; } if (Object.is(action, 'viewrefresh')) { _this.$nextTick(()=>{ _this.parseViewParam(data); if(_this.engine){ _this.engine.load(); } }); } }); if(_this.portletState){ _this.portletStateEvent = _this.portletState.subscribe((res:any) =>{ if(!Object.is(res.name,'IBIZBOOKDataView')){ return; } if(Object.is(res.action,'refresh') && _this.refresh && _this.refresh instanceof Function){ _this.refresh(); } }) } _this.initViewCtx(); } /** * 初始化视图操作参数 * * @memberof IBIZBOOKDataViewBase */ initViewCtx() { Object.assign(this.viewCtx, { app: this.$root, view: this, viewGlobal: {}, viewNavData: {}, viewNavContext: this.context, viewNavParam: this.viewparams, messagebox: AppMessageBox.getInstance(), }); Object.assign(this.viewCtx, { appGlobal: this.$store.getters.getAppGlobal() }); if (this.$store.getters.getRouteViewGlobal(this.context.srfsessionid)) { Object.assign(this.viewCtx, { routeViewGlobal: this.$store.getters.getRouteViewGlobal(this.context.srfsessionid) }); } else { this.$store.commit('addRouteViewGlobal', { tag: this.context.srfsessionid, param: {} }); Object.assign(this.viewCtx, { routeViewGlobal: this.$store.getters.getRouteViewGlobal(this.context.srfsessionid) }); } if (!this.viewDefaultUsage && this.viewdata && !Object.is(this.viewdata, '')) { // 嵌入视图 Object.assign(this.viewCtx, { topview: this.$store.getters.getView(this.context.srfsessionid) }); } else { // 顶层视图 this.$store.commit('addView', { tag: this.context.srfsessionid, param: this }); Object.assign(this.viewCtx, { topview: this }); } } /** * 销毁之前 * * @memberof IBIZBOOKDataViewBase */ public beforeDestroy() { this.$store.commit('viewaction/removeView', this.viewtag); let _this: any = this if (_this.serviceStateEvent) { _this.serviceStateEvent.unsubscribe(); } if (_this.portletStateEvent) { _this.portletStateEvent.unsubscribe(); } if (_this.formDruipartEvent) { _this.formDruipartEvent.unsubscribe(); } if (_this.engine) { _this.engine.destroy(); } } /** * Vue声明周期(组件初始化完毕) * * @memberof IBIZBOOKDataViewBase */ public mounted() { this.afterMounted(); } /** * 执行mounted后的逻辑 * * @memberof IBIZBOOKDataViewBase */ public afterMounted(){ const _this: any = this; _this.engineInit(); if (_this.loadModel && _this.loadModel instanceof Function) { _this.loadModel(); } _this.loadQuickGroupModel(); } /** * searchform 部件 search 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZBOOKDataViewBase */ public searchform_search($event: any, $event2?: any) { this.engine.onCtrlEvent('searchform', 'search', $event); } /** * searchform 部件 load 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZBOOKDataViewBase */ public searchform_load($event: any, $event2?: any) { this.engine.onCtrlEvent('searchform', 'load', $event); } /** * searchform 部件 save 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZBOOKDataViewBase */ public searchform_save($event: any, $event2?: any) { this.engine.onCtrlEvent('searchform', 'save', $event); } /** * toolbar 部件 click 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZBOOKDataViewBase */ public toolbar_click($event: any, $event2?: any) { if (Object.is($event.tag, 'deuiaction1')) { this.toolbar_deuiaction1_click(null, '', $event2); } if (Object.is($event.tag, 'deuiaction2')) { this.toolbar_deuiaction2_click(null, '', $event2); } if (Object.is($event.tag, 'deuiaction3')) { this.toolbar_deuiaction3_click(null, '', $event2); } } /** * dataview 部件 rowdblclick 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZBOOKDataViewBase */ public dataview_rowdblclick($event: any, $event2?: any) { this.engine.onCtrlEvent('dataview', 'rowdblclick', $event); } /** * dataview 部件 selectionchange 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZBOOKDataViewBase */ public dataview_selectionchange($event: any, $event2?: any) { this.engine.onCtrlEvent('dataview', 'selectionchange', $event); } /** * dataview 部件 remove 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZBOOKDataViewBase */ public dataview_remove($event: any, $event2?: any) { this.engine.onCtrlEvent('dataview', 'remove', $event); } /** * dataview 部件 load 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZBOOKDataViewBase */ public dataview_load($event: any, $event2?: any) { this.engine.onCtrlEvent('dataview', 'load', $event); } /** * dataview 部件 beforeload 事件 * * @param {*} [args={}] * @param {*} $event * @memberof IBIZBOOKDataViewBase */ public dataview_beforeload($event: any, $event2?: any) { this.engine.onCtrlEvent('dataview', 'beforeload', $event); } /** * 逻辑事件 * * @param {*} [params={}] * @param {*} [tag] * @param {*} [$event] * @memberof */ public toolbar_deuiaction1_click(params: any = {}, tag?: any, $event?: any) { // 参数 // 取数 let datas: any[] = []; let xData: any = null; // _this 指向容器对象 const _this: any = this; let paramJO:any = {}; let contextJO:any = {}; xData = this.$refs.dataview; if (xData.getDatas && xData.getDatas instanceof Function) { datas = [...xData.getDatas()]; } if(params){ datas = [params]; } // 界面行为 this.New(datas, contextJO,paramJO, $event, xData,this,"IBIZBOOK"); } /** * 逻辑事件 * * @param {*} [params={}] * @param {*} [tag] * @param {*} [$event] * @memberof */ public toolbar_deuiaction2_click(params: any = {}, tag?: any, $event?: any) { // 参数 // 取数 let datas: any[] = []; let xData: any = null; // _this 指向容器对象 const _this: any = this; let paramJO:any = {}; let contextJO:any = {}; xData = this.$refs.dataview; if (xData.getDatas && xData.getDatas instanceof Function) { datas = [...xData.getDatas()]; } if(params){ datas = [params]; } // 界面行为 this.Remove(datas, contextJO,paramJO, $event, xData,this,"IBIZBOOK"); } /** * 逻辑事件 * * @param {*} [params={}] * @param {*} [tag] * @param {*} [$event] * @memberof */ public toolbar_deuiaction3_click(params: any = {}, tag?: any, $event?: any) { // 参数 // 取数 let datas: any[] = []; let xData: any = null; // _this 指向容器对象 const _this: any = this; let paramJO:any = {}; let contextJO:any = {}; xData = this.$refs.dataview; if (xData.getDatas && xData.getDatas instanceof Function) { datas = [...xData.getDatas()]; } if(params){ datas = [params]; } // 界面行为 this.ToggleFilter(datas, contextJO,paramJO, $event, xData,this,"IBIZBOOK"); } /** * 打开新建数据视图 * * @param {any[]} args * @param {*} [params] * @param {*} [fullargs] * @param {*} [$event] * @param {*} [xData] * @memberof IBIZBOOKDataView */ public newdata(args: any[],fullargs?:any[], params?: any, $event?: any, xData?: any) { let localContext:any = null; let localViewParam:any =null; const data: any = {}; if(args[0].srfsourcekey){ data.srfsourcekey = args[0].srfsourcekey; } let tempContext = JSON.parse(JSON.stringify(this.context)); delete tempContext.ibizbook; if(args.length >0){ Object.assign(tempContext,args[0]); } const deResParameters: any[] = []; const parameters: any[] = [ { pathName: 'ibizbooks', parameterName: 'ibizbook' }, { pathName: 'editview', parameterName: 'editview' }, ]; const _this: any = this; const openIndexViewTab = (data: any) => { const _data: any = { w: (new Date().getTime()) }; Object.assign(_data, data); const routePath = this.$viewTool.buildUpRoutePath(this.$route, tempContext, deResParameters, parameters, args, _data); this.$router.push(routePath); } openIndexViewTab(data); } /** * 打开编辑数据视图 * * @param {any[]} args * @param {*} [params] * @param {*} [fullargs] * @param {*} [$event] * @param {*} [xData] * @memberof IBIZBOOKDataView */ public opendata(args: any[],fullargs?:any,params?: any, $event?: any, xData?: any) { if(!this.viewDefaultUsage){ if(Object.is(this.navModel,"route")){ this.initNavDataWithRoute(this.viewCacheData, false, true); }else{ this.initNavDataWithTab(this.viewCacheData, false, true); } } let localContext:any = null; let localViewParam:any =null; const data: any = {}; let tempContext = JSON.parse(JSON.stringify(this.context)); if(args.length >0){ Object.assign(tempContext,args[0]); } const deResParameters: any[] = []; const parameters: any[] = [ { pathName: 'ibizbooks', parameterName: 'ibizbook' }, { pathName: 'editview', parameterName: 'editview' }, ]; const _this: any = this; if (fullargs && fullargs.length > 0) { const _args = fullargs[0]; if (_args['srfprocessdefinitionkey'] && _args['srftaskdefinitionkey']) { Object.assign(data, { processDefinitionKey: _args['srfprocessdefinitionkey'], taskDefinitionKey: _args['srftaskdefinitionkey'] }); if (_args['srftaskid']) { Object.assign(data, { 'srftaskid': _args['srftaskid'] }); } } } if(fullargs && fullargs.copymode){ Object.assign(data,{copymode:true}); } const openIndexViewTab = (data: any) => { const routePath = this.$viewTool.buildUpRoutePath(this.$route, tempContext, deResParameters, parameters, args, data); this.$router.push(routePath); } openIndexViewTab(data); } /** * 新建 * * @param {any[]} args 当前数据 * @param {any} contextJO 行为附加上下文 * @param {*} [params] 附加参数 * @param {*} [$event] 事件源 * @param {*} [xData] 执行行为所需当前部件 * @param {*} [actionContext] 执行行为上下文 * @memberof IBIZBOOKDataViewBase */ public New(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) { const _this: any = this; if (_this.newdata && _this.newdata instanceof Function) { const data: any = {}; _this.newdata([{ ...data }],[{ ...data }], params, $event, xData); } else { _this.$Notice.error({ title: '错误', desc: 'newdata 视图处理逻辑不存在,请添加!' }); } } /** * 删除 * * @param {any[]} args 当前数据 * @param {any} contextJO 行为附加上下文 * @param {*} [params] 附加参数 * @param {*} [$event] 事件源 * @param {*} [xData] 执行行为所需当前部件 * @param {*} [actionContext] 执行行为上下文 * @memberof IBIZBOOKDataViewBase */ public Remove(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) { const _this: any = this; if (!xData || !(xData.remove instanceof Function)) { return ; } xData.remove(args); } /** * 过滤 * * @param {any[]} args 当前数据 * @param {any} contextJO 行为附加上下文 * @param {*} [params] 附加参数 * @param {*} [$event] 事件源 * @param {*} [xData] 执行行为所需当前部件 * @param {*} [actionContext] 执行行为上下文 * @memberof IBIZBOOKDataViewBase */ public ToggleFilter(args: any[],contextJO?:any, params?: any, $event?: any, xData?: any,actionContext?:any,srfParentDeName?:string) { const _this: any = this; if (_this.hasOwnProperty('isExpandSearchForm')) { _this.isExpandSearchForm = !_this.isExpandSearchForm; } } /** * 关闭视图 * * @param {any[]} args * @memberof IBIZBOOKDataViewBase */ public closeView(args: any[]): void { let _view: any = this; if (_view.viewdata) { _view.$emit('viewdataschange', Array.isArray(args)?args:[args]); _view.$emit('close', Array.isArray(args)?args:[args]); } else if (_view.$tabPageExp) { _view.$tabPageExp.onClose(_view.$route.fullPath); }else{ _view.$router.back(); } } /** * 销毁视图回调 * * @memberof IBIZBOOKDataViewBase */ public destroyed(){ this.afterDestroyed(); } /** * 执行destroyed后的逻辑 * * @memberof IBIZBOOKDataViewBase */ public afterDestroyed(){ if (this.viewDefaultUsage) { let localStoreLength = Object.keys(localStorage); if(localStoreLength.length > 0){ localStoreLength.forEach((item:string) =>{ if(item.startsWith(this.context.srfsessionid)){ localStorage.removeItem(item); } }) } if(Object.is(this.navModel,"tab")){ this.navDataService.removeNavDataByTag(this.viewtag); } } // 销毁计数器定时器 if(this.counterServiceArray && this.counterServiceArray.length >0){ this.counterServiceArray.forEach((item:any) =>{ if(item.destroyCounter && item.destroyCounter instanceof Function){ item.destroyCounter(); } }) } } /** * 是否单选 * * @type {boolean} * @memberof IBIZBOOKDataViewBase */ public isSingleSelect: boolean = false; /** * 视图唯一标识 * * @type {string} * @memberof IBIZBOOKDataViewBase */ public viewUID: string = 'sample-ibizbookdata-view'; /** * 搜索值 * * @type {string} * @memberof IBIZBOOKDataViewBase */ public query: string = ''; /** * 是否展开搜索表单 * * @type {boolean} * @memberof IBIZBOOKDataViewBase */ public isExpandSearchForm: boolean = false; /** * 快速搜索 * * @param {*} $event * @memberof IBIZBOOKDataViewBase */ public onSearch($event: any): void { const refs: any = this.$refs; if (refs.kanban) { refs.kanban.refresh({}); } } /** * 代码表服务对象 * * @type {CodeListService} * @memberof IBIZBOOKDataViewBase */ public codeListService:CodeListService = new CodeListService(); /** * 快速分组数据对象 * * @memberof IBIZBOOKDataViewBase */ public quickGroupData:any; /** * 快速分组是否有抛值 * * @memberof IBIZBOOKDataViewBase */ public isEmitQuickGroupValue:boolean = false; /** * 快速分组模型 * * @memberof IBIZBOOKDataViewBase */ public quickGroupModel:Array<any> = []; /** * 加载快速分组模型 * * @memberof IBIZBOOKDataViewBase */ public loadQuickGroupModel(){ let quickGroupCodeList:any = {tag:'Bookgroup',codelistType:'STATIC'}; if(quickGroupCodeList.tag && Object.is(quickGroupCodeList.codelistType,"STATIC")){ const codelist = this.$store.getters.getCodeList(quickGroupCodeList.tag); if (codelist) { this.quickGroupModel = [...this.handleDynamicData(JSON.parse(JSON.stringify(codelist.items)))]; } else { console.log(`----${quickGroupCodeList.tag}----代码表不存在`); } }else if(quickGroupCodeList.tag && Object.is(quickGroupCodeList.codelistType,"DYNAMIC")){ this.codeListService.getItems(quickGroupCodeList.tag,{},{}).then((res:any) => { this.quickGroupModel = res; }).catch((error:any) => { console.log(`----${quickGroupCodeList.tag}----代码表不存在`); }); } } /** * 处理快速分组模型动态数据部分(%xxx%) * * @memberof IBIZBOOKDataViewBase */ public handleDynamicData(inputArray:Array<any>){ if(inputArray.length >0){ inputArray.forEach((item:any) =>{ if(item.data && Object.keys(item.data).length >0){ Object.keys(item.data).forEach((name:any) =>{ let value: any = item.data[name]; if (value && typeof(value)=='string' && value.startsWith('%') && value.endsWith('%')) { const key = (value.substring(1, value.length - 1)).toLowerCase(); if (this.context[key]) { value = this.context[key]; } else if(this.viewparams[key]){ value = this.viewparams[key]; } } item.data[name] = value; }) } }) } return inputArray; } /** * 快速分组值变化 * * @memberof IBIZBOOKDataViewBase */ public quickGroupValueChange($event:any){ if($event){ this.quickGroupData = $event.data; if(this.isEmitQuickGroupValue){ this.onSearch($event); } } this.isEmitQuickGroupValue = true; } /** * 快速搜索栏数据对象 * * @memberof IBIZBOOKDataViewBase */ public quickFormData:any; /** * 快速搜索栏值变化 * * @memberof IBIZBOOKDataViewBase */ public quickFormValueChange($event:any){ this.quickFormData = $event; this.onSearch($event); } } </script> <style lang='scss'> @import './ibizbookdata-view.scss'; </style>