<template> <div class='grid' style="height:100%;"> <el-table v-if="isDisplay === true" :default-sort="{ prop: minorSortPSDEF, order: Object.is(minorSortDir, 'ASC') ? 'ascending' : Object.is(minorSortDir, 'DESC') ? 'descending' : '' }" @sort-change="onSortChange($event)" :border="isDragendCol" stripe :height="isEnablePagingBar && items.length > 0 ? 'calc(100% - 50px)' : '100%'" :highlight-current-row ="isSingleSelect" @row-click="rowClick($event)" @select-all="selectAll($event)" @select="select($event)" @row-class-name="onRowClassName($event)" @row-dblclick="rowDBLClick($event)" ref='multipleTable' :data="items" :show-header="!isHideHeader"> <template v-if="!isSingleSelect"> <el-table-column type='selection' :width="checkboxColWidth"></el-table-column> </template> <template v-if="getColumnState('orgusername')"> <el-table-column show-overflow-tooltip :prop="'orgusername'" :label="$t('orguser.main_grid.columns.orgusername')" :width="200" :align="'left'" :sortable="'custom'"> <template v-slot="{row,column}"> <span>{{row.orgusername}}</span> </template> </el-table-column> </template> <template v-if="getColumnState('orgname')"> <el-table-column show-overflow-tooltip :prop="'orgname'" :label="$t('orguser.main_grid.columns.orgname')" :width="300" :align="'left'" :sortable="'custom'"> <template v-slot="{row,column}"> <span>{{row.orgname}}</span> </template> </el-table-column> </template> <template v-if="getColumnState('usercode')"> <el-table-column show-overflow-tooltip :prop="'usercode'" :label="$t('orguser.main_grid.columns.usercode')" :width="100" :align="'left'" :sortable="'custom'"> <template v-slot="{row,column}"> <span>{{row.usercode}}</span> </template> </el-table-column> </template> <template v-if="getColumnState('sex')"> <el-table-column show-overflow-tooltip :prop="'sex'" :label="$t('orguser.main_grid.columns.sex')" :width="100" :align="'left'" :sortable="'custom'"> <template v-slot="{row,column}"> <span>{{row.sex}}</span> </template> </el-table-column> </template> <template v-if="getColumnState('mobilephone')"> <el-table-column show-overflow-tooltip :prop="'mobilephone'" :label="$t('orguser.main_grid.columns.mobilephone')" :width="150" :align="'left'" :sortable="'custom'"> <template v-slot="{row,column}"> <span>{{row.mobilephone}}</span> </template> </el-table-column> </template> <template v-if="getColumnState('certtype')"> <el-table-column show-overflow-tooltip :prop="'certtype'" :label="$t('orguser.main_grid.columns.certtype')" :width="100" :align="'left'" :sortable="'custom'"> <template v-slot="{row,column}"> <template > <codelist srfkey="CertType" :value="row.certtype" emptytext="未定义" codelistType="STATIC" renderMode="other"></codelist> </template> </template> </el-table-column> </template> <template v-if="getColumnState('certno')"> <el-table-column show-overflow-tooltip :prop="'certno'" :label="$t('orguser.main_grid.columns.certno')" :width="200" :align="'left'" :sortable="'custom'"> <template v-slot="{row,column}"> <span>{{row.certno}}</span> </template> </el-table-column> </template> <template v-if="adaptiveState"> <el-table-column></el-table-column> </template> </el-table> <row class='grid-pagination' v-show="items.length > 0"> <page class='pull-right' @on-change="pageOnChange($event)" @on-page-size-change="onPageSizeChange($event)" :transfer="true" :total="totalrow" show-sizer :current="curPage" :page-size="limit" :page-size-opts="[10, 20, 30, 40, 50, 60, 70, 80, 90, 100]" show-elevator show-total> <span> <span class="page-column"> <poptip transfer placement="top-start"> <i-button icon="md-menu">{{$t('app.gridpage.choicecolumns')}}</i-button> <div slot="content"> <template v-for="col in allColumns"> <div :key="col.name"><el-checkbox v-model="col.show" @change="onColChange()">{{$t(col.langtag)}}</el-checkbox></div> </template> </div> </poptip> </span> <span class="page-button"><i-button icon="md-refresh" :title="$t('app.gridpage.refresh')" @click="pageRefresh()"></i-button></span> <span> {{$t('app.gridpage.show')}} <span> <template v-if="items.length === 1"> 1 </template> <template v-else> <span>{{(curPage - 1) * limit + 1}} - {{totalrow > curPage * limit ? curPage * limit : totalrow}}</span> </template> </span> {{$t('app.gridpage.records')}},{{$t('app.gridpage.totle')}} {{totalrow}} {{$t('app.gridpage.records')}} </span> </span> </page> </row> </div> </template> <script lang='ts'> import { Vue, Component, Prop, Provide, Emit, Watch, Model } from 'vue-property-decorator'; import { CreateElement } from 'vue'; import { Subject, Subscription } from 'rxjs'; import { ControlInterface } from '@/interface/control'; import { UIActionTool,Util } from '@/utils'; import OrgUserService from '@/service/org-user/org-user-service'; import MainService from './main-grid-service'; import CodeListService from "@service/app/codelist-service"; @Component({ components: { } }) export default class MainBase extends Vue implements ControlInterface { /** * 名称 * * @type {string} * @memberof Main */ @Prop() protected name?: string; /** * 视图通讯对象 * * @type {Subject<ViewState>} * @memberof Main */ @Prop() protected viewState!: Subject<ViewState>; /** * 应用上下文 * * @type {*} * @memberof Main */ @Prop() protected context: any; /** * 视图参数 * * @type {*} * @memberof Main */ @Prop() protected viewparams: any; /** * 视图状态事件 * * @protected * @type {(Subscription | undefined)} * @memberof Main */ protected viewStateEvent: Subscription | undefined; /** * 获取部件类型 * * @returns {string} * @memberof Main */ protected getControlType(): string { return 'GRID' } /** * 计数器服务对象集合 * * @type {Array<*>} * @memberof Main */ protected counterServiceArray:Array<any> = []; /** * 建构部件服务对象 * * @type {MainService} * @memberof Main */ protected service: MainService = new MainService({ $store: this.$store }); /** * 实体服务对象 * * @type {OrgUserService} * @memberof Main */ protected appEntityService: OrgUserService = new OrgUserService({ $store: this.$store }); /** * 关闭视图 * * @param {any[]} args * @memberof Main */ protected closeView(args: any[]): void { let _this: any = this; _this.$emit('closeview', args); } /** * 计数器刷新 * * @memberof Main */ 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(); } }) } } /** * 代码表服务对象 * * @type {CodeListService} * @memberof Main */ public codeListService:CodeListService = new CodeListService({ $store: this.$store }); /** * 获取多项数据 * * @returns {any[]} * @memberof Main */ public getDatas(): any[] { return this.selections; } /** * 获取单项树 * * @returns {*} * @memberof Main */ public getData(): any { return this.selections[0]; } /** * 显示处理提示 * * @type {boolean} * @memberof Main */ @Prop({ default: true }) protected showBusyIndicator?: boolean; /** * 部件行为--update * * @type {string} * @memberof Main */ @Prop() protected updateAction!: string; /** * 部件行为--fetch * * @type {string} * @memberof Main */ @Prop() protected fetchAction!: string; /** * 部件行为--remove * * @type {string} * @memberof Main */ @Prop() protected removeAction!: string; /** * 部件行为--load * * @type {string} * @memberof Main */ @Prop() protected loadAction!: string; /** * 部件行为--loaddraft * * @type {string} * @memberof Main */ @Prop() protected loaddraftAction!: string; /** * 部件行为--create * * @type {string} * @memberof Main */ @Prop() protected createAction!: string; /** * 当前页 * * @type {number} * @memberof Main */ protected curPage: number = 1; /** * 数据 * * @type {any[]} * @memberof Main */ protected items: any[] = []; /** * 是否支持分页 * * @type {boolean} * @memberof Main */ protected isEnablePagingBar: boolean = true; /** * 是否禁用排序 * * @type {boolean} * @memberof Main */ protected isNoSort: boolean = false; /** * 排序方向 * * @type {string} * @memberof Main */ protected minorSortDir: string = ''; /** * 排序字段 * * @type {string} * @memberof Main */ protected minorSortPSDEF: string = ''; /** * 分页条数 * * @type {number} * @memberof Main */ protected limit: number = 20; /** * 是否显示标题 * * @type {boolean} * @memberof Main */ protected isHideHeader: boolean = false; /** * 是否默认选中第一条数据 * * @type {boolean} * @memberof Main */ @Prop({ default: false }) protected isSelectFirstDefault!: boolean; /** * 是否单选 * * @type {boolean} * @memberof Main */ @Prop() protected isSingleSelect?: boolean; /** * 是否开启行编辑 * * @type {boolean} * @memberof Main */ @Prop({default: false}) protected isOpenEdit!: boolean; /** * 总条数 * * @type {number} * @memberof Main */ protected totalrow: number = 0; /** * 选中行数据 * * @type {any[]} * @memberof Main */ protected selections: any[] = []; /** * 拦截行选中 * * @type {boolean} * @memberof Main */ protected stopRowClick: boolean = false; /** * 表格是否显示 * * @type {boolean} * @memberof Main */ protected isDisplay:boolean = true; /** * 部件刷新 * * @param {any[]} args * @memberof Main */ protected refresh(args: any[]): void { this.load(); } /** * 选项框列宽 * * @type {number} * @memberof AppIndex */ protected checkboxColWidth: number = 80; /** * 是否允许拖动列宽 * * @type {boolean} * @memberof AppEmbedPicker */ protected isDragendCol: boolean = false; /** * 所有列成员 * * @type {any[]} * @memberof Main */ protected allColumns: any[] = [ { name: 'orgusername', label: '组织用户名称', langtag: 'orguser.main_grid.columns.orgusername', show: true, util: 'PX' }, { name: 'orgname', label: '组织名称', langtag: 'orguser.main_grid.columns.orgname', show: true, util: 'PX' }, { name: 'usercode', label: '用户编号', langtag: 'orguser.main_grid.columns.usercode', show: true, util: 'PX' }, { name: 'sex', label: '性别', langtag: 'orguser.main_grid.columns.sex', show: true, util: 'PX' }, { name: 'mobilephone', label: '移动电话', langtag: 'orguser.main_grid.columns.mobilephone', show: true, util: 'PX' }, { name: 'certtype', label: '证件类型', langtag: 'orguser.main_grid.columns.certtype', show: true, util: 'PX' }, { name: 'certno', label: '证件号', langtag: 'orguser.main_grid.columns.certno', show: true, util: 'PX' }, ] /** * 属性值规则 * * @type {*} * @memberof Main */ protected rules: any = { srfkey: [ { required: false, validator: (rule:any, value:any, callback:any) => { return (rule.required && (value === null || value === undefined || value === "")) ? false : true;}, message: '组织用户标识 值不能为空', trigger: 'change' }, { required: false, validator: (rule:any, value:any, callback:any) => { return (rule.required && (value === null || value === undefined || value === "")) ? false : true;}, message: '组织用户标识 值不能为空', trigger: 'blur' }, ], } /** * 表格数据加载 * * @param {*} [arg={}] * @memberof Main */ protected load(opt: any = {}, pageReset: boolean = false): void { if(!this.fetchAction){ this.$Notice.error({ title: '错误', desc: 'OrgUserPickupGridView视图表格fetchAction参数未配置' }); return; } if(pageReset){ this.curPage = 1; } const arg: any = {...opt}; const page: any = {}; if (this.isEnablePagingBar) { Object.assign(page, { page: this.curPage-1, size: this.limit }); } // 设置排序 if (!this.isNoSort && !Object.is(this.minorSortDir, '') && !Object.is(this.minorSortPSDEF, '')) { const sort: string = this.minorSortPSDEF+","+this.minorSortDir; Object.assign(page, { sort: sort }); } Object.assign(arg, page); const parentdata: any = {}; this.$emit('beforeload', parentdata); Object.assign(arg, parentdata); Object.assign(arg,{viewparams:this.viewparams}); const post: Promise<any> = this.service.search(this.fetchAction,JSON.parse(JSON.stringify(this.context)), arg, this.showBusyIndicator); post.then((response: any) => { if (!response.status || response.status !== 200) { if (response.errorMessage) { this.$Notice.error({ title: '错误', desc: response.errorMessage }); } return; } const data: any = response.data; if (Object.keys(data).length > 0) { this.totalrow = response.total; this.items = JSON.parse(JSON.stringify(data)); } // 清空selections this.selections = []; this.$emit('load', this.items); // 设置默认选中 let _this = this; setTimeout(() => { if(_this.isSelectFirstDefault){ _this.rowClick(_this.items[0]); } if(_this.context.selectedData){ const refs: any = _this.$refs; if (refs.multipleTable) { refs.multipleTable.clearSelection(); _this.context.selectedData.forEach((selection:any)=>{ let selectedItem = _this.items.find((item:any)=>{ return Object.is(item.srfkey, selection.srfkey); }); if(selectedItem){ _this.rowClick(selectedItem); } }); } } }, 300); }).catch((response: any) => { if (response && response.status === 401) { return; } this.$Notice.error({ title: '错误', desc: response.errorMessage }); }); } /** * 删除 * * @param {any[]} datas * @returns {Promise<any>} * @memberof Main */ protected async remove(datas: any[]): Promise<any> { if(!this.removeAction){ this.$Notice.error({ title: '错误', desc: 'OrgUserPickupGridView视图表格removeAction参数未配置' }); return; } let _datas:any[] = []; datas.forEach((record: any, index: number) => { if (!record.srfkey) { this.items.some((val: any, num: number) =>{ if(JSON.stringify(val) == JSON.stringify(record)){ this.items.splice(num,1); return true; } }); }else{ _datas.push(datas[index]); } }); 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); }); const context:any = JSON.parse(JSON.stringify(this.context)); const post: Promise<any> = this.service.delete(this.removeAction,Object.assign(context,{ orguser: keys.join(';') }),Object.assign({ orguserid: 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: '删除成功!' }); } this.load({}); 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, ''); this.$Modal.confirm({ title: '警告', content: '确认要删除 ' + dataInfo + ',删除操作将不可恢复?', onOk: () => { removeData(); }, onCancel: () => { } }); return removeData; } /** * 批量添加 * * @param {*} [arg={}] * @memberof Main */ protected addBatch(arg: any = {}): void { if(!this.fetchAction){ this.$Notice.error({ title: '错误', desc: 'OrgUserPickupGridView视图表格fetchAction参数未配置' }); return; } if(!arg){ arg = {}; } console.error("批量添加未实现"); } /** * 数据导出 * * @param {*} data * @memberof Main */ protected exportExcel(data: any = {}): void { // 导出Excel const doExport = async (_data:any) => { const tHeader: Array<any> = []; const filterVal: Array<any> = []; this.allColumns.forEach((item: any) => { item.show && item.label ? tHeader.push(item.label) : ""; item.show && item.name ? filterVal.push(item.name) : ""; }); const data = await this.formatExcelData(filterVal, _data); this.$export.exportExcel().then((excel:any)=>{ excel.export_json_to_excel({ header: tHeader, //表头 必填 data, //具体数据 必填 filename: "主实体"+"表", //非必填 autoWidth: true, //非必填 bookType: "xlsx" //非必填 }); }); }; const page: any = {}; // 设置page,size if (Object.is(data.type, 'maxRowCount')) { Object.assign(page, { page: 0, size: data.maxRowCount }); } else if (Object.is(data.type, 'activatedPage')) { doExport(JSON.parse(JSON.stringify(this.items))); return; } // 设置排序 if (!this.isNoSort && !Object.is(this.minorSortDir, '') && !Object.is(this.minorSortPSDEF, '')) { const sort: string = this.minorSortPSDEF+","+this.minorSortDir; Object.assign(page, { sort: sort }); } const arg: any = {}; Object.assign(arg, page); // 获取query,搜索表单,viewparams等父数据 const parentdata: any = {}; this.$emit('beforeload', parentdata); Object.assign(arg, parentdata); const post: Promise<any> = this.service.search(this.fetchAction,JSON.parse(JSON.stringify(this.context)), arg, this.showBusyIndicator); post.then((response: any) => { if (!response || response.status !== 200) { this.$Notice.error({ title: '', desc: '数据导出失败,' + response.info }); return; } doExport(JSON.parse(JSON.stringify(response.data))); }).catch((response: any) => { if (response && response.status === 401) { return; } this.$Notice.error({ title: '', desc: '数据导出失败' }); }); } /** * 导出数据格式化 * * @param {*} filterVal * @param {*} jsonData * @returns {[]} * @memberof Main */ public async formatExcelData(filterVal:any, jsonData:any) { let codelistColumns:Array<any> = [ { name: 'certtype', srfkey: 'CertType', emptytext: '未定义', codelistType : 'STATIC', renderMode: 'other', textSeparator: '、', valueSeparator: ';', }, ]; let _this = this; for (const codelist of codelistColumns) { // 动态代码表处理 if (Object.is(codelist.codelistType, "DYNAMIC")) { let items = await _this.codeListService.getItems(codelist.srfkey); jsonData.forEach((row:any)=>{ row[codelist.name] = _this.getCodelistValue(items, row[codelist.name], codelist.renderMode, codelist.emptytext,codelist.valueSeparator); }); // 静态处理 } else if(Object.is(codelist.codelistType, "STATIC")){ let items = await _this.$store.getters.getCodeListItems(codelist.srfkey); jsonData.forEach((row:any)=>{ row[codelist.name] = _this.getCodelistValue(items, row[codelist.name], codelist.renderMode, codelist.emptytext,codelist.valueSeparator); }); } } return jsonData.map((v:any) => filterVal.map((j:any) => v[j])) } /** * 解析代码表和vlaue,设置items * * @private * @param {any[]} items 代码表数据 * @param {*} value * @returns {*} * @memberof Main */ private getCodelistValue(items: any[], value: any, renderMode: string, emtpytext:string, valueSeparator: string = ";" ){ if(!value){ return emtpytext; } if (items) { let result:any = []; if(Object.is(renderMode,"number")){ items.map((_item: any, index: number)=>{ const nValue = parseInt((value as any), 10); const codevalue = _item.value; if((parseInt(codevalue, 10) & nValue) > 0){ result.push(_item); } }); } else if(Object.is(renderMode,"string")){ const arrayValue: Array<any> = (value as any).split(valueSeparator); arrayValue.map((value: any, index: number) => { result.push([]); let values: any[] = Object.is(this.$util.typeOf(value), 'number') ? [value] : [...(value as any).split(valueSeparator)]; values.map((val:any ,num: number)=>{ const item = this.getItem(items, val); if(item){ result[index].push(item); } }); }); } else { let values: any[] = Object.is(this.$util.typeOf(value), 'number') ? [value] : [...(value as any).split(valueSeparator)]; values.map((value:any ,index: number)=>{ const item = this.getItem(items, value); if(item){ result.push(item); } }); } // 设置items if(result.length != 0){ return result.join(valueSeparator); }else{ return "不匹配"; } } } /** * 获取代码项 * * @private * @param {any[]} items * @param {*} value * @returns {*} * @memberof Main */ private getItem(items: any[], value: any): any { let result: any = {}; const arr: Array<any> = items.filter(item => {return item.value == value}); if (arr.length !== 1) { return undefined; } return arr[0].text; } /** * 生命周期 * * @memberof Main */ protected created(): void { this.afterCreated(); } /** * 执行created后的逻辑 * * @memberof Main */ protected afterCreated(){ this.setColState(); if (this.viewState) { this.viewStateEvent = this.viewState.subscribe(({ tag, action, data }) => { if (!Object.is(tag, this.name)) { return; } if (Object.is('load', action)) { this.load(data); } if (Object.is('remove', action)) { this.remove(data); } if (Object.is('save', action)) { this.save(data); } }); } } /** * vue 生命周期 * * @memberof Main */ protected destroyed() { this.afterDestroy(); } /** * 执行destroyed后的逻辑 * * @memberof Main */ protected afterDestroy() { if (this.viewStateEvent) { this.viewStateEvent.unsubscribe(); } } /** * 获取选中行胡数据 * * @returns {any[]} * @memberof Main */ protected getSelection(): any[] { return this.selections; } /** * 行双击事件 * * @param {*} $event * @returns {void} * @memberof Main */ protected rowDBLClick($event: any): void { if (!$event || this.isOpenEdit) { return; } this.selections = []; this.selections.push(JSON.parse(JSON.stringify($event))); const refs: any = this.$refs; if (refs.multipleTable) { refs.multipleTable.clearSelection(); refs.multipleTable.toggleRowSelection($event); } this.$emit('rowdblclick', this.selections); this.$emit('selectionchange', this.selections); } /** * 复选框数据选中 * * @param {*} $event * @returns {void} * @memberof Main */ protected select($event: any): void { if (!$event) { return; } this.selections = []; this.selections = [...JSON.parse(JSON.stringify($event))]; this.$emit('selectionchange', this.selections); } /** * 复选框数据全部选中 * * @param {*} $event * @memberof Main */ protected selectAll($event: any): void { if (!$event) { return; } this.selections = []; this.selections = [...JSON.parse(JSON.stringify($event))]; this.$emit('selectionchange', this.selections); } /** * 行单击选中 * * @param {*} $event * @returns {void} * @memberof Main */ protected rowClick($event: any, ifAlways: boolean = false): void { if (!ifAlways && (!$event || this.isOpenEdit)) { return; } if(this.stopRowClick) { this.stopRowClick = false; return; } if(this.isSingleSelect){ this.selections = []; } // 已选中则删除,没选中则添加 let selectIndex = this.selections.findIndex((item:any)=>{ return Object.is(item.orguser,$event.orguser); }); if (Object.is(selectIndex,-1)){ this.selections.push(JSON.parse(JSON.stringify($event))); } else { this.selections.splice(selectIndex,1); } const refs: any = this.$refs; if (refs.multipleTable) { if(this.isSingleSelect){ refs.multipleTable.clearSelection(); } refs.multipleTable.toggleRowSelection($event); } this.$emit('selectionchange', this.selections); } /** * 页面变化 * * @param {*} $event * @returns {void} * @memberof Main */ protected pageOnChange($event: any): void { if (!$event) { return; } if ($event === this.curPage) { return; } this.curPage = $event; this.load({}); } /** * 分页条数变化 * * @param {*} $event * @returns {void} * @memberof Main */ protected onPageSizeChange($event: any): void { if (!$event) { return; } if ($event === this.limit) { return; } this.limit = $event; if (this.curPage === 1) { this.load({}); } } /** * 分页刷新 * * @memberof Main */ protected pageRefresh(): void { this.load({}); } /** * 排序变化 * * @param {{ column: any, prop: any, order: any }} { column, prop, order } * @memberof Main */ protected onSortChange({ column, prop, order }: { column: any, prop: any, order: any }): void { const dir = Object.is(order, 'ascending') ? 'asc' : Object.is(order, 'descending') ? 'desc' : ''; if (Object.is(dir, this.minorSortDir) && Object.is(this.minorSortPSDEF, prop)) { return; } this.minorSortDir = dir; this.minorSortPSDEF = prop ? prop : ''; this.load({}); } /** * 表格行选中样式 * * @param {{ row: any, rowIndex: any }} { row, rowIndex } * @returns {string} * @memberof Main */ protected onRowClassName({ row, rowIndex }: { row: any, rowIndex: any }): string { const index = this.selections.findIndex((select: any) => Object.is(select.srfkey, row.srfkey)); return index !== -1 ? 'grid-row-select' : ''; } /** * 界面行为 * * @param {*} row * @param {*} tag * @param {*} $event * @memberof Main */ protected uiAction(row: any, tag: any, $event: any) { this.rowClick(row, true); } /** * 设置列状态 * * @memberof Main */ protected setColState() { const _data: any = localStorage.getItem('orguser_main_grid'); if (_data) { let columns = JSON.parse(_data); columns.forEach((col: any) => { let column = this.allColumns.find((item) => Object.is(col.name, item.name)); if (column) { Object.assign(column, col); } }); } } /** * 列变化 * * @memberof Main */ protected onColChange() { localStorage.setItem('orguser_main_grid', JSON.stringify(this.allColumns)); } /** * 获取列状态 * * @param {string} name * @returns {boolean} * @memberof Main */ protected getColumnState(name: string): boolean { let column = this.allColumns.find((col: any) => Object.is(name, col.name) ); return column.show ? true : false; } /** * 表格列是否自适应布局 * * @readonly * @type {boolean} * @memberof Main */ get adaptiveState(): boolean { return !this.allColumns.find((column: any) => column.show && Object.is(column.util, 'STAR')); } /** * 保存 * * @param {*} $event * @returns {void} * @memberof Main */ protected save(args: any[], params?: any, $event?: any, xData?: any): void { let _this = this; let promises:any = []; _this.items.forEach((item:any)=>{ if(!item.rowDataState){ return; } else if(Object.is(item.rowDataState, 'create')){ if(!this.createAction){ this.$Notice.error({ title: '错误', desc: 'OrgUserPickupGridView视图表格createAction参数未配置' }); return; } Object.assign(item,{viewparams:this.viewparams}); promises.push(this.service.add(this.createAction, JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator)); }else if(Object.is(item.rowDataState, 'update')){ if(!this.updateAction){ this.$Notice.error({ title: '错误', desc: 'OrgUserPickupGridView视图表格updateAction参数未配置' }); return; } Object.assign(item,{viewparams:this.viewparams}); if(item.orguser){ Object.assign(this.context,{orguser:item.orguser}) } promises.push(this.service.add(this.updateAction,JSON.parse(JSON.stringify(this.context)),item, this.showBusyIndicator)); } }); Promise.all(promises).then((response: any) => { this.$emit('save', response); }).catch((response: any) => { this.$Notice.error({ title: '错误', desc: '系统异常' }); }); } } </script> <style lang='less'> @import './main-grid.less'; </style>