import { Prop, Provide, Emit, Model } from 'vue-property-decorator'; import { Subject, Subscription } from 'rxjs'; import { Watch, GridControllerBase } from '@/studio-core'; import InvoiceService from '@/service/invoice/invoice-service'; import MainService from './main-grid-service'; import { FormItemModel } from '@/model/form-detail'; /** * grid部件基类 * * @export * @class GridControllerBase * @extends {MainGridBase} */ export class MainGridBase extends GridControllerBase { /** * 建构部件服务对象 * * @type {MainService} * @memberof MainGridBase */ public service: MainService = new MainService({ $store: this.$store }); /** * 实体服务对象 * * @type {InvoiceService} * @memberof MainGridBase */ public appEntityService: InvoiceService = new InvoiceService({ $store: this.$store }); /** * 应用实体名称 * * @protected * @type {string} * @memberof MainGridBase */ protected appDeName: string = 'invoice'; /** * 本地缓存标识 * * @protected * @type {string} * @memberof GridControllerBase */ protected localStorageTag: string = 'invoice_main_grid'; /** * 所有列成员 * * @type {any[]} * @memberof MainGridBase */ public allColumns: any[] = [ { name: 'invoicename', label: '发票名称', langtag: 'entities.invoice.main_grid.columns.invoicename', show: true, util: 'PX' }, { name: 'statuscode', label: '状态描述', langtag: 'entities.invoice.main_grid.columns.statuscode', show: true, util: 'PX' }, { name: 'totalamount', label: '总金额', langtag: 'entities.invoice.main_grid.columns.totalamount', show: true, util: 'PX' }, { name: 'customerid', label: '客户', langtag: 'entities.invoice.main_grid.columns.customerid', show: true, util: 'PX' }, ] /** * 获取表格行模型 * * @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 = { 'invoicename':false, 'statuscode':false, 'totalamount':false, 'customerid':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, [ { name: 'statuscode', srfkey: 'Invoice__StatusCode', codelistType : 'STATIC', renderMode: 'other', textSeparator: '、', valueSeparator: ',', }, ]); } }