import { Prop, Provide, Emit, Model } from 'vue-property-decorator'; import { Subject, Subscription } from 'rxjs'; import { UIActionTool,Util,ViewTool } from '@/utils'; import { Watch, GridControlBase } from '@/studio-core'; import Res_usersService from '@/service/res-users/res-users-service'; import MainService from './main-grid-service'; import Res_usersUIService from '@/uiservice/res-users/res-users-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 {Res_usersService} * @memberof MainGridBase */ public appEntityService: Res_usersService = new Res_usersService({ $store: this.$store }); /** * 应用实体名称 * * @protected * @type {string} * @memberof MainGridBase */ protected appDeName: string = 'res_users'; /** * 应用实体中文名称 * * @protected * @type {string} * @memberof MainGridBase */ protected appDeLogicName: string = '用户'; /** * 界面UI服务对象 * * @type {Res_usersUIService} * @memberof MainBase */ public appUIService:Res_usersUIService = new Res_usersUIService(this.$store); /** * 界面行为模型 * * @type {*} * @memberof MainBase */ public ActionModel: any = { }; /** * 主信息表格列 * * @type {string} * @memberof MainBase */ public majorInfoColName:string = "name"; /** * 本地缓存标识 * * @protected * @type {string} * @memberof MainBase */ protected localStorageTag: string = 'res_users_main_grid'; /** * 所有列成员 * * @type {any[]} * @memberof MainGridBase */ public allColumns: any[] = [ { name: 'name', label: '名称', langtag: 'entities.res_users.main_grid.columns.name', show: true, unit: 'PX', isEnableRowEdit: false, enableCond: 3 , }, ] /** * 获取表格行模型 * * @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: 'ID 值不能为空', trigger: 'change' }, { required: false, validator: (rule:any, value:any, callback:any) => { return (rule.required && (value === null || value === undefined || value === "")) ? false : true;}, message: 'ID 值不能为空', trigger: 'blur' }, ], } /** * 属性值规则 * * @type {*} * @memberof MainBase */ public deRules:any = { }; /** * 获取对应列class * * @type {*} * @memberof MainBase */ public hasRowEdit: any = { 'name':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} * @memberof MainGridBase */ public async formatExcelData(filterVal: any, jsonData: any, codelistColumns?: any[]): Promise { return super.formatExcelData(filterVal, jsonData, [ ]); } /** * 更新默认值 * @param {*} row 行数据 * @memberof MainBase */ public updateDefault(row: any){ } /** * 计算数据对象类型的默认值 * @param {string} action 行为 * @param {string} param 默认值参数 * @param {*} data 当前行数据 * @memberof MainBase */ public computeDefaultValueWithParam(action:string,param:string,data:any){ if(Object.is(action,"UPDATE")){ const nativeData:any = this.service.getCopynativeData(); if(nativeData && (nativeData instanceof Array) && nativeData.length >0){ let targetData:any = nativeData.find((item:any) =>{ return item.id === data.srfkey; }) if(targetData){ return targetData[param]?targetData[param]:null; }else{ return null; } }else{ return null; } }else{ return this.service.getRemoteCopyData()[param]?this.service.getRemoteCopyData()[param]:null; } } }