cancel-select-ui-logic.ts 1.2 KB
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 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
import { Http,Util } from '@/utils';
import CancelSelectUILogicBase from './cancel-select-ui-logic-base';

/**
 * 取消选中(选中返回false)
 * 基于 APP/src/uiservice/%DE_PKGPATH%/%APP_DEUILOGIC%-ui-logic.ts.ftl 生成
 * @export
 * @class CancelSelectUILogic
 */
export default class CancelSelectUILogic extends CancelSelectUILogicBase {

    /**
     * 取消选中(选中返回false) 逻辑实例对象
     *
     * @private
     * @static
     * @type {CancelSelectUILogic}
     * @memberof CancelSelectUILogic
     */
    private static instance: CancelSelectUILogic;

    /**
     * 获取 取消选中(选中返回false) 逻辑实例对象
     *
     * @static
     * @return {*}  {CancelSelectUILogic}
     * @memberof CancelSelectUILogic
     */
    static getInstance(): CancelSelectUILogic {
        if (!this.instance) {
            this.instance = new CancelSelectUILogic();
        }
        return this.instance;
    }

    /**
     * Creates an instance of  CancelSelectUILogic
     * 
     * @param {*} [opts={}]
     * @memberof  CancelSelectUILogic
     */
    constructor(opts: any = {}) {
        super(opts);
    }

}