import { Prop, Provide, Emit, Model } from 'vue-property-decorator'; import { Subject, Subscription } from 'rxjs'; import { Watch, GridControlBase } from '@/studio-core'; import HRPostRelService from '@/service/hrpost-rel/hrpost-rel-service'; import MainService from './main-grid-service'; import HRPostRelUIService from '@/uiservice/hrpost-rel/hrpost-rel-ui-service'; import { FormItemModel } from '@/model/form-detail'; /** * grid部件基类 * * @export * @class GridControlBase * @extends {MainGridBase} */ export class MainGridBase extends GridControlBase { /** * 获取部件类型 * * @protected * @type {string} * @memberof MainGridBase */ protected controlType: string = 'GRID'; /** * 建构部件服务对象 * * @type {MainService} * @memberof MainGridBase */ public service: MainService = new MainService({ $store: this.$store }); /** * 实体服务对象 * * @type {HRPostRelService} * @memberof MainGridBase */ public appEntityService: HRPostRelService = new HRPostRelService({ $store: this.$store }); /** * 应用实体名称 * * @protected * @type {string} * @memberof MainGridBase */ protected appDeName: string = 'hrpostrel'; /** * 应用实体中文名称 * * @protected * @type {string} * @memberof MainGridBase */ protected appDeLogicName: string = '职位关系'; /** * 界面UI服务对象 * * @type {HRPostRelUIService} * @memberof MainBase */ public appUIService:HRPostRelUIService = new HRPostRelUIService(this.$store); /** * 界面行为模型 * * @type {*} * @memberof MainBase */ public ActionModel: any = { }; /** * 本地缓存标识 * * @protected * @type {string} * @memberof MainBase */ protected localStorageTag: string = 'hrpostrel_main_grid'; /** * 是否支持分页 * * @type {boolean} * @memberof MainGridBase */ public isEnablePagingBar: boolean = false; /** * 所有列成员 * * @type {any[]} * @memberof MainGridBase */ public allColumns: any[] = [ { name: 'phrpostname', label: '直接上级职位', langtag: 'entities.hrpostrel.main_grid.columns.phrpostname', show: true, util: 'PX', isEnableRowEdit: false, }, { name: 'begintime', label: '生效', langtag: 'entities.hrpostrel.main_grid.columns.begintime', show: true, util: 'PX', isEnableRowEdit: false, }, { name: 'endtime', label: '到期', langtag: 'entities.hrpostrel.main_grid.columns.endtime', show: true, util: 'PX', isEnableRowEdit: false, }, ] /** * 获取表格行模型 * * @type {*} * @memberof MainGridBase */ public getGridRowModel(){ return { srfkey: new FormItemModel(), } } /** * 属性值规则 * * @type {*} * @memberof MainGridBase */ public 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' }, ], } /** * 获取对应列class * * @type {*} * @memberof MainBase */ public hasRowEdit: any = { 'phrpostname':false, 'begintime':false, 'endtime':false, }; /** * 获取对应列class * * @param {*} $args row 行数据,column 列数据,rowIndex 行索引,列索引 * @returns {void} * @memberof MainBase */ public getCellClassName(args: {row: any, column: any, rowIndex: number, columnIndex: number}): any { return ( this.hasRowEdit[args.column.property] && this.actualIsOpenEdit ) ? "edit-cell" : "info-cell"; } /** * 导出数据格式化 * * @param {*} filterVal * @param {*} jsonData * @param {any[]} [codelistColumns=[]] * @returns {Promise<any>} * @memberof MainGridBase */ public async formatExcelData(filterVal: any, jsonData: any, codelistColumns?: any[]): Promise<any> { return super.formatExcelData(filterVal, jsonData, [ ]); } }