<template> <div :class="['app-list',<#if ctrl.getPSSysCss?? && ctrl.getPSSysCss()??><#assign singleCss = ctrl.getPSSysCss()>'${singleCss.getCssName()}',</#if>this.items.length > 0 ? '' : 'app-list-empty' ]"> <div v-if="items.length > 0" style="height:100%;"> <#if ctrl.render??> ${ctrl.render.code} <#else> <div v-for = "item in items" :key="item.srfkey" :class="['app-list-item', {'isSelect': item.isselected === true ? true : false}]" @click="handleClick(item)" @dblclick="handleDblClick(item)"> <#if ctrl.getItemPSLayoutPanel()??> <#assign panel = ctrl.getItemPSLayoutPanel()> <@ibizindent blank=16> ${P.getCtrlCode(panel, 'CONTROL.html').code} </@ibizindent> <#elseif ctrl.itemRender??> ${ctrl.itemRender.code} <#else> {{item.srfmajortext}} </#if> </div> </#if> </div> <div v-else> {{ $t('app.commonWords.noData') }} </div> </div> </template> <#ibizinclude> ../@MACRO/CONTROL/CONTROL_HEADER-BASE.vue.ftl </#ibizinclude> /** * 获取多项数据 * * @returns {any[]} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public getDatas(): any[] { return this.selections; } /** * 获取单项树 * * @returns {*} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public getData(): any { return null; } /** * 是否默认选中第一条数据 * * @type {boolean} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ @Prop({ default: false }) public isSelectFirstDefault!: boolean; /** * 显示处理提示 * * @type {boolean} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ @Prop({ default: true }) public showBusyIndicator?: boolean; /** * 部件行为--create * * @type {string} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ @Prop() public createAction!: string; /** * 部件行为--remove * * @type {string} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ @Prop() public removeAction!: string; /** * 部件行为--update * * @type {string} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ @Prop() public updateAction!: string; /** * 部件行为--fetch * * @type {string} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ @Prop() public fetchAction!: string; <#if view.getPSAppViewLogics?? && view.getPSAppViewLogics()??> <#list view.getPSAppViewLogics() as logic> <#if logic.getPFLogicCodeType() == 'APP_NEWDATA'> /** * 打开新建数据视图 * * @type {any} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ @Prop() public newdata: any; </#if> <#if logic.getPFLogicCodeType() == 'APP_OPENDATA'> /** * 打开编辑数据视图 * * @type {any} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ @Prop() public opendata: any; </#if> </#list> </#if> /** * this引用 * * @type {number} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public thisRef: any = this; /** * 当前页 * * @type {number} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public curPage: number = 1; /** * 数据 * * @type {any[]} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public items: any[] = []; /** * 是否支持分页 * * @type {boolean} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public isEnablePagingBar: boolean = true; /** * 分页条数 * * @type {number} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public limit: number = ${ctrl.getPagingSize()?c}; /** * 总条数 * * @type {number} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public totalRecord: number = 0; /** * 加载的数据是否附加在items之后 * * @type {boolean} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public isAddBehind:boolean = false; /** * 排序方向 * * @type {string} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public sortDir:string = '<#if ctrl.getMinorSortDir()??>${ctrl.getMinorSortDir()?lower_case}</#if>'; /** * 排序字段 * * @type {string} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public sortField: string = '<#if ctrl.getMinorSortPSDEF()??>${ctrl.getMinorSortPSDEF().getCodeName()?lower_case}</#if>'; /** * 选中数组 * @type {Array<any>} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public selections: Array<any> = []; /** * 应用状态事件 * * @public * @type {(Subscription | undefined)} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public appStateEvent: Subscription | undefined; /** * Vue声明周期,组件挂载完毕 * * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public mounted () { this.afterMounted(); } /** * 执行mounted后的逻辑 * * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public afterMounted () { this.$el.addEventListener('scroll', ()=> { if( this.$el.scrollTop + this.$el.clientHeight >= this.$el.scrollHeight) { this.loadMore(); } }) } /** * Vue声明周期,组件创建完毕 * * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public created() { this.afterCreated() } /** * 执行created后的逻辑 * * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public afterCreated(){ if (this.viewState) { this.viewStateEvent = this.viewState.subscribe(({ tag, action, data }) => { if (!Object.is(this.name, tag)) { return; } if (Object.is(action,'load')) { this.refresh(data) } }); } if(AppCenterService && AppCenterService.getMessageCenter()){ this.appStateEvent = AppCenterService.getMessageCenter().subscribe(({ name, action, data }) =>{ if(!Object.is(name,"${ctrl.getPSAppDataEntity().getCodeName()}")){ return; } if(Object.is(action,'appRefresh')){ this.refresh([data]); } }) } } /** * vue 生命周期 * * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public destroyed() { this.afterDestroy(); } /** * 执行destroyed后的逻辑 * * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public afterDestroy() { if (this.viewStateEvent) { this.viewStateEvent.unsubscribe(); } if(this.appStateEvent){ this.appStateEvent.unsubscribe(); } <#if destroyed_block??> ${destroyed_block} </#if> } /** * 加载更多 * * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public loadMore(){ if(this.totalRecord>this.items.length) { this.curPage = ++this.curPage; this.isAddBehind = true; this.load({}); } } /** * 刷新 * * @param {*} [opt={}] * @memberof Main */ public refresh(opt: any = {}) { this.curPage = 1; this.items = []; this.load(opt); } /** * 列表数据加载 * * @public * @param {*} [arg={}] * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public load(opt: any = {}): void { if(!this.fetchAction){ this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '${view.getName()}' + (this.$t('app.list.notConfig.fetchAction') as string) }); return; } const arg: any = {...opt}; const page: any = {}; if (this.isEnablePagingBar) { Object.assign(page, { page: this.curPage-1, size: this.limit }); } // 设置排序 if (!Object.is(this.sortDir, '') && !Object.is(this.sortField, '')) { const sort: string = this.sortField+","+this.sortDir; Object.assign(page, { sort: sort }); } Object.assign(arg, page); const parentdata: any = {}; this.$emit('beforeload', parentdata); Object.assign(arg, parentdata); let tempViewParams:any = parentdata.viewparams?parentdata.viewparams:{}; if(this.viewparams){ Object.assign(tempViewParams,JSON.parse(JSON.stringify(this.viewparams))); } Object.assign(arg,{viewparams:tempViewParams}); const post: Promise<any> = this.service.search(this.fetchAction, this.context?JSON.parse(JSON.stringify(this.context)):{}, arg, this.showBusyIndicator); post.then((response: any) => { if (!response || response.status !== 200) { if (response.errorMessage) { this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: response.errorMessage }); } return; } const data: any = response.data; if(!this.isAddBehind){ this.items = []; } if (Object.keys(data).length > 0) { let datas = JSON.parse(JSON.stringify(data)); datas.map((item: any) => { Object.assign(item, { isselected: false }); }); this.totalRecord = response.total; this.items.push(...datas); } this.isAddBehind = false; this.$emit('load', this.items); if(this.isSelectFirstDefault){ this.handleClick(this.items[0]); } }, (response: any) => { if (response && response.status === 401) { return; } this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: response.errorMessage }); }); } /** * 删除 * * @param {any[]} datas * @returns {Promise<any>} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public async remove(datas: any[]): Promise<any> { if(!this.removeAction){ this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '${view.getName()}' + (this.$t('app.list.notConfig.removeAction') as string) }); return; } if (datas.length === 0) { return; } let dataInfo = ''; datas.forEach((record: any, index: number) => { let srfmajortext = record.srfmajortext; if (index < 5) { if (!Object.is(dataInfo, '')) { dataInfo += '、'; } dataInfo += srfmajortext; } else { return false; } }); if (datas.length < 5) { dataInfo = dataInfo + ' 共' + datas.length + '条数据'; } else { dataInfo = dataInfo + '...' + ' 共' + datas.length + '条数据'; } const removeData = () => { let keys: any[] = []; datas.forEach((data: any) => { keys.push(data.srfkey); }); let _removeAction = keys.length > 1 ? 'removeBatch' : this.removeAction ; const context:any = JSON.parse(JSON.stringify(this.context)); const post: Promise<any> = this.service.delete(_removeAction,Object.assign(context,{ ${ctrl.getPSAppDataEntity().codeName?lower_case}: keys.join(';') }),Object.assign({ ${ctrl.getPSAppDataEntity().codeName?lower_case}: keys.join(';') },{viewparams:this.viewparams}), this.showBusyIndicator); return new Promise((resolve: any, reject: any) => { post.then((response: any) => { if (!response || response.status !== 200) { this.$Notice.error({ title: '', desc: (this.$t('app.commonWords.delDataFail') as string) + ',' + response.info }); return; } else { this.$Notice.success({ title: '', desc: (this.$t('app.commonWords.deleteSuccess') as string) }); } //删除items中已删除的项 datas.forEach((data: any) => { this.items.some((item:any,index:number)=>{ if(Object.is(item.srfkey,data.srfkey)){ this.items.splice(index,1); return true; } }); }); this.$emit('remove', null); this.selections = []; resolve(response); }).catch((response: any) => { if (response && response.status === 401) { return; } if (!response || !response.status || !response.data) { this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: (this.$t('app.commonWords.sysException') as string) }); reject(response); return; } reject(response); }); }); } dataInfo = dataInfo.replace(/[null]/g, '').replace(/[undefined]/g, '').replace(/[ ]/g, ''); this.$Modal.confirm({ title: (this.$t('app.commonWords.warning') as string), content: (this.$t('app.list.confirmDel') as string) + ' ' + dataInfo + ',' + (this.$t('app.list.notRecoverable') as string) , onOk: () => { removeData(); }, onCancel: () => { } }); return removeData; } /** * 保存 * * @param {*} $event * @returns {Promise<any>} * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public async save(args: any[], params?: any, $event?: any, xData?: any){ let _this = this; let successItems:any = []; let errorItems:any = []; let errorMessage:any = []; for (const item of _this.items) { try { if(Object.is(item.rowDataState, 'create')){ if(!this.createAction){ this.$Notice.error({ title: (this.$t('app.commonWords.wrong') as string), desc: '${view.getName()}' + (this.$t('app.list.notConfig.createAction') as string) }); }else{ Object.assign(item,{viewparams:this.viewparams}); let response = await this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator); successItems.push(JSON.parse(JSON.stringify(response.data))); } }else if(Object.is(item.rowDataState, 'update')){ if(!this.updateAction){ this.$Notice.error({ title: (this.$t('app.commonWords.warning') as string), desc: '${view.getName()}' + (this.$t('app.list.notConfig.updateAction') as string) }); }else{ Object.assign(item,{viewparams:this.viewparams}); <#if de??> if(item.${appde.getCodeName()?lower_case}){ Object.assign(this.context,{${appde.getCodeName()?lower_case}:item.${appde.getCodeName()?lower_case}}); } </#if> let response = await this.service.add(this.updateAction,JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator); successItems.push(JSON.parse(JSON.stringify(response.data))); } } } catch (error) { errorItems.push(JSON.parse(JSON.stringify(item))); errorMessage.push(error); } } this.$emit('save', successItems); this.refresh(); if(errorItems.length === 0){ this.$Notice.success({ title: '', desc: (this.$t('app.commonWords.saveSuccess') as string) }); }else{ errorItems.forEach((item:any,index:number)=>{ this.$Notice.error({ title: (this.$t('app.commonWords.saveFailed') as string), desc: item.majorentityname+ (this.$t('app.commonWords.saveFailed') as string) + '!' }); console.error(errorMessage[index]); }); } return successItems; } /** * 面板数据变化处理事件 * @param {any} item 当前列数据 * @param {any} $event 面板事件数据 * * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public onPanelDataChange(item:any,$event:any) { Object.assign(item, $event, {rowDataState:'update'}); } /** * 选择数据 * @memberof ${srfclassname('${ctrl.codeName}')}Base * */ public handleClick(args: any) { this.clearSelection(); args.isselected = !args.isselected; this.selectchange(); } /** * 双击数据 * @memberof ${srfclassname('${ctrl.codeName}')}Base * */ public handleDblClick(args: any) { this.$emit('rowdblclick', args); } /** * 触发事件 * @memberof ${srfclassname('${ctrl.codeName}')}Base * */ public selectchange() { this.selections = []; this.items.map((item: any) => { if (item.isselected) { this.selections.push(item); } }); this.$emit('selectionchange', this.selections); } /** * 清除当前所有选中状态 * * @memberof ${srfclassname('${ctrl.codeName}')}Base */ public clearSelection(){ this.items.map((item: any) => { Object.assign(item, { isselected: false }); }); } <#ibizinclude> ../@MACRO/CONTROL/CONTROL_BOTTOM-BASE.vue.ftl </#ibizinclude> <#ibizinclude> ../@MACRO/CONTROL/CONTROL-BASE.style.ftl </#ibizinclude>