unable-logic.ts 396 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
import { Http,Util } from '@/utils';
import UnableLogicBase from './unable-logic-base';

/**
 * 无法联系
 *
 * @export
 * @class UnableLogic
 */
export default class UnableLogic extends UnableLogicBase{

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

}