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 CustomViewDestroyUILogicBase from './custom-view-destroy-ui-logic-base';
/**
* 自定义表格视图销毁
* 基于 APP/src/uiservice/%DE_PKGPATH%/%APP_DEUILOGIC%-ui-logic.ts.ftl 生成
* @export
* @class CustomViewDestroyUILogic
*/
export default class CustomViewDestroyUILogic extends CustomViewDestroyUILogicBase {
/**
* 自定义表格视图销毁 逻辑实例对象
*
* @private
* @static
* @type {CustomViewDestroyUILogic}
* @memberof CustomViewDestroyUILogic
*/
private static instance: CustomViewDestroyUILogic;
/**
* 获取 自定义表格视图销毁 逻辑实例对象
*
* @static
* @return {*} {CustomViewDestroyUILogic}
* @memberof CustomViewDestroyUILogic
*/
static getInstance(): CustomViewDestroyUILogic {
if (!this.instance) {
this.instance = new CustomViewDestroyUILogic();
}
return this.instance;
}
/**
* Creates an instance of CustomViewDestroyUILogic
*
* @param {*} [opts={}]
* @memberof CustomViewDestroyUILogic
*/
constructor(opts: any = {}) {
super(opts);
}
}