<template> <div :class="['app-list', 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.srfmajortext" :class="['app-list-item', {'isSelect': item.isselected === true ? true : false}]" @click="handleClick(item)" @dblclick="handleDblClick(item)"> <#if ctrl.getItemPSLayoutPanel()??> <#assign panel = ctrl.getItemPSLayoutPanel()> <layout_${panel.getName()} name='${panel.name}' :inputData="item" :parentRef="thisRef"></layout_${panel.getName()}> <#elseif ctrl.itemRender??> ${ctrl.itemRender.code} <#else> {{item.srfmajortext}} </#if> </div> </#if> </div> <div v-else> 暂无数据 </div> </div> </template> <#ibizinclude> ../@MACRO/CONTROL/CONTROL_HEADER-BASE.vue.ftl </#ibizinclude> /** * 获取多项数据 * * @returns {any[]} * @memberof ${srfclassname('${ctrl.codeName}')} */ public getDatas(): any[] { return this.selections; } /** * 获取单项树 * * @returns {*} * @memberof ${srfclassname('${ctrl.codeName}')} */ public getData(): any { return null; } /** * 是否默认选中第一条数据 * * @type {boolean} * @memberof ${srfclassname('${ctrl.codeName}')} */ @Prop({ default: false }) public isSelectFirstDefault!: boolean; /** * 显示处理提示 * * @type {boolean} * @memberof ${srfclassname('${ctrl.codeName}')} */ @Prop({ default: true }) public showBusyIndicator?: boolean; /** * 部件行为--create * * @type {string} * @memberof ${srfclassname('${ctrl.codeName}')} */ @Prop() public createAction!: string; /** * 部件行为--remove * * @type {string} * @memberof ${srfclassname('${ctrl.codeName}')} */ @Prop() public removeAction!: string; /** * 部件行为--update * * @type {string} * @memberof ${srfclassname('${ctrl.codeName}')} */ @Prop() public updateAction!: string; /** * 部件行为--fetch * * @type {string} * @memberof ${srfclassname('${ctrl.codeName}')} */ @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}')} */ @Prop() public newdata: any; </#if> <#if logic.getPFLogicCodeType() == 'APP_OPENDATA'> /** * 打开编辑数据视图 * * @type {any} * @memberof ${srfclassname('${ctrl.codeName}')} */ @Prop() public opendata: any; </#if> </#list> </#if> /** * this引用 * * @type {number} * @memberof Main */ public thisRef: any = this; /** * 当前页 * * @type {number} * @memberof Main */ public curPage: number = 1; /** * 数据 * * @type {any[]} * @memberof ${srfclassname('${ctrl.codeName}')} */ public items: any[] = []; /** * 是否支持分页 * * @type {boolean} * @memberof ${srfclassname('${ctrl.codeName}')} */ public isEnablePagingBar: boolean = true; /** * 分页条数 * * @type {number} * @memberof ${srfclassname('${ctrl.codeName}')} */ public limit: number = ${ctrl.getPagingSize()?c}; /** * 总条数 * * @type {number} * @memberof ${srfclassname('${ctrl.codeName}')} */ public totalRecord: number = 0; /** * 加载的数据是否附加在items之后 * * @type {boolean} * @memberof ${srfclassname('${ctrl.codeName}')} */ public isAddBehind:boolean = false; /** * 排序方向 * * @type {string} * @memberof ${srfclassname('${ctrl.codeName}')} */ public sortDir:string = '<#if ctrl.getMinorSortDir()??>${ctrl.getMinorSortDir()?lower_case}</#if>'; /** * 排序字段 * * @type {string} * @memberof ${srfclassname('${ctrl.codeName}')} */ public sortField: string = '<#if ctrl.getMinorSortPSDEF()??>${ctrl.getMinorSortPSDEF().getCodeName()?lower_case}</#if>'; /** * 选中数组 * @type {Array<any>} * @memberof ${srfclassname('${ctrl.codeName}')} */ public selections: Array<any> = []; /** * Vue声明周期,组件挂载完毕 * * @memberof ${srfclassname('${ctrl.codeName}')} */ public mounted () { this.afterMounted(); } /** * 执行mounted后的逻辑 * * @memberof ${srfclassname('${ctrl.codeName}')} */ public afterMounted () { this.$el.addEventListener('scroll', ()=> { if( this.$el.scrollTop + this.$el.clientHeight >= this.$el.scrollHeight) { this.loadMore(); } }) } /** * Vue声明周期,组件创建完毕 * * @memberof ${srfclassname('${ctrl.codeName}')} */ public created() { this.afterCreated() } /** * 执行created后的逻辑 * * @memberof ${srfclassname('${ctrl.codeName}')} */ 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) } }); } } /** * vue 生命周期 * * @memberof ${srfclassname('${ctrl.codeName}')} */ public destroyed() { this.afterDestroy(); } /** * 执行destroyed后的逻辑 * * @memberof ${srfclassname('${ctrl.codeName}')} */ public afterDestroy() { if (this.viewStateEvent) { this.viewStateEvent.unsubscribe(); } <#if destroyed_block??> ${destroyed_block} </#if> } /** * 加载更多 * * @memberof Mob */ 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}')} */ public load(opt: any = {}): void { if(!this.fetchAction){ this.$Notice.error({ title: '错误', desc: '${view.getName()}视图列表fetchAction参数未配置' }); 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: '错误', 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: '错误', desc: response.errorMessage }); }); } /** * 删除 * * @param {any[]} datas * @returns {Promise<any>} * @memberof ${srfclassname('${ctrl.codeName}')} */ public async remove(datas: any[]): Promise<any> { if(!this.removeAction){ this.$Notice.error({ title: '错误', desc: '${view.getName()}视图表格removeAction参数未配置' }); 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: '删除数据失败,' + response.info }); return; } else { this.$Notice.success({ title: '', desc: '删除成功!' }); } //删除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: '错误', desc: '系统异常' }); reject(response); return; } reject(response); }); }); } dataInfo = dataInfo.replace(/[null]/g, '').replace(/[undefined]/g, '').replace(/[ ]/g, ''); this.$Modal.confirm({ title: '警告', content: '确认要删除 ' + dataInfo + ',删除操作将不可恢复?', onOk: () => { removeData(); }, onCancel: () => { } }); return removeData; } /** * 选择数据 * @memberof ${srfclassname('${ctrl.codeName}')} * */ public handleClick(args: any) { this.clearSelection(); args.isselected = !args.isselected; this.selectchange(); } /** * 双击数据 * @memberof ${srfclassname('${ctrl.codeName}')} * */ public handleDblClick(args: any) { this.$emit('rowdblclick', args); } /** * 触发事件 * @memberof ${srfclassname('${ctrl.codeName}')} * */ 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}')} */ 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>