data-view9-engine.ts 556 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
import DataViewEngine from './data-view-engine';

/**
 *
 *
 * @export
 * @class EditView9Engine
 * @extends {EditViewEngine}
 */
export default class DataView9Engine extends DataViewEngine {

    /**
     * 引擎加载
     *
     * @param {*} [opts={}]
     * @memberof DataView9Engine
     */
    public load(opts: any = {},isnotify:boolean=false): void {
        if(!this.view.isformDruipart){
            super.load(opts, isnotify);
        }else{
            if(isnotify){
                super.load(opts, isnotify);
            }
        }
    }
}