<template> <studio-view viewName="campaigninfo_schedule" viewTitle="日程安排" class='deeditview campaign-info-schedule'> <view_form :viewState="viewState" :viewparams="viewparams" :context="context" :autosave="false" :viewtag="viewtag" :showBusyIndicator="true" updateAction="Update" removeAction="Remove" loaddraftAction="GetDraft" loadAction="Get" createAction="Create" WFSubmitAction="" WFStartAction="" style='' name="form" ref='form' @save="form_save($event)" @remove="form_remove($event)" @load="form_load($event)" @closeview="closeView($event)"> </view_form> </studio-view> </template> <script lang='tsx'> import { Vue, Component, Prop, Provide, Emit, Watch } from 'vue-property-decorator'; import { UIActionTool,Util } from '@/utils'; import { Subject } from 'rxjs'; import CampaignService from '@/service/campaign/campaign-service'; import EditViewEngine from '@engine/view/edit-view-engine'; @Component({ components: { }, }) export default class CampaignInfo_ScheduleBase extends Vue { /** * 实体服务对象 * * @type {CampaignService} * @memberof CampaignInfo_ScheduleBase */ public appEntityService: CampaignService = new CampaignService; /** * 计数器服务对象集合 * * @type {Array<*>} * @memberof CampaignInfo_ScheduleBase */ public counterServiceArray:Array<any> = []; /** * 数据变化 * * @param {*} val * @returns {*} * @memberof CampaignInfo_ScheduleBase */ @Emit() public viewDatasChange(val: any):any { return val; } /** * 传入视图上下文 * * @type {string} * @memberof CampaignInfo_ScheduleBase */ @Prop() public viewdata!: string; /** * 传入视图参数 * * @type {string} * @memberof CampaignInfo_ScheduleBase */ @Prop() public viewparam!: string; /** * 视图默认使用 * * @type {boolean} * @memberof CampaignInfo_ScheduleBase */ @Prop({ default: true }) public viewDefaultUsage!: boolean; /** * 视图标识 * * @type {string} * @memberof CampaignInfo_ScheduleBase */ public viewtag: string = 'f63525be2835a01da997d7f059efb09f'; /** * 自定义视图导航上下文集合 * * @type {*} * @memberof CampaignInfo_ScheduleBase */ public customViewNavContexts:any ={ }; /** * 自定义视图导航参数集合 * * @type {*} * @memberof CampaignInfo_ScheduleBase */ public customViewParams:any ={ }; /** * 视图模型数据 * * @type {*} * @memberof CampaignInfo_ScheduleBase */ public model: any = { srfCaption: 'entities.campaign.views.info_schedule.caption', srfTitle: 'entities.campaign.views.info_schedule.title', srfSubTitle: 'entities.campaign.views.info_schedule.subtitle', dataInfo: '' } /** * 视图参数变化 * * @param {*} newVal * @param {*} oldVal * @memberof CampaignInfo_ScheduleBase */ @Watch('viewparam',{immediate: true, deep: true}) onParamData(newVal: any, oldVal: any) { if(newVal){ for(let key in this.viewparams){ delete this.viewparams[key]; } Object.assign(this.viewparams, JSON.parse(this.viewparam)); } } /** * 处理应用上下文变化 * * @param {*} newVal * @param {*} oldVal * @memberof CampaignInfo_ScheduleBase */ @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(); }); } } /** * 容器模型 * * @type {*} * @memberof CampaignInfo_ScheduleBase */ public containerModel: any = { view_form: { name: 'form', type: 'FORM' }, }; /** * 计数器刷新 * * @memberof CampaignInfo_ScheduleBase */ 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 CampaignInfo_ScheduleBase */ public viewState: Subject<ViewState> = new Subject(); /** * 视图引擎 * * @public * @type {Engine} * @memberof CampaignInfo_ScheduleBase */ public engine: EditViewEngine = new EditViewEngine(); /** * 引擎初始化 * * @public * @memberof CampaignInfo_ScheduleBase */ public engineInit(): void { this.engine.init({ view: this, form: this.$refs.form, p2k: '0', keyPSDEField: 'campaign', majorPSDEField: 'campaignname', isLoadDefault: true, }); } /** * 应用上下文 * * @type {*} * @memberof CampaignInfo_ScheduleBase */ public context:any = {}; /** * 视图参数 * * @type {*} * @memberof CampaignInfo_ScheduleBase */ public viewparams:any = {}; /** * 解析视图参数 * * @public * @memberof CampaignInfo_ScheduleBase */ public parseViewParam(): void { for(let key in this.context){ delete this.context[key]; } if (!this.viewDefaultUsage && this.viewdata && !Object.is(this.viewdata, '')) { 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}); } if(this.$store.getters.getAppData() && this.$store.getters.getAppData().context){ Object.assign(this.context,this.$store.getters.getAppData().context); } 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) => { Object.defineProperty(tempValue, item.name, { enumerable: true, value: matchArray[index + 1] }); }); this.$viewTool.formatRouteParams(tempValue,this.$route,this.context,this.viewparams); if(this.$store.getters.getAppData() && this.$store.getters.getAppData().context){ Object.assign(this.context,this.$store.getters.getAppData().context); } //初始化视图唯一标识 Object.assign(this.context,{srfsessionid:this.$util.createUUID()}); this.handleCustomViewData(); } /** * 处理自定义视图数据 * * @memberof CampaignInfo_ScheduleBase */ 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 CampaignInfo_ScheduleBase */ 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()]){ Object.defineProperty(tempData, item.toLowerCase(), { value: this.context[(curNavData.value).toLowerCase()], writable : true, enumerable : true, configurable : true }); }else{ if(this.viewparams[(curNavData.value).toLowerCase()]){ 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 }); } } } } /** * Vue声明周期 * * @memberof CampaignInfo_ScheduleBase */ public created() { this.afterCreated(); } /** * 执行created后的逻辑 * * @memberof CampaignInfo_ScheduleBase */ public afterCreated(){ const secondtag = this.$util.createUUID(); this.$store.commit('viewaction/createdView', { viewtag: this.viewtag, secondtag: secondtag }); this.viewtag = secondtag; this.parseViewParam(); } /** * 销毁之前 * * @memberof CampaignInfo_ScheduleBase */ public beforeDestroy() { this.$store.commit('viewaction/removeView', this.viewtag); } /** * Vue声明周期(组件初始化完毕) * * @memberof CampaignInfo_ScheduleBase */ public mounted() { this.afterMounted(); } /** * 执行mounted后的逻辑 * * @memberof CampaignInfo_ScheduleBase */ public afterMounted(){ const _this: any = this; _this.engineInit(); if (_this.loadModel && _this.loadModel instanceof Function) { _this.loadModel(); } } /** * form 部件 save 事件 * * @param {*} [args={}] * @param {*} $event * @memberof CampaignInfo_ScheduleBase */ public form_save($event: any, $event2?: any) { this.engine.onCtrlEvent('form', 'save', $event); } /** * form 部件 remove 事件 * * @param {*} [args={}] * @param {*} $event * @memberof CampaignInfo_ScheduleBase */ public form_remove($event: any, $event2?: any) { this.engine.onCtrlEvent('form', 'remove', $event); } /** * form 部件 load 事件 * * @param {*} [args={}] * @param {*} $event * @memberof CampaignInfo_ScheduleBase */ public form_load($event: any, $event2?: any) { this.engine.onCtrlEvent('form', 'load', $event); } /** * 关闭视图 * * @param {any[]} args * @memberof CampaignInfo_ScheduleBase */ public closeView(args: any[]): void { let _view: any = this; if (_view.viewdata) { _view.$emit('viewdataschange', [args]); _view.$emit('close', [args]); } else if (_view.$tabPageExp) { _view.$tabPageExp.onClose(_view.$route.fullPath); } } /** * 销毁视图回调 * * @memberof CampaignInfo_ScheduleBase */ public destroyed(){ this.afterDestroyed(); } /** * 执行destroyed后的逻辑 * * @memberof CampaignInfo_ScheduleBase */ 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); } }) } } } } </script> <style lang='less'> @import './campaign-info-schedule.less'; </style>