clickgo 6.0.0 → 6.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/app/demo.cga +0 -0
- package/dist/app/task.cga +0 -0
- package/dist/clickgo.d.ts +6 -0
- package/dist/control/common.cgc +0 -0
- package/dist/control/form.cgc +0 -0
- package/dist/index.js +1 -1
- package/doc/clickgo-rag.md +377 -333
- package/package.json +1 -1
- package/dist/control/tplink.cgc +0 -0
- package/dist/ext/tplinkhd.min.js +0 -1
package/doc/clickgo-rag.md
CHANGED
|
@@ -211,13 +211,19 @@ cell 之间的间距,默认 0。
|
|
|
211
211
|
|
|
212
212
|
是否显示条纹,默认 `false`。
|
|
213
213
|
|
|
214
|
+
#### breakpoint
|
|
215
|
+
|
|
216
|
+
`number` | `string`
|
|
217
|
+
|
|
218
|
+
切换为纵向布局的容器宽度断点,默认 `600`。容器宽度大于等于断点时为横向布局,否则为纵向布局。
|
|
219
|
+
|
|
214
220
|
### 事件
|
|
215
221
|
|
|
216
222
|
#### direction
|
|
217
223
|
|
|
218
224
|
`(direction: 'h' | 'v') => void`
|
|
219
225
|
|
|
220
|
-
|
|
226
|
+
布局方向变化时触发。
|
|
221
227
|
|
|
222
228
|
### 样式
|
|
223
229
|
|
|
@@ -228,12 +234,13 @@ cell 之间的间距,默认 0。
|
|
|
228
234
|
### 示例
|
|
229
235
|
|
|
230
236
|
```xml
|
|
231
|
-
<alayout2 :gutter="10" @direction="onDirection">
|
|
237
|
+
<alayout2 :gutter="10" :breakpoint="480" @direction="onDirection">
|
|
232
238
|
<alayout2-cell>Sidebar</alayout2-cell>
|
|
233
239
|
<alayout2-cell>Content</alayout2-cell>
|
|
234
240
|
</alayout2>
|
|
235
241
|
```
|
|
236
242
|
|
|
243
|
+
|
|
237
244
|
## alayout2-cell
|
|
238
245
|
---
|
|
239
246
|
|
|
@@ -2987,6 +2994,12 @@ public init(canvas: fabric.Canvas): void {
|
|
|
2987
2994
|
|
|
2988
2995
|
关闭时触发。
|
|
2989
2996
|
|
|
2997
|
+
#### size
|
|
2998
|
+
|
|
2999
|
+
`(size: { width: number; height: number }) => void`
|
|
3000
|
+
|
|
3001
|
+
窗体实际显示尺寸变化时触发,首次挂载也会触发。框架只报告尺寸,不自动改变窗体位置、大小或窗口能力;应用可据此自行切换 `move`、`resize`、`min`、`max` 等参数。
|
|
3002
|
+
|
|
2990
3003
|
### 样式
|
|
2991
3004
|
|
|
2992
3005
|
使用 flex 布局,包含标题栏和内容区域。标题栏显示图标、标题文本和控制按钮(最小化/最大化/关闭)。
|
|
@@ -2998,9 +3011,10 @@ public init(canvas: fabric.Canvas): void {
|
|
|
2998
3011
|
### 示例
|
|
2999
3012
|
|
|
3000
3013
|
```xml
|
|
3001
|
-
<form title="My Form" :width="500" :height="400">Content</form>
|
|
3014
|
+
<form title="My Form" :width="500" :height="400" :move="move" :resize="resize" :max="max" @size="onSize">Content</form>
|
|
3002
3015
|
```
|
|
3003
3016
|
|
|
3017
|
+
|
|
3004
3018
|
## greatlist
|
|
3005
3019
|
---
|
|
3006
3020
|
|
|
@@ -7820,69 +7834,61 @@ number 类型下增减按钮、键盘上下键及拖拽调值的步长,必须
|
|
|
7820
7834
|
<title type="primary">Main Title</title>
|
|
7821
7835
|
```
|
|
7822
7836
|
|
|
7823
|
-
##
|
|
7837
|
+
## toolbar
|
|
7824
7838
|
---
|
|
7825
7839
|
|
|
7826
|
-
|
|
7840
|
+
桌面软件命令工具栏。默认保持单行显示,空间不足时允许横向滚动;需要固定显示的命令或“更多”菜单可放入右侧插槽。
|
|
7827
7841
|
|
|
7828
7842
|
### 参数
|
|
7829
7843
|
|
|
7830
|
-
####
|
|
7831
|
-
|
|
7832
|
-
`{ sid: string; skey: string }`
|
|
7833
|
-
|
|
7834
|
-
初始化配置,包含 sid 和 skey。
|
|
7835
|
-
|
|
7836
|
-
#### controls
|
|
7844
|
+
#### border
|
|
7837
7845
|
|
|
7838
7846
|
`boolean` | `string`
|
|
7839
7847
|
|
|
7840
|
-
|
|
7841
|
-
|
|
7842
|
-
#### layout
|
|
7848
|
+
是否显示工具栏底部分隔线,默认 `true`。
|
|
7843
7849
|
|
|
7844
|
-
|
|
7845
|
-
|
|
7846
|
-
布局配置。
|
|
7847
|
-
|
|
7848
|
-
#### list
|
|
7849
|
-
|
|
7850
|
-
`Array<{ device: string; channel: number; index: number; mode: number; volume?: boolean }>`
|
|
7851
|
-
|
|
7852
|
-
播放列表。
|
|
7853
|
-
|
|
7854
|
-
#### range
|
|
7855
|
-
|
|
7856
|
-
`[number, number]` | `null`
|
|
7857
|
-
|
|
7858
|
-
回放时间范围,null 为实时播放。
|
|
7850
|
+
#### plain
|
|
7859
7851
|
|
|
7860
|
-
|
|
7852
|
+
`boolean` | `string`
|
|
7861
7853
|
|
|
7862
|
-
`
|
|
7854
|
+
是否使用透明背景,默认 `false`。
|
|
7863
7855
|
|
|
7864
|
-
|
|
7856
|
+
#### scroll
|
|
7865
7857
|
|
|
7866
|
-
|
|
7858
|
+
`boolean` | `string`
|
|
7867
7859
|
|
|
7868
|
-
|
|
7860
|
+
内容超出时是否允许横向滚动,默认 `true`。鼠标滚轮和触摸拖动均可操作;存在未显示内容时,对应边缘会显示渐变提示。
|
|
7869
7861
|
|
|
7870
|
-
|
|
7862
|
+
### 插槽
|
|
7871
7863
|
|
|
7872
|
-
|
|
7864
|
+
#### default
|
|
7873
7865
|
|
|
7874
|
-
|
|
7866
|
+
工具栏主要命令。
|
|
7875
7867
|
|
|
7876
|
-
|
|
7868
|
+
#### right
|
|
7877
7869
|
|
|
7878
|
-
|
|
7870
|
+
始终固定在工具栏右侧的命令。可在这里放置带 `pop` 插槽的按钮,将低优先级命令保留为 ClickGo 菜单。
|
|
7879
7871
|
|
|
7880
7872
|
### 示例
|
|
7881
7873
|
|
|
7882
7874
|
```xml
|
|
7883
|
-
<
|
|
7875
|
+
<toolbar>
|
|
7876
|
+
<button type="tool">Open</button>
|
|
7877
|
+
<button type="tool">Save</button>
|
|
7878
|
+
<template v-slot:right>
|
|
7879
|
+
<button type="tool" area="mark">
|
|
7880
|
+
More
|
|
7881
|
+
<template v-slot:pop>
|
|
7882
|
+
<menulist>
|
|
7883
|
+
<menulist-item @click="exportFile">Export</menulist-item>
|
|
7884
|
+
</menulist>
|
|
7885
|
+
</template>
|
|
7886
|
+
</button>
|
|
7887
|
+
</template>
|
|
7888
|
+
</toolbar>
|
|
7884
7889
|
```
|
|
7885
7890
|
|
|
7891
|
+
|
|
7886
7892
|
## tuieditor
|
|
7887
7893
|
---
|
|
7888
7894
|
|
|
@@ -9409,7 +9415,7 @@ clickgo/functions/launcher.md
|
|
|
9409
9415
|
|
|
9410
9416
|
> **launcher**(`boot`): `Promise`\<`void`\>
|
|
9411
9417
|
|
|
9412
|
-
Defined in: [clickgo.ts:
|
|
9418
|
+
Defined in: [clickgo.ts:415](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L415)
|
|
9413
9419
|
|
|
9414
9420
|
启动 ClickGo
|
|
9415
9421
|
|
|
@@ -9425,6 +9431,43 @@ Defined in: [clickgo.ts:407](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9425
9431
|
|
|
9426
9432
|
`Promise`\<`void`\>
|
|
9427
9433
|
|
|
9434
|
+
clickgo/functions/showBrowserWarning.md
|
|
9435
|
+
---
|
|
9436
|
+
|
|
9437
|
+
[**Documents for clickgo**](../../index.md)
|
|
9438
|
+
|
|
9439
|
+
***
|
|
9440
|
+
|
|
9441
|
+
[Documents for clickgo](../../index.md) / [clickgo](../index.md) / showBrowserWarning
|
|
9442
|
+
|
|
9443
|
+
# Function: showBrowserWarning()
|
|
9444
|
+
|
|
9445
|
+
> **showBrowserWarning**(`text`): `void`
|
|
9446
|
+
|
|
9447
|
+
Defined in: [clickgo.ts:340](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L340)
|
|
9448
|
+
|
|
9449
|
+
显示浏览器运行环境提示
|
|
9450
|
+
|
|
9451
|
+
## Parameters
|
|
9452
|
+
|
|
9453
|
+
### text
|
|
9454
|
+
|
|
9455
|
+
#### button
|
|
9456
|
+
|
|
9457
|
+
`string`
|
|
9458
|
+
|
|
9459
|
+
#### content
|
|
9460
|
+
|
|
9461
|
+
`string`
|
|
9462
|
+
|
|
9463
|
+
#### title
|
|
9464
|
+
|
|
9465
|
+
`string`
|
|
9466
|
+
|
|
9467
|
+
## Returns
|
|
9468
|
+
|
|
9469
|
+
`void`
|
|
9470
|
+
|
|
9428
9471
|
clickgo/index.md
|
|
9429
9472
|
---
|
|
9430
9473
|
|
|
@@ -9455,6 +9498,7 @@ clickgo/index.md
|
|
|
9455
9498
|
- [hasFrame](functions/hasFrame.md)
|
|
9456
9499
|
- [isNative](functions/isNative.md)
|
|
9457
9500
|
- [launcher](functions/launcher.md)
|
|
9501
|
+
- [showBrowserWarning](functions/showBrowserWarning.md)
|
|
9458
9502
|
|
|
9459
9503
|
## References
|
|
9460
9504
|
|
|
@@ -14966,7 +15010,7 @@ lib/core/functions/checkModule.md
|
|
|
14966
15010
|
|
|
14967
15011
|
> **checkModule**(`name`): `boolean`
|
|
14968
15012
|
|
|
14969
|
-
Defined in: [lib/core.ts:
|
|
15013
|
+
Defined in: [lib/core.ts:1350](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1350)
|
|
14970
15014
|
|
|
14971
15015
|
检查特殊模块是否注册
|
|
14972
15016
|
|
|
@@ -15128,7 +15172,7 @@ lib/core/functions/getModule.md
|
|
|
15128
15172
|
|
|
15129
15173
|
> **getModule**(`name`): `Promise`\<[`ITumsPlayer`](../interfaces/ITumsPlayer.md) \| `null`\>
|
|
15130
15174
|
|
|
15131
|
-
Defined in: [lib/core.ts:
|
|
15175
|
+
Defined in: [lib/core.ts:1354](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1354)
|
|
15132
15176
|
|
|
15133
15177
|
### Parameters
|
|
15134
15178
|
|
|
@@ -15144,7 +15188,7 @@ Defined in: [lib/core.ts:1367](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15144
15188
|
|
|
15145
15189
|
> **getModule**(`name`): `Promise`\<\{ \} \| `null`\>
|
|
15146
15190
|
|
|
15147
|
-
Defined in: [lib/core.ts:
|
|
15191
|
+
Defined in: [lib/core.ts:1355](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1355)
|
|
15148
15192
|
|
|
15149
15193
|
### Parameters
|
|
15150
15194
|
|
|
@@ -15160,7 +15204,7 @@ Defined in: [lib/core.ts:1368](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15160
15204
|
|
|
15161
15205
|
> **getModule**(`name`): `Promise`\<`__module` \| `null`\>
|
|
15162
15206
|
|
|
15163
|
-
Defined in: [lib/core.ts:
|
|
15207
|
+
Defined in: [lib/core.ts:1356](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1356)
|
|
15164
15208
|
|
|
15165
15209
|
### Parameters
|
|
15166
15210
|
|
|
@@ -15176,7 +15220,7 @@ Defined in: [lib/core.ts:1369](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15176
15220
|
|
|
15177
15221
|
> **getModule**(`name`): `Promise`\<`any`\>
|
|
15178
15222
|
|
|
15179
|
-
Defined in: [lib/core.ts:
|
|
15223
|
+
Defined in: [lib/core.ts:1357](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1357)
|
|
15180
15224
|
|
|
15181
15225
|
### Parameters
|
|
15182
15226
|
|
|
@@ -15236,7 +15280,7 @@ lib/core/functions/init.md
|
|
|
15236
15280
|
|
|
15237
15281
|
> **init**(): `void`
|
|
15238
15282
|
|
|
15239
|
-
Defined in: [lib/core.ts:
|
|
15283
|
+
Defined in: [lib/core.ts:1419](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1419)
|
|
15240
15284
|
|
|
15241
15285
|
## Returns
|
|
15242
15286
|
|
|
@@ -15284,7 +15328,7 @@ lib/core/functions/loadModule.md
|
|
|
15284
15328
|
|
|
15285
15329
|
> **loadModule**(`name`): `Promise`\<`boolean`\>
|
|
15286
15330
|
|
|
15287
|
-
Defined in: [lib/core.ts:
|
|
15331
|
+
Defined in: [lib/core.ts:1374](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1374)
|
|
15288
15332
|
|
|
15289
15333
|
加载模块,返回 true / false
|
|
15290
15334
|
|
|
@@ -15406,7 +15450,7 @@ lib/core/functions/regModule.md
|
|
|
15406
15450
|
|
|
15407
15451
|
> **regModule**(`current`, `name`, `opt`): `Promise`\<`boolean`\>
|
|
15408
15452
|
|
|
15409
|
-
Defined in: [lib/core.ts:
|
|
15453
|
+
Defined in: [lib/core.ts:1321](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1321)
|
|
15410
15454
|
|
|
15411
15455
|
注册模块
|
|
15412
15456
|
|
|
@@ -15591,7 +15635,7 @@ lib/core/interfaces/IAppConfig.md
|
|
|
15591
15635
|
|
|
15592
15636
|
# Interface: IAppConfig
|
|
15593
15637
|
|
|
15594
|
-
Defined in: [lib/core.ts:
|
|
15638
|
+
Defined in: [lib/core.ts:1584](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1584)
|
|
15595
15639
|
|
|
15596
15640
|
应用文件包 config
|
|
15597
15641
|
|
|
@@ -15601,7 +15645,7 @@ Defined in: [lib/core.ts:1597](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15601
15645
|
|
|
15602
15646
|
> **author**: `string`
|
|
15603
15647
|
|
|
15604
|
-
Defined in: [lib/core.ts:
|
|
15648
|
+
Defined in: [lib/core.ts:1592](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1592)
|
|
15605
15649
|
|
|
15606
15650
|
作者
|
|
15607
15651
|
|
|
@@ -15611,7 +15655,7 @@ Defined in: [lib/core.ts:1605](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15611
15655
|
|
|
15612
15656
|
> **controls**: `string`[]
|
|
15613
15657
|
|
|
15614
|
-
Defined in: [lib/core.ts:
|
|
15658
|
+
Defined in: [lib/core.ts:1595](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1595)
|
|
15615
15659
|
|
|
15616
15660
|
将要加载的控件
|
|
15617
15661
|
|
|
@@ -15621,7 +15665,7 @@ Defined in: [lib/core.ts:1608](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15621
15665
|
|
|
15622
15666
|
> `optional` **files?**: `string`[]
|
|
15623
15667
|
|
|
15624
|
-
Defined in: [lib/core.ts:
|
|
15668
|
+
Defined in: [lib/core.ts:1608](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1608)
|
|
15625
15669
|
|
|
15626
15670
|
将要加载的非 js 文件列表,打包为 cga 模式下此配置可省略
|
|
15627
15671
|
|
|
@@ -15631,7 +15675,7 @@ Defined in: [lib/core.ts:1621](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15631
15675
|
|
|
15632
15676
|
> `optional` **icon?**: `string`
|
|
15633
15677
|
|
|
15634
|
-
Defined in: [lib/core.ts:
|
|
15678
|
+
Defined in: [lib/core.ts:1605](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1605)
|
|
15635
15679
|
|
|
15636
15680
|
图标路径,需包含扩展名
|
|
15637
15681
|
|
|
@@ -15641,7 +15685,7 @@ Defined in: [lib/core.ts:1618](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15641
15685
|
|
|
15642
15686
|
> `optional` **locales?**: `Record`\<`string`, `string`\>
|
|
15643
15687
|
|
|
15644
|
-
Defined in: [lib/core.ts:
|
|
15688
|
+
Defined in: [lib/core.ts:1601](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1601)
|
|
15645
15689
|
|
|
15646
15690
|
将自动加载的语言包,path: lang
|
|
15647
15691
|
|
|
@@ -15651,7 +15695,7 @@ Defined in: [lib/core.ts:1614](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15651
15695
|
|
|
15652
15696
|
> `optional` **modules?**: `string`[]
|
|
15653
15697
|
|
|
15654
|
-
Defined in: [lib/core.ts:
|
|
15698
|
+
Defined in: [lib/core.ts:1610](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1610)
|
|
15655
15699
|
|
|
15656
15700
|
要提前加载的库名
|
|
15657
15701
|
|
|
@@ -15661,7 +15705,7 @@ Defined in: [lib/core.ts:1623](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15661
15705
|
|
|
15662
15706
|
> **name**: `string`
|
|
15663
15707
|
|
|
15664
|
-
Defined in: [lib/core.ts:
|
|
15708
|
+
Defined in: [lib/core.ts:1586](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1586)
|
|
15665
15709
|
|
|
15666
15710
|
应用名
|
|
15667
15711
|
|
|
@@ -15671,7 +15715,7 @@ Defined in: [lib/core.ts:1599](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15671
15715
|
|
|
15672
15716
|
> `optional` **permissions?**: `string`[]
|
|
15673
15717
|
|
|
15674
|
-
Defined in: [lib/core.ts:
|
|
15718
|
+
Defined in: [lib/core.ts:1599](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1599)
|
|
15675
15719
|
|
|
15676
15720
|
将自动申请的权限
|
|
15677
15721
|
|
|
@@ -15681,7 +15725,7 @@ Defined in: [lib/core.ts:1612](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15681
15725
|
|
|
15682
15726
|
> `optional` **style?**: `string`
|
|
15683
15727
|
|
|
15684
|
-
Defined in: [lib/core.ts:
|
|
15728
|
+
Defined in: [lib/core.ts:1603](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1603)
|
|
15685
15729
|
|
|
15686
15730
|
全局样式,不带扩展名,系统会在末尾添加 .css
|
|
15687
15731
|
|
|
@@ -15691,7 +15735,7 @@ Defined in: [lib/core.ts:1616](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15691
15735
|
|
|
15692
15736
|
> `optional` **themes?**: `string`[]
|
|
15693
15737
|
|
|
15694
|
-
Defined in: [lib/core.ts:
|
|
15738
|
+
Defined in: [lib/core.ts:1597](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1597)
|
|
15695
15739
|
|
|
15696
15740
|
将自动加载的主题
|
|
15697
15741
|
|
|
@@ -15701,7 +15745,7 @@ Defined in: [lib/core.ts:1610](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15701
15745
|
|
|
15702
15746
|
> **ver**: `number`
|
|
15703
15747
|
|
|
15704
|
-
Defined in: [lib/core.ts:
|
|
15748
|
+
Defined in: [lib/core.ts:1588](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1588)
|
|
15705
15749
|
|
|
15706
15750
|
发行版本
|
|
15707
15751
|
|
|
@@ -15711,7 +15755,7 @@ Defined in: [lib/core.ts:1601](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15711
15755
|
|
|
15712
15756
|
> **version**: `string`
|
|
15713
15757
|
|
|
15714
|
-
Defined in: [lib/core.ts:
|
|
15758
|
+
Defined in: [lib/core.ts:1590](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1590)
|
|
15715
15759
|
|
|
15716
15760
|
发行版本字符串
|
|
15717
15761
|
|
|
@@ -15726,7 +15770,7 @@ lib/core/interfaces/IApp.md
|
|
|
15726
15770
|
|
|
15727
15771
|
# Interface: IApp
|
|
15728
15772
|
|
|
15729
|
-
Defined in: [lib/core.ts:
|
|
15773
|
+
Defined in: [lib/core.ts:1551](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1551)
|
|
15730
15774
|
|
|
15731
15775
|
应用包解包后对象
|
|
15732
15776
|
|
|
@@ -15736,7 +15780,7 @@ Defined in: [lib/core.ts:1564](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15736
15780
|
|
|
15737
15781
|
> **config**: [`IAppConfig`](IAppConfig.md)
|
|
15738
15782
|
|
|
15739
|
-
Defined in: [lib/core.ts:
|
|
15783
|
+
Defined in: [lib/core.ts:1554](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1554)
|
|
15740
15784
|
|
|
15741
15785
|
控件对象配置文件
|
|
15742
15786
|
|
|
@@ -15746,7 +15790,7 @@ Defined in: [lib/core.ts:1567](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15746
15790
|
|
|
15747
15791
|
> **icon**: `string`
|
|
15748
15792
|
|
|
15749
|
-
Defined in: [lib/core.ts:
|
|
15793
|
+
Defined in: [lib/core.ts:1556](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1556)
|
|
15750
15794
|
|
|
15751
15795
|
应用图标
|
|
15752
15796
|
|
|
@@ -15756,7 +15800,7 @@ Defined in: [lib/core.ts:1569](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15756
15800
|
|
|
15757
15801
|
> **package**: [`IAppPackage`](IAppPackage.md)
|
|
15758
15802
|
|
|
15759
|
-
Defined in: [lib/core.ts:
|
|
15803
|
+
Defined in: [lib/core.ts:1558](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1558)
|
|
15760
15804
|
|
|
15761
15805
|
新 CGA 的按需解密包读取器
|
|
15762
15806
|
|
|
@@ -15766,7 +15810,7 @@ Defined in: [lib/core.ts:1571](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15766
15810
|
|
|
15767
15811
|
> **type**: `"app"`
|
|
15768
15812
|
|
|
15769
|
-
Defined in: [lib/core.ts:
|
|
15813
|
+
Defined in: [lib/core.ts:1552](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1552)
|
|
15770
15814
|
|
|
15771
15815
|
lib/core/interfaces/IAppPackageEntry.md
|
|
15772
15816
|
---
|
|
@@ -15779,7 +15823,7 @@ lib/core/interfaces/IAppPackageEntry.md
|
|
|
15779
15823
|
|
|
15780
15824
|
# Interface: IAppPackageEntry
|
|
15781
15825
|
|
|
15782
|
-
Defined in: [lib/core.ts:
|
|
15826
|
+
Defined in: [lib/core.ts:1562](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1562)
|
|
15783
15827
|
|
|
15784
15828
|
CGA 包内项目
|
|
15785
15829
|
|
|
@@ -15789,7 +15833,7 @@ CGA 包内项目
|
|
|
15789
15833
|
|
|
15790
15834
|
> **isDirectory**: `boolean`
|
|
15791
15835
|
|
|
15792
|
-
Defined in: [lib/core.ts:
|
|
15836
|
+
Defined in: [lib/core.ts:1563](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1563)
|
|
15793
15837
|
|
|
15794
15838
|
***
|
|
15795
15839
|
|
|
@@ -15797,7 +15841,7 @@ Defined in: [lib/core.ts:1576](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15797
15841
|
|
|
15798
15842
|
> **isFile**: `boolean`
|
|
15799
15843
|
|
|
15800
|
-
Defined in: [lib/core.ts:
|
|
15844
|
+
Defined in: [lib/core.ts:1564](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1564)
|
|
15801
15845
|
|
|
15802
15846
|
***
|
|
15803
15847
|
|
|
@@ -15805,7 +15849,7 @@ Defined in: [lib/core.ts:1577](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15805
15849
|
|
|
15806
15850
|
> **name**: `string`
|
|
15807
15851
|
|
|
15808
|
-
Defined in: [lib/core.ts:
|
|
15852
|
+
Defined in: [lib/core.ts:1565](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1565)
|
|
15809
15853
|
|
|
15810
15854
|
lib/core/interfaces/IAppPackage.md
|
|
15811
15855
|
---
|
|
@@ -15818,7 +15862,7 @@ lib/core/interfaces/IAppPackage.md
|
|
|
15818
15862
|
|
|
15819
15863
|
# Interface: IAppPackage
|
|
15820
15864
|
|
|
15821
|
-
Defined in: [lib/core.ts:
|
|
15865
|
+
Defined in: [lib/core.ts:1576](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1576)
|
|
15822
15866
|
|
|
15823
15867
|
CGA 按需解密包读取器
|
|
15824
15868
|
|
|
@@ -15828,7 +15872,7 @@ CGA 按需解密包读取器
|
|
|
15828
15872
|
|
|
15829
15873
|
> **clear**(): `void`
|
|
15830
15874
|
|
|
15831
|
-
Defined in: [lib/core.ts:
|
|
15875
|
+
Defined in: [lib/core.ts:1580](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1580)
|
|
15832
15876
|
|
|
15833
15877
|
#### Returns
|
|
15834
15878
|
|
|
@@ -15840,7 +15884,7 @@ Defined in: [lib/core.ts:1593](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15840
15884
|
|
|
15841
15885
|
> **getContent**(`path`): `Promise`\<`string` \| `Blob` \| `null`\>
|
|
15842
15886
|
|
|
15843
|
-
Defined in: [lib/core.ts:
|
|
15887
|
+
Defined in: [lib/core.ts:1577](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1577)
|
|
15844
15888
|
|
|
15845
15889
|
#### Parameters
|
|
15846
15890
|
|
|
@@ -15858,7 +15902,7 @@ Defined in: [lib/core.ts:1590](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15858
15902
|
|
|
15859
15903
|
> **readDir**(`path`): [`IAppPackageEntry`](IAppPackageEntry.md)[]
|
|
15860
15904
|
|
|
15861
|
-
Defined in: [lib/core.ts:
|
|
15905
|
+
Defined in: [lib/core.ts:1579](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1579)
|
|
15862
15906
|
|
|
15863
15907
|
#### Parameters
|
|
15864
15908
|
|
|
@@ -15876,7 +15920,7 @@ Defined in: [lib/core.ts:1592](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15876
15920
|
|
|
15877
15921
|
> **stats**(`path`): [`IAppPackageStats`](IAppPackageStats.md) \| `null`
|
|
15878
15922
|
|
|
15879
|
-
Defined in: [lib/core.ts:
|
|
15923
|
+
Defined in: [lib/core.ts:1578](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1578)
|
|
15880
15924
|
|
|
15881
15925
|
#### Parameters
|
|
15882
15926
|
|
|
@@ -15899,7 +15943,7 @@ lib/core/interfaces/IAppPackageStats.md
|
|
|
15899
15943
|
|
|
15900
15944
|
# Interface: IAppPackageStats
|
|
15901
15945
|
|
|
15902
|
-
Defined in: [lib/core.ts:
|
|
15946
|
+
Defined in: [lib/core.ts:1569](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1569)
|
|
15903
15947
|
|
|
15904
15948
|
CGA 包内项目属性
|
|
15905
15949
|
|
|
@@ -15909,7 +15953,7 @@ CGA 包内项目属性
|
|
|
15909
15953
|
|
|
15910
15954
|
> **isDirectory**: `boolean`
|
|
15911
15955
|
|
|
15912
|
-
Defined in: [lib/core.ts:
|
|
15956
|
+
Defined in: [lib/core.ts:1570](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1570)
|
|
15913
15957
|
|
|
15914
15958
|
***
|
|
15915
15959
|
|
|
@@ -15917,7 +15961,7 @@ Defined in: [lib/core.ts:1583](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15917
15961
|
|
|
15918
15962
|
> **isFile**: `boolean`
|
|
15919
15963
|
|
|
15920
|
-
Defined in: [lib/core.ts:
|
|
15964
|
+
Defined in: [lib/core.ts:1571](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1571)
|
|
15921
15965
|
|
|
15922
15966
|
***
|
|
15923
15967
|
|
|
@@ -15925,7 +15969,7 @@ Defined in: [lib/core.ts:1584](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15925
15969
|
|
|
15926
15970
|
> **size**: `number`
|
|
15927
15971
|
|
|
15928
|
-
Defined in: [lib/core.ts:
|
|
15972
|
+
Defined in: [lib/core.ts:1572](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1572)
|
|
15929
15973
|
|
|
15930
15974
|
lib/core/interfaces/IAvailArea.md
|
|
15931
15975
|
---
|
|
@@ -15938,7 +15982,7 @@ lib/core/interfaces/IAvailArea.md
|
|
|
15938
15982
|
|
|
15939
15983
|
# Interface: IAvailArea
|
|
15940
15984
|
|
|
15941
|
-
Defined in: [lib/core.ts:
|
|
15985
|
+
Defined in: [lib/core.ts:1517](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1517)
|
|
15942
15986
|
|
|
15943
15987
|
屏幕可用区域
|
|
15944
15988
|
|
|
@@ -15948,7 +15992,7 @@ Defined in: [lib/core.ts:1530](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15948
15992
|
|
|
15949
15993
|
> **height**: `number`
|
|
15950
15994
|
|
|
15951
|
-
Defined in: [lib/core.ts:
|
|
15995
|
+
Defined in: [lib/core.ts:1521](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1521)
|
|
15952
15996
|
|
|
15953
15997
|
***
|
|
15954
15998
|
|
|
@@ -15956,7 +16000,7 @@ Defined in: [lib/core.ts:1534](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15956
16000
|
|
|
15957
16001
|
> **left**: `number`
|
|
15958
16002
|
|
|
15959
|
-
Defined in: [lib/core.ts:
|
|
16003
|
+
Defined in: [lib/core.ts:1518](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1518)
|
|
15960
16004
|
|
|
15961
16005
|
***
|
|
15962
16006
|
|
|
@@ -15964,7 +16008,7 @@ Defined in: [lib/core.ts:1531](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15964
16008
|
|
|
15965
16009
|
> **oheight**: `number`
|
|
15966
16010
|
|
|
15967
|
-
Defined in: [lib/core.ts:
|
|
16011
|
+
Defined in: [lib/core.ts:1523](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1523)
|
|
15968
16012
|
|
|
15969
16013
|
***
|
|
15970
16014
|
|
|
@@ -15972,7 +16016,7 @@ Defined in: [lib/core.ts:1536](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15972
16016
|
|
|
15973
16017
|
> **owidth**: `number`
|
|
15974
16018
|
|
|
15975
|
-
Defined in: [lib/core.ts:
|
|
16019
|
+
Defined in: [lib/core.ts:1522](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1522)
|
|
15976
16020
|
|
|
15977
16021
|
***
|
|
15978
16022
|
|
|
@@ -15980,7 +16024,7 @@ Defined in: [lib/core.ts:1535](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15980
16024
|
|
|
15981
16025
|
> **top**: `number`
|
|
15982
16026
|
|
|
15983
|
-
Defined in: [lib/core.ts:
|
|
16027
|
+
Defined in: [lib/core.ts:1519](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1519)
|
|
15984
16028
|
|
|
15985
16029
|
***
|
|
15986
16030
|
|
|
@@ -15988,7 +16032,7 @@ Defined in: [lib/core.ts:1532](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15988
16032
|
|
|
15989
16033
|
> **width**: `number`
|
|
15990
16034
|
|
|
15991
|
-
Defined in: [lib/core.ts:
|
|
16035
|
+
Defined in: [lib/core.ts:1520](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1520)
|
|
15992
16036
|
|
|
15993
16037
|
lib/core/interfaces/IConfigLauncherItem.md
|
|
15994
16038
|
---
|
|
@@ -16001,7 +16045,7 @@ lib/core/interfaces/IConfigLauncherItem.md
|
|
|
16001
16045
|
|
|
16002
16046
|
# Interface: IConfigLauncherItem
|
|
16003
16047
|
|
|
16004
|
-
Defined in: [lib/core.ts:
|
|
16048
|
+
Defined in: [lib/core.ts:1508](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1508)
|
|
16005
16049
|
|
|
16006
16050
|
Launcher 的 item 对象
|
|
16007
16051
|
|
|
@@ -16011,7 +16055,7 @@ Launcher 的 item 对象
|
|
|
16011
16055
|
|
|
16012
16056
|
> `optional` **icon?**: `string`
|
|
16013
16057
|
|
|
16014
|
-
Defined in: [lib/core.ts:
|
|
16058
|
+
Defined in: [lib/core.ts:1512](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1512)
|
|
16015
16059
|
|
|
16016
16060
|
***
|
|
16017
16061
|
|
|
@@ -16019,7 +16063,7 @@ Defined in: [lib/core.ts:1525](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16019
16063
|
|
|
16020
16064
|
> `optional` **id?**: `string`
|
|
16021
16065
|
|
|
16022
|
-
Defined in: [lib/core.ts:
|
|
16066
|
+
Defined in: [lib/core.ts:1509](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1509)
|
|
16023
16067
|
|
|
16024
16068
|
***
|
|
16025
16069
|
|
|
@@ -16027,7 +16071,7 @@ Defined in: [lib/core.ts:1522](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16027
16071
|
|
|
16028
16072
|
> `optional` **list?**: `object`[]
|
|
16029
16073
|
|
|
16030
|
-
Defined in: [lib/core.ts:
|
|
16074
|
+
Defined in: [lib/core.ts:1513](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1513)
|
|
16031
16075
|
|
|
16032
16076
|
#### icon
|
|
16033
16077
|
|
|
@@ -16051,7 +16095,7 @@ Defined in: [lib/core.ts:1526](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16051
16095
|
|
|
16052
16096
|
> **name**: `string`
|
|
16053
16097
|
|
|
16054
|
-
Defined in: [lib/core.ts:
|
|
16098
|
+
Defined in: [lib/core.ts:1510](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1510)
|
|
16055
16099
|
|
|
16056
16100
|
***
|
|
16057
16101
|
|
|
@@ -16059,7 +16103,7 @@ Defined in: [lib/core.ts:1523](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16059
16103
|
|
|
16060
16104
|
> `optional` **path?**: `string`
|
|
16061
16105
|
|
|
16062
|
-
Defined in: [lib/core.ts:
|
|
16106
|
+
Defined in: [lib/core.ts:1511](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1511)
|
|
16063
16107
|
|
|
16064
16108
|
lib/core/interfaces/IConfig.md
|
|
16065
16109
|
---
|
|
@@ -16072,7 +16116,7 @@ lib/core/interfaces/IConfig.md
|
|
|
16072
16116
|
|
|
16073
16117
|
# Interface: IConfig
|
|
16074
16118
|
|
|
16075
|
-
Defined in: [lib/core.ts:
|
|
16119
|
+
Defined in: [lib/core.ts:1496](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1496)
|
|
16076
16120
|
|
|
16077
16121
|
Config 对象
|
|
16078
16122
|
|
|
@@ -16082,7 +16126,7 @@ Config 对象
|
|
|
16082
16126
|
|
|
16083
16127
|
> **desktop.icon.recycler**: `boolean`
|
|
16084
16128
|
|
|
16085
|
-
Defined in: [lib/core.ts:
|
|
16129
|
+
Defined in: [lib/core.ts:1501](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1501)
|
|
16086
16130
|
|
|
16087
16131
|
***
|
|
16088
16132
|
|
|
@@ -16090,7 +16134,7 @@ Defined in: [lib/core.ts:1514](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16090
16134
|
|
|
16091
16135
|
> **desktop.icon.storage**: `boolean`
|
|
16092
16136
|
|
|
16093
|
-
Defined in: [lib/core.ts:
|
|
16137
|
+
Defined in: [lib/core.ts:1500](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1500)
|
|
16094
16138
|
|
|
16095
16139
|
***
|
|
16096
16140
|
|
|
@@ -16098,7 +16142,7 @@ Defined in: [lib/core.ts:1513](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16098
16142
|
|
|
16099
16143
|
> **desktop.path**: `string` \| `null`
|
|
16100
16144
|
|
|
16101
|
-
Defined in: [lib/core.ts:
|
|
16145
|
+
Defined in: [lib/core.ts:1503](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1503)
|
|
16102
16146
|
|
|
16103
16147
|
***
|
|
16104
16148
|
|
|
@@ -16106,7 +16150,7 @@ Defined in: [lib/core.ts:1516](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16106
16150
|
|
|
16107
16151
|
> **desktop.wallpaper**: `string` \| `null`
|
|
16108
16152
|
|
|
16109
|
-
Defined in: [lib/core.ts:
|
|
16153
|
+
Defined in: [lib/core.ts:1502](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1502)
|
|
16110
16154
|
|
|
16111
16155
|
***
|
|
16112
16156
|
|
|
@@ -16114,7 +16158,7 @@ Defined in: [lib/core.ts:1515](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16114
16158
|
|
|
16115
16159
|
> **launcher.list**: [`IConfigLauncherItem`](IConfigLauncherItem.md)[]
|
|
16116
16160
|
|
|
16117
|
-
Defined in: [lib/core.ts:
|
|
16161
|
+
Defined in: [lib/core.ts:1504](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1504)
|
|
16118
16162
|
|
|
16119
16163
|
***
|
|
16120
16164
|
|
|
@@ -16122,7 +16166,7 @@ Defined in: [lib/core.ts:1517](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16122
16166
|
|
|
16123
16167
|
> **locale**: `string`
|
|
16124
16168
|
|
|
16125
|
-
Defined in: [lib/core.ts:
|
|
16169
|
+
Defined in: [lib/core.ts:1497](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1497)
|
|
16126
16170
|
|
|
16127
16171
|
***
|
|
16128
16172
|
|
|
@@ -16130,7 +16174,7 @@ Defined in: [lib/core.ts:1510](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16130
16174
|
|
|
16131
16175
|
> **task.pin**: `Record`\<`string`, \{ `icon`: `string`; `name`: `string`; \}\>
|
|
16132
16176
|
|
|
16133
|
-
Defined in: [lib/core.ts:
|
|
16177
|
+
Defined in: [lib/core.ts:1499](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1499)
|
|
16134
16178
|
|
|
16135
16179
|
***
|
|
16136
16180
|
|
|
@@ -16138,7 +16182,7 @@ Defined in: [lib/core.ts:1512](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16138
16182
|
|
|
16139
16183
|
> **task.position**: `"left"` \| `"top"` \| `"right"` \| `"bottom"`
|
|
16140
16184
|
|
|
16141
|
-
Defined in: [lib/core.ts:
|
|
16185
|
+
Defined in: [lib/core.ts:1498](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1498)
|
|
16142
16186
|
|
|
16143
16187
|
lib/core/interfaces/ICoreFetchAppOptions.md
|
|
16144
16188
|
---
|
|
@@ -16151,7 +16195,7 @@ lib/core/interfaces/ICoreFetchAppOptions.md
|
|
|
16151
16195
|
|
|
16152
16196
|
# Interface: ICoreFetchAppOptions
|
|
16153
16197
|
|
|
16154
|
-
Defined in: [lib/core.ts:
|
|
16198
|
+
Defined in: [lib/core.ts:1530](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1530)
|
|
16155
16199
|
|
|
16156
16200
|
现场下载 app 的参数
|
|
16157
16201
|
|
|
@@ -16161,7 +16205,7 @@ Defined in: [lib/core.ts:1543](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16161
16205
|
|
|
16162
16206
|
> `optional` **after?**: `string`
|
|
16163
16207
|
|
|
16164
|
-
Defined in: [lib/core.ts:
|
|
16208
|
+
Defined in: [lib/core.ts:1540](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1540)
|
|
16165
16209
|
|
|
16166
16210
|
网址后面附带的前缀,如 ?123
|
|
16167
16211
|
|
|
@@ -16171,7 +16215,7 @@ Defined in: [lib/core.ts:1553](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16171
16215
|
|
|
16172
16216
|
> `optional` **notify?**: `number` \| \{ `id?`: `number`; `loaded?`: `number`; `total?`: `number`; \}
|
|
16173
16217
|
|
|
16174
|
-
Defined in: [lib/core.ts:
|
|
16218
|
+
Defined in: [lib/core.ts:1531](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1531)
|
|
16175
16219
|
|
|
16176
16220
|
#### Union Members
|
|
16177
16221
|
|
|
@@ -16207,7 +16251,7 @@ notify id
|
|
|
16207
16251
|
|
|
16208
16252
|
> `optional` **progress?**: (`loaded`, `total`, `per`) => `void` \| `Promise`\<`void`\>
|
|
16209
16253
|
|
|
16210
|
-
Defined in: [lib/core.ts:
|
|
16254
|
+
Defined in: [lib/core.ts:1547](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1547)
|
|
16211
16255
|
|
|
16212
16256
|
下载进度
|
|
16213
16257
|
|
|
@@ -16246,7 +16290,7 @@ lib/core/interfaces/ITumsPlayer.md
|
|
|
16246
16290
|
|
|
16247
16291
|
# Interface: ITumsPlayer
|
|
16248
16292
|
|
|
16249
|
-
Defined in: [lib/core.ts:
|
|
16293
|
+
Defined in: [lib/core.ts:1696](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1696)
|
|
16250
16294
|
|
|
16251
16295
|
tums-player 模块对象
|
|
16252
16296
|
|
|
@@ -16256,7 +16300,7 @@ tums-player 模块对象
|
|
|
16256
16300
|
|
|
16257
16301
|
> **default**: `any`
|
|
16258
16302
|
|
|
16259
|
-
Defined in: [lib/core.ts:
|
|
16303
|
+
Defined in: [lib/core.ts:1697](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1697)
|
|
16260
16304
|
|
|
16261
16305
|
***
|
|
16262
16306
|
|
|
@@ -16264,7 +16308,7 @@ Defined in: [lib/core.ts:1710](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16264
16308
|
|
|
16265
16309
|
> **startTalk**: (`opt`) => `Promise`\<`void`\>
|
|
16266
16310
|
|
|
16267
|
-
Defined in: [lib/core.ts:
|
|
16311
|
+
Defined in: [lib/core.ts:1699](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1699)
|
|
16268
16312
|
|
|
16269
16313
|
开始对讲
|
|
16270
16314
|
|
|
@@ -16300,7 +16344,7 @@ half_duplex-半双工模式,vad-VAD 人声检测模式,aec-AEC 全双工模式
|
|
|
16300
16344
|
|
|
16301
16345
|
> **stopTalk**: () => `void`
|
|
16302
16346
|
|
|
16303
|
-
Defined in: [lib/core.ts:
|
|
16347
|
+
Defined in: [lib/core.ts:1707](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1707)
|
|
16304
16348
|
|
|
16305
16349
|
停止对讲
|
|
16306
16350
|
|
|
@@ -16319,7 +16363,7 @@ lib/core/interfaces/IVApp.md
|
|
|
16319
16363
|
|
|
16320
16364
|
# Interface: IVApp
|
|
16321
16365
|
|
|
16322
|
-
Defined in: [lib/core.ts:
|
|
16366
|
+
Defined in: [lib/core.ts:1676](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1676)
|
|
16323
16367
|
|
|
16324
16368
|
Vue 应用
|
|
16325
16369
|
|
|
@@ -16329,7 +16373,7 @@ Vue 应用
|
|
|
16329
16373
|
|
|
16330
16374
|
> **\_container**: `HTMLElement`
|
|
16331
16375
|
|
|
16332
|
-
Defined in: [lib/core.ts:
|
|
16376
|
+
Defined in: [lib/core.ts:1688](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1688)
|
|
16333
16377
|
|
|
16334
16378
|
***
|
|
16335
16379
|
|
|
@@ -16337,7 +16381,7 @@ Defined in: [lib/core.ts:1701](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16337
16381
|
|
|
16338
16382
|
> **config**: [`IVueConfig`](IVueConfig.md)
|
|
16339
16383
|
|
|
16340
|
-
Defined in: [lib/core.ts:
|
|
16384
|
+
Defined in: [lib/core.ts:1679](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1679)
|
|
16341
16385
|
|
|
16342
16386
|
***
|
|
16343
16387
|
|
|
@@ -16345,7 +16389,7 @@ Defined in: [lib/core.ts:1692](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16345
16389
|
|
|
16346
16390
|
> **version**: `string`
|
|
16347
16391
|
|
|
16348
|
-
Defined in: [lib/core.ts:
|
|
16392
|
+
Defined in: [lib/core.ts:1686](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1686)
|
|
16349
16393
|
|
|
16350
16394
|
## Methods
|
|
16351
16395
|
|
|
@@ -16355,7 +16399,7 @@ Defined in: [lib/core.ts:1699](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16355
16399
|
|
|
16356
16400
|
> **component**(`name`): `any`
|
|
16357
16401
|
|
|
16358
|
-
Defined in: [lib/core.ts:
|
|
16402
|
+
Defined in: [lib/core.ts:1677](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1677)
|
|
16359
16403
|
|
|
16360
16404
|
##### Parameters
|
|
16361
16405
|
|
|
@@ -16371,7 +16415,7 @@ Defined in: [lib/core.ts:1690](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16371
16415
|
|
|
16372
16416
|
> **component**(`name`, `config`): `this`
|
|
16373
16417
|
|
|
16374
|
-
Defined in: [lib/core.ts:
|
|
16418
|
+
Defined in: [lib/core.ts:1678](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1678)
|
|
16375
16419
|
|
|
16376
16420
|
##### Parameters
|
|
16377
16421
|
|
|
@@ -16395,7 +16439,7 @@ Defined in: [lib/core.ts:1691](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16395
16439
|
|
|
16396
16440
|
> **directive**(`name`): `any`
|
|
16397
16441
|
|
|
16398
|
-
Defined in: [lib/core.ts:
|
|
16442
|
+
Defined in: [lib/core.ts:1680](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1680)
|
|
16399
16443
|
|
|
16400
16444
|
##### Parameters
|
|
16401
16445
|
|
|
@@ -16411,7 +16455,7 @@ Defined in: [lib/core.ts:1693](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16411
16455
|
|
|
16412
16456
|
> **directive**(`name`, `config`): `this`
|
|
16413
16457
|
|
|
16414
|
-
Defined in: [lib/core.ts:
|
|
16458
|
+
Defined in: [lib/core.ts:1681](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1681)
|
|
16415
16459
|
|
|
16416
16460
|
##### Parameters
|
|
16417
16461
|
|
|
@@ -16433,7 +16477,7 @@ Defined in: [lib/core.ts:1694](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16433
16477
|
|
|
16434
16478
|
> **mixin**(`mixin`): `this`
|
|
16435
16479
|
|
|
16436
|
-
Defined in: [lib/core.ts:
|
|
16480
|
+
Defined in: [lib/core.ts:1682](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1682)
|
|
16437
16481
|
|
|
16438
16482
|
#### Parameters
|
|
16439
16483
|
|
|
@@ -16451,7 +16495,7 @@ Defined in: [lib/core.ts:1695](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16451
16495
|
|
|
16452
16496
|
> **mount**(`rootContainer`): [`IVue`](IVue.md)
|
|
16453
16497
|
|
|
16454
|
-
Defined in: [lib/core.ts:
|
|
16498
|
+
Defined in: [lib/core.ts:1683](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1683)
|
|
16455
16499
|
|
|
16456
16500
|
#### Parameters
|
|
16457
16501
|
|
|
@@ -16469,7 +16513,7 @@ Defined in: [lib/core.ts:1696](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16469
16513
|
|
|
16470
16514
|
> **provide**\<`T`\>(`key`, `value`): `this`
|
|
16471
16515
|
|
|
16472
|
-
Defined in: [lib/core.ts:
|
|
16516
|
+
Defined in: [lib/core.ts:1684](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1684)
|
|
16473
16517
|
|
|
16474
16518
|
#### Type Parameters
|
|
16475
16519
|
|
|
@@ -16497,7 +16541,7 @@ Defined in: [lib/core.ts:1697](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16497
16541
|
|
|
16498
16542
|
> **unmount**(): `void`
|
|
16499
16543
|
|
|
16500
|
-
Defined in: [lib/core.ts:
|
|
16544
|
+
Defined in: [lib/core.ts:1685](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1685)
|
|
16501
16545
|
|
|
16502
16546
|
#### Returns
|
|
16503
16547
|
|
|
@@ -16514,7 +16558,7 @@ lib/core/interfaces/IVNode.md
|
|
|
16514
16558
|
|
|
16515
16559
|
# Interface: IVNode
|
|
16516
16560
|
|
|
16517
|
-
Defined in: [lib/core.ts:
|
|
16561
|
+
Defined in: [lib/core.ts:1639](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1639)
|
|
16518
16562
|
|
|
16519
16563
|
Vue 节点
|
|
16520
16564
|
|
|
@@ -16528,7 +16572,7 @@ Vue 节点
|
|
|
16528
16572
|
|
|
16529
16573
|
> **children**: `object` & `IVNode`[]
|
|
16530
16574
|
|
|
16531
|
-
Defined in: [lib/core.ts:
|
|
16575
|
+
Defined in: [lib/core.ts:1640](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1640)
|
|
16532
16576
|
|
|
16533
16577
|
#### Type Declaration
|
|
16534
16578
|
|
|
@@ -16542,7 +16586,7 @@ Defined in: [lib/core.ts:1653](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16542
16586
|
|
|
16543
16587
|
> **props**: `Record`\<`string`, `any`\>
|
|
16544
16588
|
|
|
16545
|
-
Defined in: [lib/core.ts:
|
|
16589
|
+
Defined in: [lib/core.ts:1644](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1644)
|
|
16546
16590
|
|
|
16547
16591
|
***
|
|
16548
16592
|
|
|
@@ -16550,7 +16594,7 @@ Defined in: [lib/core.ts:1657](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16550
16594
|
|
|
16551
16595
|
> **type**: `symbol` \| `Record`\<`string`, `any`\>
|
|
16552
16596
|
|
|
16553
|
-
Defined in: [lib/core.ts:
|
|
16597
|
+
Defined in: [lib/core.ts:1645](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1645)
|
|
16554
16598
|
|
|
16555
16599
|
lib/core/interfaces/IVueConfig.md
|
|
16556
16600
|
---
|
|
@@ -16563,7 +16607,7 @@ lib/core/interfaces/IVueConfig.md
|
|
|
16563
16607
|
|
|
16564
16608
|
# Interface: IVueConfig
|
|
16565
16609
|
|
|
16566
|
-
Defined in: [lib/core.ts:
|
|
16610
|
+
Defined in: [lib/core.ts:1666](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1666)
|
|
16567
16611
|
|
|
16568
16612
|
Vue 配置
|
|
16569
16613
|
|
|
@@ -16573,7 +16617,7 @@ Vue 配置
|
|
|
16573
16617
|
|
|
16574
16618
|
> **globalProperties**: `Record`\<`string`, `any`\>
|
|
16575
16619
|
|
|
16576
|
-
Defined in: [lib/core.ts:
|
|
16620
|
+
Defined in: [lib/core.ts:1668](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1668)
|
|
16577
16621
|
|
|
16578
16622
|
***
|
|
16579
16623
|
|
|
@@ -16581,7 +16625,7 @@ Defined in: [lib/core.ts:1681](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16581
16625
|
|
|
16582
16626
|
> **optionMergeStrategies**: `Record`\<`string`, [`IVueOptionMergeFunction`](../type-aliases/IVueOptionMergeFunction.md)\>
|
|
16583
16627
|
|
|
16584
|
-
Defined in: [lib/core.ts:
|
|
16628
|
+
Defined in: [lib/core.ts:1670](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1670)
|
|
16585
16629
|
|
|
16586
16630
|
***
|
|
16587
16631
|
|
|
@@ -16589,7 +16633,7 @@ Defined in: [lib/core.ts:1683](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16589
16633
|
|
|
16590
16634
|
> **performance**: `boolean`
|
|
16591
16635
|
|
|
16592
|
-
Defined in: [lib/core.ts:
|
|
16636
|
+
Defined in: [lib/core.ts:1671](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1671)
|
|
16593
16637
|
|
|
16594
16638
|
## Methods
|
|
16595
16639
|
|
|
@@ -16597,7 +16641,7 @@ Defined in: [lib/core.ts:1684](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16597
16641
|
|
|
16598
16642
|
> `optional` **errorHandler**(`err`, `instance`, `info`): `void`
|
|
16599
16643
|
|
|
16600
|
-
Defined in: [lib/core.ts:
|
|
16644
|
+
Defined in: [lib/core.ts:1667](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1667)
|
|
16601
16645
|
|
|
16602
16646
|
#### Parameters
|
|
16603
16647
|
|
|
@@ -16623,7 +16667,7 @@ Defined in: [lib/core.ts:1680](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16623
16667
|
|
|
16624
16668
|
> **isCustomElement**(`tag`): `boolean`
|
|
16625
16669
|
|
|
16626
|
-
Defined in: [lib/core.ts:
|
|
16670
|
+
Defined in: [lib/core.ts:1669](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1669)
|
|
16627
16671
|
|
|
16628
16672
|
#### Parameters
|
|
16629
16673
|
|
|
@@ -16641,7 +16685,7 @@ Defined in: [lib/core.ts:1682](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16641
16685
|
|
|
16642
16686
|
> `optional` **warnHandler**(`msg`, `instance`, `trace`): `void`
|
|
16643
16687
|
|
|
16644
|
-
Defined in: [lib/core.ts:
|
|
16688
|
+
Defined in: [lib/core.ts:1672](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1672)
|
|
16645
16689
|
|
|
16646
16690
|
#### Parameters
|
|
16647
16691
|
|
|
@@ -16672,7 +16716,7 @@ lib/core/interfaces/IVue.md
|
|
|
16672
16716
|
|
|
16673
16717
|
# Interface: IVue
|
|
16674
16718
|
|
|
16675
|
-
Defined in: [lib/core.ts:
|
|
16719
|
+
Defined in: [lib/core.ts:1614](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1614)
|
|
16676
16720
|
|
|
16677
16721
|
Vue 实例
|
|
16678
16722
|
|
|
@@ -16686,7 +16730,7 @@ Vue 实例
|
|
|
16686
16730
|
|
|
16687
16731
|
> **$attrs**: `Record`\<`string`, `string`\>
|
|
16688
16732
|
|
|
16689
|
-
Defined in: [lib/core.ts:
|
|
16733
|
+
Defined in: [lib/core.ts:1615](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1615)
|
|
16690
16734
|
|
|
16691
16735
|
***
|
|
16692
16736
|
|
|
@@ -16694,7 +16738,7 @@ Defined in: [lib/core.ts:1628](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16694
16738
|
|
|
16695
16739
|
> **$data**: `Record`\<`string`, `any`\>
|
|
16696
16740
|
|
|
16697
|
-
Defined in: [lib/core.ts:
|
|
16741
|
+
Defined in: [lib/core.ts:1616](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1616)
|
|
16698
16742
|
|
|
16699
16743
|
***
|
|
16700
16744
|
|
|
@@ -16702,7 +16746,7 @@ Defined in: [lib/core.ts:1629](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16702
16746
|
|
|
16703
16747
|
> **$el**: `HTMLElement`
|
|
16704
16748
|
|
|
16705
|
-
Defined in: [lib/core.ts:
|
|
16749
|
+
Defined in: [lib/core.ts:1617](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1617)
|
|
16706
16750
|
|
|
16707
16751
|
***
|
|
16708
16752
|
|
|
@@ -16710,7 +16754,7 @@ Defined in: [lib/core.ts:1630](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16710
16754
|
|
|
16711
16755
|
> **$options**: `Record`\<`string`, `any`\>
|
|
16712
16756
|
|
|
16713
|
-
Defined in: [lib/core.ts:
|
|
16757
|
+
Defined in: [lib/core.ts:1621](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1621)
|
|
16714
16758
|
|
|
16715
16759
|
***
|
|
16716
16760
|
|
|
@@ -16718,7 +16762,7 @@ Defined in: [lib/core.ts:1634](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16718
16762
|
|
|
16719
16763
|
> **$parent**: `IVue` \| `null`
|
|
16720
16764
|
|
|
16721
|
-
Defined in: [lib/core.ts:
|
|
16765
|
+
Defined in: [lib/core.ts:1622](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1622)
|
|
16722
16766
|
|
|
16723
16767
|
***
|
|
16724
16768
|
|
|
@@ -16726,7 +16770,7 @@ Defined in: [lib/core.ts:1635](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16726
16770
|
|
|
16727
16771
|
> **$props**: `Record`\<`string`, `any`\>
|
|
16728
16772
|
|
|
16729
|
-
Defined in: [lib/core.ts:
|
|
16773
|
+
Defined in: [lib/core.ts:1623](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1623)
|
|
16730
16774
|
|
|
16731
16775
|
***
|
|
16732
16776
|
|
|
@@ -16734,7 +16778,7 @@ Defined in: [lib/core.ts:1636](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16734
16778
|
|
|
16735
16779
|
> **$refs**: `Record`\<`string`, `HTMLElement` & `IVue`\>
|
|
16736
16780
|
|
|
16737
|
-
Defined in: [lib/core.ts:
|
|
16781
|
+
Defined in: [lib/core.ts:1624](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1624)
|
|
16738
16782
|
|
|
16739
16783
|
***
|
|
16740
16784
|
|
|
@@ -16742,7 +16786,7 @@ Defined in: [lib/core.ts:1637](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16742
16786
|
|
|
16743
16787
|
> **$root**: `IVue`
|
|
16744
16788
|
|
|
16745
|
-
Defined in: [lib/core.ts:
|
|
16789
|
+
Defined in: [lib/core.ts:1625](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1625)
|
|
16746
16790
|
|
|
16747
16791
|
***
|
|
16748
16792
|
|
|
@@ -16750,7 +16794,7 @@ Defined in: [lib/core.ts:1638](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16750
16794
|
|
|
16751
16795
|
> **$slots**: `object`
|
|
16752
16796
|
|
|
16753
|
-
Defined in: [lib/core.ts:
|
|
16797
|
+
Defined in: [lib/core.ts:1626](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1626)
|
|
16754
16798
|
|
|
16755
16799
|
#### Index Signature
|
|
16756
16800
|
|
|
@@ -16766,7 +16810,7 @@ Defined in: [lib/core.ts:1639](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16766
16810
|
|
|
16767
16811
|
> **$watch**: (`o`, `cb`, `opt?`) => `void`
|
|
16768
16812
|
|
|
16769
|
-
Defined in: [lib/core.ts:
|
|
16813
|
+
Defined in: [lib/core.ts:1630](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1630)
|
|
16770
16814
|
|
|
16771
16815
|
#### Parameters
|
|
16772
16816
|
|
|
@@ -16798,7 +16842,7 @@ Defined in: [lib/core.ts:1643](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16798
16842
|
|
|
16799
16843
|
> **$emit**(`name`, ...`arg`): `void`
|
|
16800
16844
|
|
|
16801
|
-
Defined in: [lib/core.ts:
|
|
16845
|
+
Defined in: [lib/core.ts:1618](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1618)
|
|
16802
16846
|
|
|
16803
16847
|
#### Parameters
|
|
16804
16848
|
|
|
@@ -16820,7 +16864,7 @@ Defined in: [lib/core.ts:1631](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16820
16864
|
|
|
16821
16865
|
> **$forceUpdate**(): `void`
|
|
16822
16866
|
|
|
16823
|
-
Defined in: [lib/core.ts:
|
|
16867
|
+
Defined in: [lib/core.ts:1619](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1619)
|
|
16824
16868
|
|
|
16825
16869
|
#### Returns
|
|
16826
16870
|
|
|
@@ -16832,7 +16876,7 @@ Defined in: [lib/core.ts:1632](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16832
16876
|
|
|
16833
16877
|
> **$nextTick**(): `Promise`\<`void`\>
|
|
16834
16878
|
|
|
16835
|
-
Defined in: [lib/core.ts:
|
|
16879
|
+
Defined in: [lib/core.ts:1620](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1620)
|
|
16836
16880
|
|
|
16837
16881
|
#### Returns
|
|
16838
16882
|
|
|
@@ -16849,7 +16893,7 @@ lib/core/interfaces/IVueObject.md
|
|
|
16849
16893
|
|
|
16850
16894
|
# Interface: IVueObject
|
|
16851
16895
|
|
|
16852
|
-
Defined in: [lib/core.ts:
|
|
16896
|
+
Defined in: [lib/core.ts:1650](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1650)
|
|
16853
16897
|
|
|
16854
16898
|
## Methods
|
|
16855
16899
|
|
|
@@ -16857,7 +16901,7 @@ Defined in: [lib/core.ts:1663](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16857
16901
|
|
|
16858
16902
|
> **createApp**(`opt`): [`IVApp`](IVApp.md)
|
|
16859
16903
|
|
|
16860
|
-
Defined in: [lib/core.ts:
|
|
16904
|
+
Defined in: [lib/core.ts:1651](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1651)
|
|
16861
16905
|
|
|
16862
16906
|
#### Parameters
|
|
16863
16907
|
|
|
@@ -16875,7 +16919,7 @@ Defined in: [lib/core.ts:1664](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16875
16919
|
|
|
16876
16920
|
> **h**(`tag`, `props?`, `list?`): `any`
|
|
16877
16921
|
|
|
16878
|
-
Defined in: [lib/core.ts:
|
|
16922
|
+
Defined in: [lib/core.ts:1659](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1659)
|
|
16879
16923
|
|
|
16880
16924
|
#### Parameters
|
|
16881
16925
|
|
|
@@ -16901,7 +16945,7 @@ Defined in: [lib/core.ts:1672](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16901
16945
|
|
|
16902
16946
|
> **reactive**\<`T`\>(`obj`): `T`
|
|
16903
16947
|
|
|
16904
|
-
Defined in: [lib/core.ts:
|
|
16948
|
+
Defined in: [lib/core.ts:1653](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1653)
|
|
16905
16949
|
|
|
16906
16950
|
#### Type Parameters
|
|
16907
16951
|
|
|
@@ -16925,7 +16969,7 @@ Defined in: [lib/core.ts:1666](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16925
16969
|
|
|
16926
16970
|
> **ref**\<`T`\>(`obj`): `object`
|
|
16927
16971
|
|
|
16928
|
-
Defined in: [lib/core.ts:
|
|
16972
|
+
Defined in: [lib/core.ts:1652](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1652)
|
|
16929
16973
|
|
|
16930
16974
|
#### Type Parameters
|
|
16931
16975
|
|
|
@@ -16953,7 +16997,7 @@ Defined in: [lib/core.ts:1665](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16953
16997
|
|
|
16954
16998
|
> **watch**(`v`, `cb`, `opt`): `void`
|
|
16955
16999
|
|
|
16956
|
-
Defined in: [lib/core.ts:
|
|
17000
|
+
Defined in: [lib/core.ts:1654](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1654)
|
|
16957
17001
|
|
|
16958
17002
|
#### Parameters
|
|
16959
17003
|
|
|
@@ -16986,7 +17030,7 @@ lib/core/type-aliases/IVueOptionMergeFunction.md
|
|
|
16986
17030
|
|
|
16987
17031
|
> **IVueOptionMergeFunction** = (`to`, `from`, `instance`) => `any`
|
|
16988
17032
|
|
|
16989
|
-
Defined in: [lib/core.ts:
|
|
17033
|
+
Defined in: [lib/core.ts:1663](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1663)
|
|
16990
17034
|
|
|
16991
17035
|
Vue 选项合并函数
|
|
16992
17036
|
|
|
@@ -17021,7 +17065,7 @@ lib/core/type-aliases/TCurrent.md
|
|
|
17021
17065
|
|
|
17022
17066
|
> **TCurrent** = `string` \| [`AbstractForm`](../../form/classes/AbstractForm.md) \| [`AbstractPanel`](../../form/classes/AbstractPanel.md) \| [`AbstractControl`](../../control/classes/AbstractControl.md) \| [`AbstractApp`](../classes/AbstractApp.md)
|
|
17023
17067
|
|
|
17024
|
-
Defined in: [lib/core.ts:
|
|
17068
|
+
Defined in: [lib/core.ts:1691](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1691)
|
|
17025
17069
|
|
|
17026
17070
|
lib/core/type-aliases/TGlobalEvent.md
|
|
17027
17071
|
---
|
|
@@ -17036,7 +17080,7 @@ lib/core/type-aliases/TGlobalEvent.md
|
|
|
17036
17080
|
|
|
17037
17081
|
> **TGlobalEvent** = `"error"` \| `"screenResize"` \| `"configChanged"` \| `"formCreated"` \| `"formRemoved"` \| `"formTitleChanged"` \| `"formIconChanged"` \| `"formStateMinChanged"` \| `"formStateMaxChanged"` \| `"formShowChanged"` \| `"formFocused"` \| `"formBlurred"` \| `"formFlash"` \| `"formShowInSystemTaskChange"` \| `"formHashChange"` \| `"taskStarted"` \| `"taskEnded"` \| `"launcherFolderNameChanged"` \| `"hashChanged"` \| `"keydown"` \| `"keyup"`
|
|
17038
17082
|
|
|
17039
|
-
Defined in: [lib/core.ts:
|
|
17083
|
+
Defined in: [lib/core.ts:1527](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1527)
|
|
17040
17084
|
|
|
17041
17085
|
全局事件类型
|
|
17042
17086
|
|
|
@@ -22566,7 +22610,7 @@ lib/form/functions/captcha.md
|
|
|
22566
22610
|
|
|
22567
22611
|
> **captcha**(`current`, `opt`): `Promise`\<`false` \| [`ICaptchaResultEvent`](../../control/interfaces/ICaptchaResultEvent.md)\>
|
|
22568
22612
|
|
|
22569
|
-
Defined in: [lib/form.ts:
|
|
22613
|
+
Defined in: [lib/form.ts:4392](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4392)
|
|
22570
22614
|
|
|
22571
22615
|
显示一个验证码窗口
|
|
22572
22616
|
|
|
@@ -22682,7 +22726,7 @@ lib/form/functions/confirm.md
|
|
|
22682
22726
|
|
|
22683
22727
|
> **confirm**(`current`, `opt`): `Promise`\<`number` \| `boolean`\>
|
|
22684
22728
|
|
|
22685
|
-
Defined in: [lib/form.ts:
|
|
22729
|
+
Defined in: [lib/form.ts:4463](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4463)
|
|
22686
22730
|
|
|
22687
22731
|
显示一个 confirm
|
|
22688
22732
|
|
|
@@ -22717,7 +22761,7 @@ lib/form/functions/create.md
|
|
|
22717
22761
|
|
|
22718
22762
|
> **create**\<`T`\>(`current`, `cls`, `data?`, `opt?`): `Promise`\<`T`\>
|
|
22719
22763
|
|
|
22720
|
-
Defined in: [lib/form.ts:
|
|
22764
|
+
Defined in: [lib/form.ts:3811](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3811)
|
|
22721
22765
|
|
|
22722
22766
|
创建一个窗体
|
|
22723
22767
|
|
|
@@ -22782,7 +22826,7 @@ lib/form/functions/createPanel.md
|
|
|
22782
22826
|
|
|
22783
22827
|
> **createPanel**\<`T`\>(`rootPanel`, `cls`, `opt?`): `Promise`\<\{ `id`: `string`; `vapp`: [`IVApp`](../../core/interfaces/IVApp.md); `vroot`: `T`; \}\>
|
|
22784
22828
|
|
|
22785
|
-
Defined in: [lib/form.ts:
|
|
22829
|
+
Defined in: [lib/form.ts:3444](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3444)
|
|
22786
22830
|
|
|
22787
22831
|
创建 panel 对象,一般情况下无需使用
|
|
22788
22832
|
|
|
@@ -22845,7 +22889,7 @@ lib/form/functions/dialog.md
|
|
|
22845
22889
|
|
|
22846
22890
|
> **dialog**(`current`, `opt`): `Promise`\<`string`\>
|
|
22847
22891
|
|
|
22848
|
-
Defined in: [lib/form.ts:
|
|
22892
|
+
Defined in: [lib/form.ts:4296](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4296)
|
|
22849
22893
|
|
|
22850
22894
|
显示一个 dialog
|
|
22851
22895
|
|
|
@@ -22880,7 +22924,7 @@ lib/form/functions/doFocusAndPopEvent.md
|
|
|
22880
22924
|
|
|
22881
22925
|
> **doFocusAndPopEvent**(`e`): `Promise`\<`void`\>
|
|
22882
22926
|
|
|
22883
|
-
Defined in: [lib/form.ts:
|
|
22927
|
+
Defined in: [lib/form.ts:3245](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3245)
|
|
22884
22928
|
|
|
22885
22929
|
点下 pointerdown 屏幕任意一位置时根据点击处处理隐藏 pop 和焦点丢失事件,鼠标和 touch 只会响应一个
|
|
22886
22930
|
|
|
@@ -22909,7 +22953,7 @@ lib/form/functions/flash.md
|
|
|
22909
22953
|
|
|
22910
22954
|
> **flash**(`current`, `formId`): `Promise`\<`void`\>
|
|
22911
22955
|
|
|
22912
|
-
Defined in: [lib/form.ts:
|
|
22956
|
+
Defined in: [lib/form.ts:4560](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4560)
|
|
22913
22957
|
|
|
22914
22958
|
让窗体闪烁
|
|
22915
22959
|
|
|
@@ -23277,7 +23321,7 @@ lib/form/functions/hideLauncher.md
|
|
|
23277
23321
|
|
|
23278
23322
|
> **hideLauncher**(): `void`
|
|
23279
23323
|
|
|
23280
|
-
Defined in: [lib/form.ts:
|
|
23324
|
+
Defined in: [lib/form.ts:4597](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4597)
|
|
23281
23325
|
|
|
23282
23326
|
隐藏 launcher 界面
|
|
23283
23327
|
|
|
@@ -23327,7 +23371,7 @@ lib/form/functions/hidePop.md
|
|
|
23327
23371
|
|
|
23328
23372
|
> **hidePop**(`pop?`): `void`
|
|
23329
23373
|
|
|
23330
|
-
Defined in: [lib/form.ts:
|
|
23374
|
+
Defined in: [lib/form.ts:3144](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3144)
|
|
23331
23375
|
|
|
23332
23376
|
隐藏正在显示中的所有 pop,或指定 pop/el
|
|
23333
23377
|
|
|
@@ -23375,7 +23419,7 @@ lib/form/functions/init.md
|
|
|
23375
23419
|
|
|
23376
23420
|
> **init**(): `void`
|
|
23377
23421
|
|
|
23378
|
-
Defined in: [lib/form.ts:
|
|
23422
|
+
Defined in: [lib/form.ts:4611](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4611)
|
|
23379
23423
|
|
|
23380
23424
|
## Returns
|
|
23381
23425
|
|
|
@@ -23423,7 +23467,7 @@ lib/form/functions/isJustPop.md
|
|
|
23423
23467
|
|
|
23424
23468
|
> **isJustPop**(`el`): `boolean`
|
|
23425
23469
|
|
|
23426
|
-
Defined in: [lib/form.ts:
|
|
23470
|
+
Defined in: [lib/form.ts:3226](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3226)
|
|
23427
23471
|
|
|
23428
23472
|
检测 pop 是不是刚刚显示的
|
|
23429
23473
|
|
|
@@ -23638,7 +23682,7 @@ lib/form/functions/prompt.md
|
|
|
23638
23682
|
|
|
23639
23683
|
> **prompt**(`current`, `opt`): `Promise`\<`string`\>
|
|
23640
23684
|
|
|
23641
|
-
Defined in: [lib/form.ts:
|
|
23685
|
+
Defined in: [lib/form.ts:4500](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4500)
|
|
23642
23686
|
|
|
23643
23687
|
显示一个输入框 dialog
|
|
23644
23688
|
|
|
@@ -23764,7 +23808,7 @@ lib/form/functions/remove.md
|
|
|
23764
23808
|
|
|
23765
23809
|
> **remove**(`formId`): `boolean`
|
|
23766
23810
|
|
|
23767
|
-
Defined in: [lib/form.ts:
|
|
23811
|
+
Defined in: [lib/form.ts:3314](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3314)
|
|
23768
23812
|
|
|
23769
23813
|
移除一个 form(关闭窗口)
|
|
23770
23814
|
|
|
@@ -23793,7 +23837,7 @@ lib/form/functions/removePanel.md
|
|
|
23793
23837
|
|
|
23794
23838
|
> **removePanel**(`id`, `vapp`, `el`): `boolean`
|
|
23795
23839
|
|
|
23796
|
-
Defined in: [lib/form.ts:
|
|
23840
|
+
Defined in: [lib/form.ts:3387](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3387)
|
|
23797
23841
|
|
|
23798
23842
|
移除 panel 挂载,通常发生在 panel 控件的 onBeforeUnmount 中
|
|
23799
23843
|
|
|
@@ -23966,7 +24010,7 @@ lib/form/functions/showLauncher.md
|
|
|
23966
24010
|
|
|
23967
24011
|
> **showLauncher**(): `void`
|
|
23968
24012
|
|
|
23969
|
-
Defined in: [lib/form.ts:
|
|
24013
|
+
Defined in: [lib/form.ts:4587](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4587)
|
|
23970
24014
|
|
|
23971
24015
|
显示 launcher 界面
|
|
23972
24016
|
|
|
@@ -23987,7 +24031,7 @@ lib/form/functions/showPop.md
|
|
|
23987
24031
|
|
|
23988
24032
|
> **showPop**(`el`, `pop`, `direction`, `opt?`): `void`
|
|
23989
24033
|
|
|
23990
|
-
Defined in: [lib/form.ts:
|
|
24034
|
+
Defined in: [lib/form.ts:3030](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3030)
|
|
23991
24035
|
|
|
23992
24036
|
获取 pop 显示出来的坐标并报系统全局记录
|
|
23993
24037
|
|
|
@@ -24231,7 +24275,7 @@ lib/form/interfaces/IAbstractPanelQsChangeShowEvent.md
|
|
|
24231
24275
|
|
|
24232
24276
|
# Interface: IAbstractPanelQsChangeShowEvent
|
|
24233
24277
|
|
|
24234
|
-
Defined in: [lib/form.ts:
|
|
24278
|
+
Defined in: [lib/form.ts:4637](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4637)
|
|
24235
24279
|
|
|
24236
24280
|
AbstractPanel qsChange 显示事件
|
|
24237
24281
|
|
|
@@ -24241,7 +24285,7 @@ AbstractPanel qsChange 显示事件
|
|
|
24241
24285
|
|
|
24242
24286
|
> **detail**: `object`
|
|
24243
24287
|
|
|
24244
|
-
Defined in: [lib/form.ts:
|
|
24288
|
+
Defined in: [lib/form.ts:4638](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4638)
|
|
24245
24289
|
|
|
24246
24290
|
#### action
|
|
24247
24291
|
|
|
@@ -24282,7 +24326,7 @@ lib/form/interfaces/IAbstractPanelShowEvent.md
|
|
|
24282
24326
|
|
|
24283
24327
|
# Interface: IAbstractPanelShowEvent
|
|
24284
24328
|
|
|
24285
|
-
Defined in: [lib/form.ts:
|
|
24329
|
+
Defined in: [lib/form.ts:4622](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4622)
|
|
24286
24330
|
|
|
24287
24331
|
AbstractPanel 显示事件
|
|
24288
24332
|
|
|
@@ -24292,7 +24336,7 @@ AbstractPanel 显示事件
|
|
|
24292
24336
|
|
|
24293
24337
|
> **detail**: `object`
|
|
24294
24338
|
|
|
24295
|
-
Defined in: [lib/form.ts:
|
|
24339
|
+
Defined in: [lib/form.ts:4623](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4623)
|
|
24296
24340
|
|
|
24297
24341
|
#### action
|
|
24298
24342
|
|
|
@@ -24333,7 +24377,7 @@ lib/form/interfaces/IFormCaptchaOptions.md
|
|
|
24333
24377
|
|
|
24334
24378
|
# Interface: IFormCaptchaOptions
|
|
24335
24379
|
|
|
24336
|
-
Defined in: [lib/form.ts:
|
|
24380
|
+
Defined in: [lib/form.ts:4767](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4767)
|
|
24337
24381
|
|
|
24338
24382
|
显示验证码选项
|
|
24339
24383
|
|
|
@@ -24343,7 +24387,7 @@ Defined in: [lib/form.ts:4731](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24343
24387
|
|
|
24344
24388
|
> **akey**: `string`
|
|
24345
24389
|
|
|
24346
|
-
Defined in: [lib/form.ts:
|
|
24390
|
+
Defined in: [lib/form.ts:4771](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4771)
|
|
24347
24391
|
|
|
24348
24392
|
验证码 key
|
|
24349
24393
|
|
|
@@ -24353,7 +24397,7 @@ Defined in: [lib/form.ts:4735](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24353
24397
|
|
|
24354
24398
|
> **factory**: `"tc"` \| `"cf"`
|
|
24355
24399
|
|
|
24356
|
-
Defined in: [lib/form.ts:
|
|
24400
|
+
Defined in: [lib/form.ts:4769](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4769)
|
|
24357
24401
|
|
|
24358
24402
|
验证码服务商
|
|
24359
24403
|
|
|
@@ -24368,7 +24412,7 @@ lib/form/interfaces/IFormConfirmOptions.md
|
|
|
24368
24412
|
|
|
24369
24413
|
# Interface: IFormConfirmOptions
|
|
24370
24414
|
|
|
24371
|
-
Defined in: [lib/form.ts:
|
|
24415
|
+
Defined in: [lib/form.ts:4760](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4760)
|
|
24372
24416
|
|
|
24373
24417
|
Confirm 选项
|
|
24374
24418
|
|
|
@@ -24378,7 +24422,7 @@ Confirm 选项
|
|
|
24378
24422
|
|
|
24379
24423
|
> `optional` **cancel?**: `boolean`
|
|
24380
24424
|
|
|
24381
|
-
Defined in: [lib/form.ts:
|
|
24425
|
+
Defined in: [lib/form.ts:4763](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4763)
|
|
24382
24426
|
|
|
24383
24427
|
***
|
|
24384
24428
|
|
|
@@ -24386,7 +24430,7 @@ Defined in: [lib/form.ts:4727](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24386
24430
|
|
|
24387
24431
|
> **content**: `string`
|
|
24388
24432
|
|
|
24389
|
-
Defined in: [lib/form.ts:
|
|
24433
|
+
Defined in: [lib/form.ts:4762](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4762)
|
|
24390
24434
|
|
|
24391
24435
|
***
|
|
24392
24436
|
|
|
@@ -24394,7 +24438,7 @@ Defined in: [lib/form.ts:4726](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24394
24438
|
|
|
24395
24439
|
> `optional` **title?**: `string`
|
|
24396
24440
|
|
|
24397
|
-
Defined in: [lib/form.ts:
|
|
24441
|
+
Defined in: [lib/form.ts:4761](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4761)
|
|
24398
24442
|
|
|
24399
24443
|
lib/form/interfaces/IFormDialogOptions.md
|
|
24400
24444
|
---
|
|
@@ -24407,7 +24451,7 @@ lib/form/interfaces/IFormDialogOptions.md
|
|
|
24407
24451
|
|
|
24408
24452
|
# Interface: IFormDialogOptions
|
|
24409
24453
|
|
|
24410
|
-
Defined in: [lib/form.ts:
|
|
24454
|
+
Defined in: [lib/form.ts:4706](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4706)
|
|
24411
24455
|
|
|
24412
24456
|
Dialog 选项
|
|
24413
24457
|
|
|
@@ -24417,7 +24461,7 @@ Dialog 选项
|
|
|
24417
24461
|
|
|
24418
24462
|
> `optional` **autoDialogResult?**: `boolean`
|
|
24419
24463
|
|
|
24420
|
-
Defined in: [lib/form.ts:
|
|
24464
|
+
Defined in: [lib/form.ts:4714](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4714)
|
|
24421
24465
|
|
|
24422
24466
|
点击按钮后是否自动将按钮文本写入 dialogResult,默认 true
|
|
24423
24467
|
|
|
@@ -24427,7 +24471,7 @@ Defined in: [lib/form.ts:4678](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24427
24471
|
|
|
24428
24472
|
> `optional` **buttons?**: `string`[]
|
|
24429
24473
|
|
|
24430
|
-
Defined in: [lib/form.ts:
|
|
24474
|
+
Defined in: [lib/form.ts:4712](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4712)
|
|
24431
24475
|
|
|
24432
24476
|
底部按钮文本列表,默认使用当前语言的确定按钮文本
|
|
24433
24477
|
|
|
@@ -24437,7 +24481,7 @@ Defined in: [lib/form.ts:4676](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24437
24481
|
|
|
24438
24482
|
> **content**: `string`
|
|
24439
24483
|
|
|
24440
|
-
Defined in: [lib/form.ts:
|
|
24484
|
+
Defined in: [lib/form.ts:4710](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4710)
|
|
24441
24485
|
|
|
24442
24486
|
dialog 内容,支持直接传布局字符串
|
|
24443
24487
|
|
|
@@ -24447,7 +24491,7 @@ dialog 内容,支持直接传布局字符串
|
|
|
24447
24491
|
|
|
24448
24492
|
> `optional` **data?**: `Record`\<`string`, `any`\>
|
|
24449
24493
|
|
|
24450
|
-
Defined in: [lib/form.ts:
|
|
24494
|
+
Defined in: [lib/form.ts:4728](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4728)
|
|
24451
24495
|
|
|
24452
24496
|
传值,需要用 data.x 读取
|
|
24453
24497
|
|
|
@@ -24457,7 +24501,7 @@ Defined in: [lib/form.ts:4692](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24457
24501
|
|
|
24458
24502
|
> `optional` **direction?**: `"v"` \| `"h"`
|
|
24459
24503
|
|
|
24460
|
-
Defined in: [lib/form.ts:
|
|
24504
|
+
Defined in: [lib/form.ts:4717](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4717)
|
|
24461
24505
|
|
|
24462
24506
|
dialog 控件内容布局方向,h 为横向,v 为纵向
|
|
24463
24507
|
|
|
@@ -24467,7 +24511,7 @@ dialog 控件内容布局方向,h 为横向,v 为纵向
|
|
|
24467
24511
|
|
|
24468
24512
|
> `optional` **gutter?**: `string` \| `number`
|
|
24469
24513
|
|
|
24470
|
-
Defined in: [lib/form.ts:
|
|
24514
|
+
Defined in: [lib/form.ts:4719](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4719)
|
|
24471
24515
|
|
|
24472
24516
|
dialog 控件内容区项目间距,会透传给 dialog 控件
|
|
24473
24517
|
|
|
@@ -24477,7 +24521,7 @@ dialog 控件内容区项目间距,会透传给 dialog 控件
|
|
|
24477
24521
|
|
|
24478
24522
|
> `optional` **height?**: `string` \| `number`
|
|
24479
24523
|
|
|
24480
|
-
Defined in: [lib/form.ts:
|
|
24524
|
+
Defined in: [lib/form.ts:4723](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4723)
|
|
24481
24525
|
|
|
24482
24526
|
dialog 控件高度,传数字时为像素值,传 fill 时代表填充可用高度
|
|
24483
24527
|
|
|
@@ -24487,7 +24531,7 @@ dialog 控件高度,传数字时为像素值,传 fill 时代表填充可用
|
|
|
24487
24531
|
|
|
24488
24532
|
> `optional` **methods?**: `Record`\<`string`, (...`param`) => `any`\>
|
|
24489
24533
|
|
|
24490
|
-
Defined in: [lib/form.ts:
|
|
24534
|
+
Defined in: [lib/form.ts:4730](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4730)
|
|
24491
24535
|
|
|
24492
24536
|
传值,需要用 methods.x 读取
|
|
24493
24537
|
|
|
@@ -24497,7 +24541,7 @@ Defined in: [lib/form.ts:4694](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24497
24541
|
|
|
24498
24542
|
> `optional` **onMounted?**: () => `void` \| `Promise`\<`void`\>
|
|
24499
24543
|
|
|
24500
|
-
Defined in: [lib/form.ts:
|
|
24544
|
+
Defined in: [lib/form.ts:4750](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4750)
|
|
24501
24545
|
|
|
24502
24546
|
窗体挂载完成事件
|
|
24503
24547
|
|
|
@@ -24511,7 +24555,7 @@ Defined in: [lib/form.ts:4714](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24511
24555
|
|
|
24512
24556
|
> `optional` **padding?**: `string` \| `boolean`
|
|
24513
24557
|
|
|
24514
|
-
Defined in: [lib/form.ts:
|
|
24558
|
+
Defined in: [lib/form.ts:4725](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4725)
|
|
24515
24559
|
|
|
24516
24560
|
dialog 控件内容区是否显示内边距,默认表现与控件自身一致
|
|
24517
24561
|
|
|
@@ -24521,7 +24565,7 @@ dialog 控件内容区是否显示内边距,默认表现与控件自身一致
|
|
|
24521
24565
|
|
|
24522
24566
|
> `optional` **path?**: `string`
|
|
24523
24567
|
|
|
24524
|
-
Defined in: [lib/form.ts:
|
|
24568
|
+
Defined in: [lib/form.ts:4734](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4734)
|
|
24525
24569
|
|
|
24526
24570
|
路径基,以 / 结束或文件路径则以文件的基路径为准,可留空
|
|
24527
24571
|
|
|
@@ -24531,7 +24575,7 @@ Defined in: [lib/form.ts:4698](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24531
24575
|
|
|
24532
24576
|
> `optional` **select?**: (`this`, `e`, `button`) => `void`
|
|
24533
24577
|
|
|
24534
|
-
Defined in: [lib/form.ts:
|
|
24578
|
+
Defined in: [lib/form.ts:4741](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4741)
|
|
24535
24579
|
|
|
24536
24580
|
点击按钮触发事件,不能用 Promise
|
|
24537
24581
|
|
|
@@ -24563,7 +24607,7 @@ Defined in: [lib/form.ts:4705](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24563
24607
|
|
|
24564
24608
|
> `optional` **style?**: `string`
|
|
24565
24609
|
|
|
24566
|
-
Defined in: [lib/form.ts:
|
|
24610
|
+
Defined in: [lib/form.ts:4732](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4732)
|
|
24567
24611
|
|
|
24568
24612
|
样式表
|
|
24569
24613
|
|
|
@@ -24573,7 +24617,7 @@ Defined in: [lib/form.ts:4696](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24573
24617
|
|
|
24574
24618
|
> `optional` **title?**: `string`
|
|
24575
24619
|
|
|
24576
|
-
Defined in: [lib/form.ts:
|
|
24620
|
+
Defined in: [lib/form.ts:4708](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4708)
|
|
24577
24621
|
|
|
24578
24622
|
dialog 窗体标题,不传则使用默认标题 dialog
|
|
24579
24623
|
|
|
@@ -24583,7 +24627,7 @@ dialog 窗体标题,不传则使用默认标题 dialog
|
|
|
24583
24627
|
|
|
24584
24628
|
> `optional` **width?**: `string` \| `number`
|
|
24585
24629
|
|
|
24586
|
-
Defined in: [lib/form.ts:
|
|
24630
|
+
Defined in: [lib/form.ts:4721](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4721)
|
|
24587
24631
|
|
|
24588
24632
|
dialog 控件宽度,传数字时为像素值,传 fill 时代表填充可用宽度
|
|
24589
24633
|
|
|
@@ -24598,7 +24642,7 @@ lib/form/interfaces/IFormDialogSelectEvent.md
|
|
|
24598
24642
|
|
|
24599
24643
|
# Interface: IFormDialogSelectEvent
|
|
24600
24644
|
|
|
24601
|
-
Defined in: [lib/form.ts:
|
|
24645
|
+
Defined in: [lib/form.ts:4753](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4753)
|
|
24602
24646
|
|
|
24603
24647
|
Custom Event
|
|
24604
24648
|
|
|
@@ -24612,7 +24656,7 @@ Custom Event
|
|
|
24612
24656
|
|
|
24613
24657
|
> **detail**: `object`
|
|
24614
24658
|
|
|
24615
|
-
Defined in: [lib/form.ts:
|
|
24659
|
+
Defined in: [lib/form.ts:4754](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4754)
|
|
24616
24660
|
|
|
24617
24661
|
#### button
|
|
24618
24662
|
|
|
@@ -24657,7 +24701,7 @@ lib/form/interfaces/IFormInfo.md
|
|
|
24657
24701
|
|
|
24658
24702
|
# Interface: IFormInfo
|
|
24659
24703
|
|
|
24660
|
-
Defined in: [lib/form.ts:
|
|
24704
|
+
Defined in: [lib/form.ts:4661](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4661)
|
|
24661
24705
|
|
|
24662
24706
|
Form 的简略情况,通常在 list 当中
|
|
24663
24707
|
|
|
@@ -24667,7 +24711,7 @@ Form 的简略情况,通常在 list 当中
|
|
|
24667
24711
|
|
|
24668
24712
|
> **focus**: `boolean`
|
|
24669
24713
|
|
|
24670
|
-
Defined in: [lib/form.ts:
|
|
24714
|
+
Defined in: [lib/form.ts:4668](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4668)
|
|
24671
24715
|
|
|
24672
24716
|
***
|
|
24673
24717
|
|
|
@@ -24675,7 +24719,7 @@ Defined in: [lib/form.ts:4632](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24675
24719
|
|
|
24676
24720
|
> **icon**: `string`
|
|
24677
24721
|
|
|
24678
|
-
Defined in: [lib/form.ts:
|
|
24722
|
+
Defined in: [lib/form.ts:4664](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4664)
|
|
24679
24723
|
|
|
24680
24724
|
***
|
|
24681
24725
|
|
|
@@ -24683,7 +24727,7 @@ Defined in: [lib/form.ts:4628](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24683
24727
|
|
|
24684
24728
|
> **show**: `boolean`
|
|
24685
24729
|
|
|
24686
|
-
Defined in: [lib/form.ts:
|
|
24730
|
+
Defined in: [lib/form.ts:4667](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4667)
|
|
24687
24731
|
|
|
24688
24732
|
***
|
|
24689
24733
|
|
|
@@ -24691,7 +24735,7 @@ Defined in: [lib/form.ts:4631](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24691
24735
|
|
|
24692
24736
|
> **showInSystemTask**: `boolean`
|
|
24693
24737
|
|
|
24694
|
-
Defined in: [lib/form.ts:
|
|
24738
|
+
Defined in: [lib/form.ts:4669](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4669)
|
|
24695
24739
|
|
|
24696
24740
|
***
|
|
24697
24741
|
|
|
@@ -24699,7 +24743,7 @@ Defined in: [lib/form.ts:4633](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24699
24743
|
|
|
24700
24744
|
> **stateMax**: `boolean`
|
|
24701
24745
|
|
|
24702
|
-
Defined in: [lib/form.ts:
|
|
24746
|
+
Defined in: [lib/form.ts:4665](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4665)
|
|
24703
24747
|
|
|
24704
24748
|
***
|
|
24705
24749
|
|
|
@@ -24707,7 +24751,7 @@ Defined in: [lib/form.ts:4629](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24707
24751
|
|
|
24708
24752
|
> **stateMin**: `boolean`
|
|
24709
24753
|
|
|
24710
|
-
Defined in: [lib/form.ts:
|
|
24754
|
+
Defined in: [lib/form.ts:4666](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4666)
|
|
24711
24755
|
|
|
24712
24756
|
***
|
|
24713
24757
|
|
|
@@ -24715,7 +24759,7 @@ Defined in: [lib/form.ts:4630](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24715
24759
|
|
|
24716
24760
|
> **taskId**: `string`
|
|
24717
24761
|
|
|
24718
|
-
Defined in: [lib/form.ts:
|
|
24762
|
+
Defined in: [lib/form.ts:4662](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4662)
|
|
24719
24763
|
|
|
24720
24764
|
***
|
|
24721
24765
|
|
|
@@ -24723,7 +24767,7 @@ Defined in: [lib/form.ts:4626](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24723
24767
|
|
|
24724
24768
|
> **title**: `string`
|
|
24725
24769
|
|
|
24726
|
-
Defined in: [lib/form.ts:
|
|
24770
|
+
Defined in: [lib/form.ts:4663](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4663)
|
|
24727
24771
|
|
|
24728
24772
|
lib/form/interfaces/IForm.md
|
|
24729
24773
|
---
|
|
@@ -24736,7 +24780,7 @@ lib/form/interfaces/IForm.md
|
|
|
24736
24780
|
|
|
24737
24781
|
# Interface: IForm
|
|
24738
24782
|
|
|
24739
|
-
Defined in: [lib/form.ts:
|
|
24783
|
+
Defined in: [lib/form.ts:4652](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4652)
|
|
24740
24784
|
|
|
24741
24785
|
运行时 task 中的 form 对象
|
|
24742
24786
|
|
|
@@ -24746,7 +24790,7 @@ Defined in: [lib/form.ts:4616](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24746
24790
|
|
|
24747
24791
|
> **closed**: `boolean`
|
|
24748
24792
|
|
|
24749
|
-
Defined in: [lib/form.ts:
|
|
24793
|
+
Defined in: [lib/form.ts:4657](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4657)
|
|
24750
24794
|
|
|
24751
24795
|
是否已经执行过了关闭窗体方法,此处加判断为了防止重复执行 close 导致的 bug
|
|
24752
24796
|
|
|
@@ -24756,7 +24800,7 @@ Defined in: [lib/form.ts:4621](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24756
24800
|
|
|
24757
24801
|
> **id**: `string`
|
|
24758
24802
|
|
|
24759
|
-
Defined in: [lib/form.ts:
|
|
24803
|
+
Defined in: [lib/form.ts:4653](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4653)
|
|
24760
24804
|
|
|
24761
24805
|
***
|
|
24762
24806
|
|
|
@@ -24764,7 +24808,7 @@ Defined in: [lib/form.ts:4617](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24764
24808
|
|
|
24765
24809
|
> **vapp**: [`IVApp`](../../core/interfaces/IVApp.md)
|
|
24766
24810
|
|
|
24767
|
-
Defined in: [lib/form.ts:
|
|
24811
|
+
Defined in: [lib/form.ts:4654](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4654)
|
|
24768
24812
|
|
|
24769
24813
|
***
|
|
24770
24814
|
|
|
@@ -24772,7 +24816,7 @@ Defined in: [lib/form.ts:4618](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24772
24816
|
|
|
24773
24817
|
> **vroot**: [`IVue`](../../core/interfaces/IVue.md)
|
|
24774
24818
|
|
|
24775
|
-
Defined in: [lib/form.ts:
|
|
24819
|
+
Defined in: [lib/form.ts:4655](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4655)
|
|
24776
24820
|
|
|
24777
24821
|
lib/form/interfaces/IFormPromptOptions.md
|
|
24778
24822
|
---
|
|
@@ -24785,7 +24829,7 @@ lib/form/interfaces/IFormPromptOptions.md
|
|
|
24785
24829
|
|
|
24786
24830
|
# Interface: IFormPromptOptions
|
|
24787
24831
|
|
|
24788
|
-
Defined in: [lib/form.ts:
|
|
24832
|
+
Defined in: [lib/form.ts:4775](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4775)
|
|
24789
24833
|
|
|
24790
24834
|
Prompt 选项
|
|
24791
24835
|
|
|
@@ -24795,7 +24839,7 @@ Prompt 选项
|
|
|
24795
24839
|
|
|
24796
24840
|
> `optional` **cancel?**: `boolean`
|
|
24797
24841
|
|
|
24798
|
-
Defined in: [lib/form.ts:
|
|
24842
|
+
Defined in: [lib/form.ts:4783](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4783)
|
|
24799
24843
|
|
|
24800
24844
|
是否显示取消按钮,默认显示
|
|
24801
24845
|
|
|
@@ -24805,7 +24849,7 @@ Defined in: [lib/form.ts:4747](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24805
24849
|
|
|
24806
24850
|
> **content**: `string`
|
|
24807
24851
|
|
|
24808
|
-
Defined in: [lib/form.ts:
|
|
24852
|
+
Defined in: [lib/form.ts:4779](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4779)
|
|
24809
24853
|
|
|
24810
24854
|
内容说明
|
|
24811
24855
|
|
|
@@ -24815,7 +24859,7 @@ Defined in: [lib/form.ts:4743](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24815
24859
|
|
|
24816
24860
|
> `optional` **select?**: (`this`, `e`, `button`) => `void`
|
|
24817
24861
|
|
|
24818
|
-
Defined in: [lib/form.ts:
|
|
24862
|
+
Defined in: [lib/form.ts:4790](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4790)
|
|
24819
24863
|
|
|
24820
24864
|
点击按钮触发事件
|
|
24821
24865
|
|
|
@@ -24847,7 +24891,7 @@ true 代表确定,false 代表取消
|
|
|
24847
24891
|
|
|
24848
24892
|
> `optional` **text?**: `string`
|
|
24849
24893
|
|
|
24850
|
-
Defined in: [lib/form.ts:
|
|
24894
|
+
Defined in: [lib/form.ts:4781](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4781)
|
|
24851
24895
|
|
|
24852
24896
|
文本默认值
|
|
24853
24897
|
|
|
@@ -24857,7 +24901,7 @@ Defined in: [lib/form.ts:4745](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24857
24901
|
|
|
24858
24902
|
> `optional` **title?**: `string`
|
|
24859
24903
|
|
|
24860
|
-
Defined in: [lib/form.ts:
|
|
24904
|
+
Defined in: [lib/form.ts:4777](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4777)
|
|
24861
24905
|
|
|
24862
24906
|
标题
|
|
24863
24907
|
|
|
@@ -24872,7 +24916,7 @@ lib/form/interfaces/IFormPromptSelectEvent.md
|
|
|
24872
24916
|
|
|
24873
24917
|
# Interface: IFormPromptSelectEvent
|
|
24874
24918
|
|
|
24875
|
-
Defined in: [lib/form.ts:
|
|
24919
|
+
Defined in: [lib/form.ts:4797](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4797)
|
|
24876
24920
|
|
|
24877
24921
|
Custom Event
|
|
24878
24922
|
|
|
@@ -24886,7 +24930,7 @@ Custom Event
|
|
|
24886
24930
|
|
|
24887
24931
|
> **detail**: `object`
|
|
24888
24932
|
|
|
24889
|
-
Defined in: [lib/form.ts:
|
|
24933
|
+
Defined in: [lib/form.ts:4798](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4798)
|
|
24890
24934
|
|
|
24891
24935
|
#### button
|
|
24892
24936
|
|
|
@@ -24937,7 +24981,7 @@ lib/form/interfaces/IMoveDragOptions.md
|
|
|
24937
24981
|
|
|
24938
24982
|
# Interface: IMoveDragOptions
|
|
24939
24983
|
|
|
24940
|
-
Defined in: [lib/form.ts:
|
|
24984
|
+
Defined in: [lib/form.ts:4673](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4673)
|
|
24941
24985
|
|
|
24942
24986
|
移动 drag 到新位置函数的选项
|
|
24943
24987
|
|
|
@@ -24947,7 +24991,7 @@ Defined in: [lib/form.ts:4637](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24947
24991
|
|
|
24948
24992
|
> `optional` **height?**: `number`
|
|
24949
24993
|
|
|
24950
|
-
Defined in: [lib/form.ts:
|
|
24994
|
+
Defined in: [lib/form.ts:4677](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4677)
|
|
24951
24995
|
|
|
24952
24996
|
***
|
|
24953
24997
|
|
|
@@ -24955,7 +24999,7 @@ Defined in: [lib/form.ts:4641](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24955
24999
|
|
|
24956
25000
|
> `optional` **icon?**: `boolean`
|
|
24957
25001
|
|
|
24958
|
-
Defined in: [lib/form.ts:
|
|
25002
|
+
Defined in: [lib/form.ts:4678](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4678)
|
|
24959
25003
|
|
|
24960
25004
|
***
|
|
24961
25005
|
|
|
@@ -24963,7 +25007,7 @@ Defined in: [lib/form.ts:4642](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24963
25007
|
|
|
24964
25008
|
> `optional` **left?**: `number`
|
|
24965
25009
|
|
|
24966
|
-
Defined in: [lib/form.ts:
|
|
25010
|
+
Defined in: [lib/form.ts:4675](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4675)
|
|
24967
25011
|
|
|
24968
25012
|
***
|
|
24969
25013
|
|
|
@@ -24971,7 +25015,7 @@ Defined in: [lib/form.ts:4639](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24971
25015
|
|
|
24972
25016
|
> `optional` **top?**: `number`
|
|
24973
25017
|
|
|
24974
|
-
Defined in: [lib/form.ts:
|
|
25018
|
+
Defined in: [lib/form.ts:4674](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4674)
|
|
24975
25019
|
|
|
24976
25020
|
***
|
|
24977
25021
|
|
|
@@ -24979,7 +25023,7 @@ Defined in: [lib/form.ts:4638](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24979
25023
|
|
|
24980
25024
|
> `optional` **width?**: `number`
|
|
24981
25025
|
|
|
24982
|
-
Defined in: [lib/form.ts:
|
|
25026
|
+
Defined in: [lib/form.ts:4676](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4676)
|
|
24983
25027
|
|
|
24984
25028
|
lib/form/interfaces/INotifyContentOptions.md
|
|
24985
25029
|
---
|
|
@@ -24992,7 +25036,7 @@ lib/form/interfaces/INotifyContentOptions.md
|
|
|
24992
25036
|
|
|
24993
25037
|
# Interface: INotifyContentOptions
|
|
24994
25038
|
|
|
24995
|
-
Defined in: [lib/form.ts:
|
|
25039
|
+
Defined in: [lib/form.ts:4695](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4695)
|
|
24996
25040
|
|
|
24997
25041
|
notify 信息框的修改选项
|
|
24998
25042
|
|
|
@@ -25002,7 +25046,7 @@ notify 信息框的修改选项
|
|
|
25002
25046
|
|
|
25003
25047
|
> `optional` **content?**: `string`
|
|
25004
25048
|
|
|
25005
|
-
Defined in: [lib/form.ts:
|
|
25049
|
+
Defined in: [lib/form.ts:4697](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4697)
|
|
25006
25050
|
|
|
25007
25051
|
***
|
|
25008
25052
|
|
|
@@ -25010,7 +25054,7 @@ Defined in: [lib/form.ts:4661](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25010
25054
|
|
|
25011
25055
|
> `optional` **note?**: `string`
|
|
25012
25056
|
|
|
25013
|
-
Defined in: [lib/form.ts:
|
|
25057
|
+
Defined in: [lib/form.ts:4698](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4698)
|
|
25014
25058
|
|
|
25015
25059
|
***
|
|
25016
25060
|
|
|
@@ -25018,7 +25062,7 @@ Defined in: [lib/form.ts:4662](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25018
25062
|
|
|
25019
25063
|
> `optional` **progress?**: `number`
|
|
25020
25064
|
|
|
25021
|
-
Defined in: [lib/form.ts:
|
|
25065
|
+
Defined in: [lib/form.ts:4700](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4700)
|
|
25022
25066
|
|
|
25023
25067
|
可顺便修改进度
|
|
25024
25068
|
|
|
@@ -25028,7 +25072,7 @@ Defined in: [lib/form.ts:4664](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25028
25072
|
|
|
25029
25073
|
> `optional` **timeout?**: `number`
|
|
25030
25074
|
|
|
25031
|
-
Defined in: [lib/form.ts:
|
|
25075
|
+
Defined in: [lib/form.ts:4702](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4702)
|
|
25032
25076
|
|
|
25033
25077
|
设置后将在 x 毫秒后隐藏,这不会大于创建时的设置的总时长
|
|
25034
25078
|
|
|
@@ -25038,7 +25082,7 @@ Defined in: [lib/form.ts:4666](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25038
25082
|
|
|
25039
25083
|
> `optional` **title?**: `string`
|
|
25040
25084
|
|
|
25041
|
-
Defined in: [lib/form.ts:
|
|
25085
|
+
Defined in: [lib/form.ts:4696](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4696)
|
|
25042
25086
|
|
|
25043
25087
|
lib/form/interfaces/INotifyOptions.md
|
|
25044
25088
|
---
|
|
@@ -25051,7 +25095,7 @@ lib/form/interfaces/INotifyOptions.md
|
|
|
25051
25095
|
|
|
25052
25096
|
# Interface: INotifyOptions
|
|
25053
25097
|
|
|
25054
|
-
Defined in: [lib/form.ts:
|
|
25098
|
+
Defined in: [lib/form.ts:4682](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4682)
|
|
25055
25099
|
|
|
25056
25100
|
弹出 notify 信息框的选项
|
|
25057
25101
|
|
|
@@ -25061,7 +25105,7 @@ Defined in: [lib/form.ts:4646](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25061
25105
|
|
|
25062
25106
|
> `optional` **content?**: `string`
|
|
25063
25107
|
|
|
25064
|
-
Defined in: [lib/form.ts:
|
|
25108
|
+
Defined in: [lib/form.ts:4685](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4685)
|
|
25065
25109
|
|
|
25066
25110
|
正文
|
|
25067
25111
|
|
|
@@ -25071,7 +25115,7 @@ Defined in: [lib/form.ts:4649](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25071
25115
|
|
|
25072
25116
|
> `optional` **icon?**: `string` \| `null`
|
|
25073
25117
|
|
|
25074
|
-
Defined in: [lib/form.ts:
|
|
25118
|
+
Defined in: [lib/form.ts:4688](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4688)
|
|
25075
25119
|
|
|
25076
25120
|
***
|
|
25077
25121
|
|
|
@@ -25079,7 +25123,7 @@ Defined in: [lib/form.ts:4652](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25079
25123
|
|
|
25080
25124
|
> `optional` **note?**: `string`
|
|
25081
25125
|
|
|
25082
|
-
Defined in: [lib/form.ts:
|
|
25126
|
+
Defined in: [lib/form.ts:4687](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4687)
|
|
25083
25127
|
|
|
25084
25128
|
浅色描述
|
|
25085
25129
|
|
|
@@ -25089,7 +25133,7 @@ Defined in: [lib/form.ts:4651](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25089
25133
|
|
|
25090
25134
|
> `optional` **progress?**: `boolean`
|
|
25091
25135
|
|
|
25092
|
-
Defined in: [lib/form.ts:
|
|
25136
|
+
Defined in: [lib/form.ts:4691](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4691)
|
|
25093
25137
|
|
|
25094
25138
|
***
|
|
25095
25139
|
|
|
@@ -25097,7 +25141,7 @@ Defined in: [lib/form.ts:4655](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25097
25141
|
|
|
25098
25142
|
> `optional` **timeout?**: `number`
|
|
25099
25143
|
|
|
25100
|
-
Defined in: [lib/form.ts:
|
|
25144
|
+
Defined in: [lib/form.ts:4689](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4689)
|
|
25101
25145
|
|
|
25102
25146
|
***
|
|
25103
25147
|
|
|
@@ -25105,7 +25149,7 @@ Defined in: [lib/form.ts:4653](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25105
25149
|
|
|
25106
25150
|
> `optional` **title?**: `string`
|
|
25107
25151
|
|
|
25108
|
-
Defined in: [lib/form.ts:
|
|
25152
|
+
Defined in: [lib/form.ts:4683](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4683)
|
|
25109
25153
|
|
|
25110
25154
|
***
|
|
25111
25155
|
|
|
@@ -25113,7 +25157,7 @@ Defined in: [lib/form.ts:4647](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25113
25157
|
|
|
25114
25158
|
> `optional` **type?**: `"progress"` \| `"info"` \| `"warning"` \| `"danger"` \| `"primary"`
|
|
25115
25159
|
|
|
25116
|
-
Defined in: [lib/form.ts:
|
|
25160
|
+
Defined in: [lib/form.ts:4690](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4690)
|
|
25117
25161
|
|
|
25118
25162
|
lib/form/variables/activePanels.md
|
|
25119
25163
|
---
|
|
@@ -27602,7 +27646,7 @@ lib/task/classes/AbstractThread.md
|
|
|
27602
27646
|
|
|
27603
27647
|
# Abstract Class: AbstractThread
|
|
27604
27648
|
|
|
27605
|
-
Defined in: [lib/task.ts:
|
|
27649
|
+
Defined in: [lib/task.ts:1561](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1561)
|
|
27606
27650
|
|
|
27607
27651
|
线程抽象类
|
|
27608
27652
|
|
|
@@ -27622,7 +27666,7 @@ Defined in: [lib/task.ts:1523](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27622
27666
|
|
|
27623
27667
|
> **taskId**: `string` = `''`
|
|
27624
27668
|
|
|
27625
|
-
Defined in: [lib/task.ts:
|
|
27669
|
+
Defined in: [lib/task.ts:1570](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1570)
|
|
27626
27670
|
|
|
27627
27671
|
系统会自动设置本项
|
|
27628
27672
|
|
|
@@ -27634,7 +27678,7 @@ Defined in: [lib/task.ts:1532](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27634
27678
|
|
|
27635
27679
|
> **get** **filename**(): `string`
|
|
27636
27680
|
|
|
27637
|
-
Defined in: [lib/task.ts:
|
|
27681
|
+
Defined in: [lib/task.ts:1564](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1564)
|
|
27638
27682
|
|
|
27639
27683
|
当前文件在包内的路径
|
|
27640
27684
|
|
|
@@ -27648,7 +27692,7 @@ Defined in: [lib/task.ts:1526](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27648
27692
|
|
|
27649
27693
|
> **close**(): `void`
|
|
27650
27694
|
|
|
27651
|
-
Defined in: [lib/task.ts:
|
|
27695
|
+
Defined in: [lib/task.ts:1599](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1599)
|
|
27652
27696
|
|
|
27653
27697
|
关闭线程
|
|
27654
27698
|
|
|
@@ -27662,7 +27706,7 @@ Defined in: [lib/task.ts:1561](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27662
27706
|
|
|
27663
27707
|
> `abstract` **main**(`data`): `void` \| `Promise`\<`void`\>
|
|
27664
27708
|
|
|
27665
|
-
Defined in: [lib/task.ts:
|
|
27709
|
+
Defined in: [lib/task.ts:1573](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1573)
|
|
27666
27710
|
|
|
27667
27711
|
线程入口
|
|
27668
27712
|
|
|
@@ -27682,7 +27726,7 @@ Defined in: [lib/task.ts:1535](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27682
27726
|
|
|
27683
27727
|
> **onEnded**(): `void` \| `Promise`\<`void`\>
|
|
27684
27728
|
|
|
27685
|
-
Defined in: [lib/task.ts:
|
|
27729
|
+
Defined in: [lib/task.ts:1582](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1582)
|
|
27686
27730
|
|
|
27687
27731
|
线程结束事件
|
|
27688
27732
|
|
|
@@ -27696,7 +27740,7 @@ Defined in: [lib/task.ts:1544](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27696
27740
|
|
|
27697
27741
|
> **onError**(`e`): `void` \| `Promise`\<`void`\>
|
|
27698
27742
|
|
|
27699
|
-
Defined in: [lib/task.ts:
|
|
27743
|
+
Defined in: [lib/task.ts:1588](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1588)
|
|
27700
27744
|
|
|
27701
27745
|
报错
|
|
27702
27746
|
|
|
@@ -27716,7 +27760,7 @@ Defined in: [lib/task.ts:1550](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27716
27760
|
|
|
27717
27761
|
> **onMessage**(`e`): `void` \| `Promise`\<`void`\>
|
|
27718
27762
|
|
|
27719
|
-
Defined in: [lib/task.ts:
|
|
27763
|
+
Defined in: [lib/task.ts:1576](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1576)
|
|
27720
27764
|
|
|
27721
27765
|
线程接收事件
|
|
27722
27766
|
|
|
@@ -27736,7 +27780,7 @@ Defined in: [lib/task.ts:1538](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27736
27780
|
|
|
27737
27781
|
> **send**(`data`): `void`
|
|
27738
27782
|
|
|
27739
|
-
Defined in: [lib/task.ts:
|
|
27783
|
+
Defined in: [lib/task.ts:1594](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1594)
|
|
27740
27784
|
|
|
27741
27785
|
发送数据
|
|
27742
27786
|
|
|
@@ -27761,7 +27805,7 @@ lib/task/enumerations/EIPTYPE.md
|
|
|
27761
27805
|
|
|
27762
27806
|
# Enumeration: EIPTYPE
|
|
27763
27807
|
|
|
27764
|
-
Defined in: [lib/task.ts:
|
|
27808
|
+
Defined in: [lib/task.ts:405](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L405)
|
|
27765
27809
|
|
|
27766
27810
|
initProgress 的 type
|
|
27767
27811
|
|
|
@@ -27771,7 +27815,7 @@ initProgress 的 type
|
|
|
27771
27815
|
|
|
27772
27816
|
> **APP**: `0`
|
|
27773
27817
|
|
|
27774
|
-
Defined in: [lib/task.ts:
|
|
27818
|
+
Defined in: [lib/task.ts:406](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L406)
|
|
27775
27819
|
|
|
27776
27820
|
***
|
|
27777
27821
|
|
|
@@ -27779,7 +27823,7 @@ Defined in: [lib/task.ts:374](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27779
27823
|
|
|
27780
27824
|
> **CONTROL**: `2`
|
|
27781
27825
|
|
|
27782
|
-
Defined in: [lib/task.ts:
|
|
27826
|
+
Defined in: [lib/task.ts:408](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L408)
|
|
27783
27827
|
|
|
27784
27828
|
***
|
|
27785
27829
|
|
|
@@ -27787,7 +27831,7 @@ Defined in: [lib/task.ts:376](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27787
27831
|
|
|
27788
27832
|
> **DONE**: `7`
|
|
27789
27833
|
|
|
27790
|
-
Defined in: [lib/task.ts:
|
|
27834
|
+
Defined in: [lib/task.ts:413](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L413)
|
|
27791
27835
|
|
|
27792
27836
|
***
|
|
27793
27837
|
|
|
@@ -27795,7 +27839,7 @@ Defined in: [lib/task.ts:381](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27795
27839
|
|
|
27796
27840
|
> **LOCAL**: `1`
|
|
27797
27841
|
|
|
27798
|
-
Defined in: [lib/task.ts:
|
|
27842
|
+
Defined in: [lib/task.ts:407](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L407)
|
|
27799
27843
|
|
|
27800
27844
|
***
|
|
27801
27845
|
|
|
@@ -27803,7 +27847,7 @@ Defined in: [lib/task.ts:375](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27803
27847
|
|
|
27804
27848
|
> **PERMISSION**: `5`
|
|
27805
27849
|
|
|
27806
|
-
Defined in: [lib/task.ts:
|
|
27850
|
+
Defined in: [lib/task.ts:411](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L411)
|
|
27807
27851
|
|
|
27808
27852
|
***
|
|
27809
27853
|
|
|
@@ -27811,7 +27855,7 @@ Defined in: [lib/task.ts:379](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27811
27855
|
|
|
27812
27856
|
> **START**: `6`
|
|
27813
27857
|
|
|
27814
|
-
Defined in: [lib/task.ts:
|
|
27858
|
+
Defined in: [lib/task.ts:412](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L412)
|
|
27815
27859
|
|
|
27816
27860
|
***
|
|
27817
27861
|
|
|
@@ -27819,7 +27863,7 @@ Defined in: [lib/task.ts:380](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27819
27863
|
|
|
27820
27864
|
> **STYLE**: `4`
|
|
27821
27865
|
|
|
27822
|
-
Defined in: [lib/task.ts:
|
|
27866
|
+
Defined in: [lib/task.ts:410](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L410)
|
|
27823
27867
|
|
|
27824
27868
|
***
|
|
27825
27869
|
|
|
@@ -27827,7 +27871,7 @@ Defined in: [lib/task.ts:378](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27827
27871
|
|
|
27828
27872
|
> **THEME**: `3`
|
|
27829
27873
|
|
|
27830
|
-
Defined in: [lib/task.ts:
|
|
27874
|
+
Defined in: [lib/task.ts:409](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L409)
|
|
27831
27875
|
|
|
27832
27876
|
lib/task/functions/checkPermission.md
|
|
27833
27877
|
---
|
|
@@ -27842,7 +27886,7 @@ lib/task/functions/checkPermission.md
|
|
|
27842
27886
|
|
|
27843
27887
|
> **checkPermission**(`taskId`, `vals`, `apply?`, `applyHandler?`): `Promise`\<`boolean`[]\>
|
|
27844
27888
|
|
|
27845
|
-
Defined in: [lib/task.ts:
|
|
27889
|
+
Defined in: [lib/task.ts:958](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L958)
|
|
27846
27890
|
|
|
27847
27891
|
检测应用是否有相应的权限(如果 taskId 是 sysId 则直接成功)
|
|
27848
27892
|
|
|
@@ -27889,7 +27933,7 @@ lib/task/functions/clearLocaleLang.md
|
|
|
27889
27933
|
|
|
27890
27934
|
> **clearLocaleLang**(`current`): `void`
|
|
27891
27935
|
|
|
27892
|
-
Defined in: [lib/task.ts:
|
|
27936
|
+
Defined in: [lib/task.ts:1256](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1256)
|
|
27893
27937
|
|
|
27894
27938
|
清除 task 的语言设置
|
|
27895
27939
|
|
|
@@ -27918,7 +27962,7 @@ lib/task/functions/clearLocale.md
|
|
|
27918
27962
|
|
|
27919
27963
|
> **clearLocale**(`taskId`): `void`
|
|
27920
27964
|
|
|
27921
|
-
Defined in: [lib/task.ts:
|
|
27965
|
+
Defined in: [lib/task.ts:1214](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1214)
|
|
27922
27966
|
|
|
27923
27967
|
清除任务的所有加载的语言包
|
|
27924
27968
|
|
|
@@ -27947,7 +27991,7 @@ lib/task/functions/clearSystem.md
|
|
|
27947
27991
|
|
|
27948
27992
|
> **clearSystem**(`taskId`): `Promise`\<`boolean`\>
|
|
27949
27993
|
|
|
27950
|
-
Defined in: [lib/task.ts:
|
|
27994
|
+
Defined in: [lib/task.ts:1423](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1423)
|
|
27951
27995
|
|
|
27952
27996
|
清除系统任务设定
|
|
27953
27997
|
|
|
@@ -27976,7 +28020,7 @@ lib/task/functions/createTimer.md
|
|
|
27976
28020
|
|
|
27977
28021
|
> **createTimer**(`current`, `fun`, `delay`, `opt?`): `number`
|
|
27978
28022
|
|
|
27979
|
-
Defined in: [lib/task.ts:
|
|
28023
|
+
Defined in: [lib/task.ts:1274](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1274)
|
|
27980
28024
|
|
|
27981
28025
|
创建 timer
|
|
27982
28026
|
|
|
@@ -28023,7 +28067,7 @@ lib/task/functions/end.md
|
|
|
28023
28067
|
|
|
28024
28068
|
> **end**(`taskId`): `Promise`\<`boolean`\>
|
|
28025
28069
|
|
|
28026
|
-
Defined in: [lib/task.ts:
|
|
28070
|
+
Defined in: [lib/task.ts:1073](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1073)
|
|
28027
28071
|
|
|
28028
28072
|
完全结束任务
|
|
28029
28073
|
|
|
@@ -28079,7 +28123,7 @@ lib/task/functions/getList.md
|
|
|
28079
28123
|
|
|
28080
28124
|
> **getList**(): [`ITaskInfo`](../interfaces/ITaskInfo.md)[]
|
|
28081
28125
|
|
|
28082
|
-
Defined in: [lib/task.ts:
|
|
28126
|
+
Defined in: [lib/task.ts:386](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L386)
|
|
28083
28127
|
|
|
28084
28128
|
获取 task list 的简略情况
|
|
28085
28129
|
|
|
@@ -28185,7 +28229,7 @@ lib/task/functions/getPermissions.md
|
|
|
28185
28229
|
|
|
28186
28230
|
> **getPermissions**(`current`): `string`[]
|
|
28187
28231
|
|
|
28188
|
-
Defined in: [lib/task.ts:
|
|
28232
|
+
Defined in: [lib/task.ts:373](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L373)
|
|
28189
28233
|
|
|
28190
28234
|
获取某个任务的已授权权限列表
|
|
28191
28235
|
|
|
@@ -28249,7 +28293,7 @@ lib/task/functions/init.md
|
|
|
28249
28293
|
|
|
28250
28294
|
> **init**(): `void`
|
|
28251
28295
|
|
|
28252
|
-
Defined in: [lib/task.ts:
|
|
28296
|
+
Defined in: [lib/task.ts:1511](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1511)
|
|
28253
28297
|
|
|
28254
28298
|
## Returns
|
|
28255
28299
|
|
|
@@ -28297,7 +28341,7 @@ lib/task/functions/loadLocaleData.md
|
|
|
28297
28341
|
|
|
28298
28342
|
> **loadLocaleData**(`taskId`, `lang`, `data`, `pre?`): `void`
|
|
28299
28343
|
|
|
28300
|
-
Defined in: [lib/task.ts:
|
|
28344
|
+
Defined in: [lib/task.ts:1158](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1158)
|
|
28301
28345
|
|
|
28302
28346
|
加载 locale data 对象到 task
|
|
28303
28347
|
|
|
@@ -28344,7 +28388,7 @@ lib/task/functions/loadLocale.md
|
|
|
28344
28388
|
|
|
28345
28389
|
> **loadLocale**(`taskId`, `lang`, `path`): `Promise`\<`boolean`\>
|
|
28346
28390
|
|
|
28347
|
-
Defined in: [lib/task.ts:
|
|
28391
|
+
Defined in: [lib/task.ts:1185](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1185)
|
|
28348
28392
|
|
|
28349
28393
|
加载 locale 文件 json
|
|
28350
28394
|
|
|
@@ -28385,7 +28429,7 @@ lib/task/functions/offFrame.md
|
|
|
28385
28429
|
|
|
28386
28430
|
> **offFrame**(`current`, `ft`): `void`
|
|
28387
28431
|
|
|
28388
|
-
Defined in: [lib/task.ts:
|
|
28432
|
+
Defined in: [lib/task.ts:353](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L353)
|
|
28389
28433
|
|
|
28390
28434
|
移除 frame 监听
|
|
28391
28435
|
|
|
@@ -28420,7 +28464,7 @@ lib/task/functions/onFrame.md
|
|
|
28420
28464
|
|
|
28421
28465
|
> **onFrame**(`current`, `fun`, `opt?`): `number`
|
|
28422
28466
|
|
|
28423
|
-
Defined in: [lib/task.ts:
|
|
28467
|
+
Defined in: [lib/task.ts:272](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L272)
|
|
28424
28468
|
|
|
28425
28469
|
创建 frame 监听,formId 存在则为窗体范围,否则为任务级范围
|
|
28426
28470
|
|
|
@@ -28467,7 +28511,7 @@ lib/task/functions/refreshSystemPosition.md
|
|
|
28467
28511
|
|
|
28468
28512
|
> **refreshSystemPosition**(): `void`
|
|
28469
28513
|
|
|
28470
|
-
Defined in: [lib/task.ts:
|
|
28514
|
+
Defined in: [lib/task.ts:1455](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1455)
|
|
28471
28515
|
|
|
28472
28516
|
刷新系统任务的 form 的位置以及 length
|
|
28473
28517
|
|
|
@@ -28488,7 +28532,7 @@ lib/task/functions/removeTimer.md
|
|
|
28488
28532
|
|
|
28489
28533
|
> **removeTimer**(`current`, `timer`): `void`
|
|
28490
28534
|
|
|
28491
|
-
Defined in: [lib/task.ts:
|
|
28535
|
+
Defined in: [lib/task.ts:1341](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1341)
|
|
28492
28536
|
|
|
28493
28537
|
移除 timer
|
|
28494
28538
|
|
|
@@ -28523,7 +28567,7 @@ lib/task/functions/run.md
|
|
|
28523
28567
|
|
|
28524
28568
|
> **run**(`current`, `url`, `opt?`): `Promise`\<`string` \| `number`\>
|
|
28525
28569
|
|
|
28526
|
-
Defined in: [lib/task.ts:
|
|
28570
|
+
Defined in: [lib/task.ts:423](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L423)
|
|
28527
28571
|
|
|
28528
28572
|
运行一个应用
|
|
28529
28573
|
|
|
@@ -28566,7 +28610,7 @@ lib/task/functions/runThread.md
|
|
|
28566
28610
|
|
|
28567
28611
|
> **runThread**(`current`, `cls`, `data?`): [`IThread`](../interfaces/IThread.md)
|
|
28568
28612
|
|
|
28569
|
-
Defined in: [lib/task.ts:
|
|
28613
|
+
Defined in: [lib/task.ts:1613](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1613)
|
|
28570
28614
|
|
|
28571
28615
|
运行线程(同一个线程文件只能运行一个)
|
|
28572
28616
|
|
|
@@ -28636,7 +28680,7 @@ lib/task/functions/setLocaleLang.md
|
|
|
28636
28680
|
|
|
28637
28681
|
> **setLocaleLang**(`current`, `lang`): `void`
|
|
28638
28682
|
|
|
28639
|
-
Defined in: [lib/task.ts:
|
|
28683
|
+
Defined in: [lib/task.ts:1241](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1241)
|
|
28640
28684
|
|
|
28641
28685
|
设置本 task 的语言 name
|
|
28642
28686
|
|
|
@@ -28671,7 +28715,7 @@ lib/task/functions/setLocale.md
|
|
|
28671
28715
|
|
|
28672
28716
|
> **setLocale**(`taskId`, `lang`, `path`): `Promise`\<`boolean`\>
|
|
28673
28717
|
|
|
28674
|
-
Defined in: [lib/task.ts:
|
|
28718
|
+
Defined in: [lib/task.ts:1231](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1231)
|
|
28675
28719
|
|
|
28676
28720
|
加载全新 locale(老 locale 的所有语言的缓存会被卸载)
|
|
28677
28721
|
|
|
@@ -28712,7 +28756,7 @@ lib/task/functions/setSystem.md
|
|
|
28712
28756
|
|
|
28713
28757
|
> **setSystem**(`taskId`, `formId`): `boolean`
|
|
28714
28758
|
|
|
28715
|
-
Defined in: [lib/task.ts:
|
|
28759
|
+
Defined in: [lib/task.ts:1385](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1385)
|
|
28716
28760
|
|
|
28717
28761
|
将任务注册为系统 task
|
|
28718
28762
|
|
|
@@ -28747,7 +28791,7 @@ lib/task/functions/sleep.md
|
|
|
28747
28791
|
|
|
28748
28792
|
> **sleep**(`current`, `fun`, `delay`): `number`
|
|
28749
28793
|
|
|
28750
|
-
Defined in: [lib/task.ts:
|
|
28794
|
+
Defined in: [lib/task.ts:1364](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1364)
|
|
28751
28795
|
|
|
28752
28796
|
暂停一小段时间
|
|
28753
28797
|
|
|
@@ -28850,7 +28894,7 @@ lib/task/interfaces/ICreateTimerOptions.md
|
|
|
28850
28894
|
|
|
28851
28895
|
# Interface: ICreateTimerOptions
|
|
28852
28896
|
|
|
28853
|
-
Defined in: [lib/task.ts:
|
|
28897
|
+
Defined in: [lib/task.ts:1810](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1810)
|
|
28854
28898
|
|
|
28855
28899
|
## Properties
|
|
28856
28900
|
|
|
@@ -28858,7 +28902,7 @@ Defined in: [lib/task.ts:1772](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28858
28902
|
|
|
28859
28903
|
> `optional` **count?**: `number`
|
|
28860
28904
|
|
|
28861
|
-
Defined in: [lib/task.ts:
|
|
28905
|
+
Defined in: [lib/task.ts:1814](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1814)
|
|
28862
28906
|
|
|
28863
28907
|
***
|
|
28864
28908
|
|
|
@@ -28866,7 +28910,7 @@ Defined in: [lib/task.ts:1776](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28866
28910
|
|
|
28867
28911
|
> `optional` **formId?**: `string`
|
|
28868
28912
|
|
|
28869
|
-
Defined in: [lib/task.ts:
|
|
28913
|
+
Defined in: [lib/task.ts:1811](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1811)
|
|
28870
28914
|
|
|
28871
28915
|
***
|
|
28872
28916
|
|
|
@@ -28874,7 +28918,7 @@ Defined in: [lib/task.ts:1773](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28874
28918
|
|
|
28875
28919
|
> `optional` **immediate?**: `boolean`
|
|
28876
28920
|
|
|
28877
|
-
Defined in: [lib/task.ts:
|
|
28921
|
+
Defined in: [lib/task.ts:1813](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1813)
|
|
28878
28922
|
|
|
28879
28923
|
lib/task/interfaces/IRuntime.md
|
|
28880
28924
|
---
|
|
@@ -28887,7 +28931,7 @@ lib/task/interfaces/IRuntime.md
|
|
|
28887
28931
|
|
|
28888
28932
|
# Interface: IRuntime
|
|
28889
28933
|
|
|
28890
|
-
Defined in: [lib/task.ts:
|
|
28934
|
+
Defined in: [lib/task.ts:1775](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1775)
|
|
28891
28935
|
|
|
28892
28936
|
## Properties
|
|
28893
28937
|
|
|
@@ -28895,7 +28939,7 @@ Defined in: [lib/task.ts:1737](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28895
28939
|
|
|
28896
28940
|
> **dialogCreating**: `number`
|
|
28897
28941
|
|
|
28898
|
-
Defined in: [lib/task.ts:
|
|
28942
|
+
Defined in: [lib/task.ts:1778](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1778)
|
|
28899
28943
|
|
|
28900
28944
|
正在异步创建 dialog 的数量,用于防止快速重复调用产生多个 dialog
|
|
28901
28945
|
|
|
@@ -28905,7 +28949,7 @@ Defined in: [lib/task.ts:1740](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28905
28949
|
|
|
28906
28950
|
> **dialogFormIds**: `string`[]
|
|
28907
28951
|
|
|
28908
|
-
Defined in: [lib/task.ts:
|
|
28952
|
+
Defined in: [lib/task.ts:1776](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1776)
|
|
28909
28953
|
|
|
28910
28954
|
***
|
|
28911
28955
|
|
|
@@ -28913,7 +28957,7 @@ Defined in: [lib/task.ts:1738](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28913
28957
|
|
|
28914
28958
|
> **index**: `number`
|
|
28915
28959
|
|
|
28916
|
-
Defined in: [lib/task.ts:
|
|
28960
|
+
Defined in: [lib/task.ts:1780](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1780)
|
|
28917
28961
|
|
|
28918
28962
|
***
|
|
28919
28963
|
|
|
@@ -28921,7 +28965,7 @@ Defined in: [lib/task.ts:1742](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28921
28965
|
|
|
28922
28966
|
> **permissions**: `string`[]
|
|
28923
28967
|
|
|
28924
|
-
Defined in: [lib/task.ts:
|
|
28968
|
+
Defined in: [lib/task.ts:1779](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1779)
|
|
28925
28969
|
|
|
28926
28970
|
lib/task/interfaces/ISystemTaskInfo.md
|
|
28927
28971
|
---
|
|
@@ -28934,7 +28978,7 @@ lib/task/interfaces/ISystemTaskInfo.md
|
|
|
28934
28978
|
|
|
28935
28979
|
# Interface: ISystemTaskInfo
|
|
28936
28980
|
|
|
28937
|
-
Defined in: [lib/task.ts:
|
|
28981
|
+
Defined in: [lib/task.ts:1784](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1784)
|
|
28938
28982
|
|
|
28939
28983
|
系统任务信息
|
|
28940
28984
|
|
|
@@ -28944,7 +28988,7 @@ Defined in: [lib/task.ts:1746](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28944
28988
|
|
|
28945
28989
|
> **formId**: `string`
|
|
28946
28990
|
|
|
28947
|
-
Defined in: [lib/task.ts:
|
|
28991
|
+
Defined in: [lib/task.ts:1786](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1786)
|
|
28948
28992
|
|
|
28949
28993
|
***
|
|
28950
28994
|
|
|
@@ -28952,7 +28996,7 @@ Defined in: [lib/task.ts:1748](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28952
28996
|
|
|
28953
28997
|
> **length**: `number`
|
|
28954
28998
|
|
|
28955
|
-
Defined in: [lib/task.ts:
|
|
28999
|
+
Defined in: [lib/task.ts:1787](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1787)
|
|
28956
29000
|
|
|
28957
29001
|
***
|
|
28958
29002
|
|
|
@@ -28960,7 +29004,7 @@ Defined in: [lib/task.ts:1749](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28960
29004
|
|
|
28961
29005
|
> **taskId**: `string`
|
|
28962
29006
|
|
|
28963
|
-
Defined in: [lib/task.ts:
|
|
29007
|
+
Defined in: [lib/task.ts:1785](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1785)
|
|
28964
29008
|
|
|
28965
29009
|
lib/task/interfaces/ITaskInfo.md
|
|
28966
29010
|
---
|
|
@@ -28973,7 +29017,7 @@ lib/task/interfaces/ITaskInfo.md
|
|
|
28973
29017
|
|
|
28974
29018
|
# Interface: ITaskInfo
|
|
28975
29019
|
|
|
28976
|
-
Defined in: [lib/task.ts:
|
|
29020
|
+
Defined in: [lib/task.ts:1818](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1818)
|
|
28977
29021
|
|
|
28978
29022
|
Task 的简略情况,通常在 list 当中
|
|
28979
29023
|
|
|
@@ -28983,7 +29027,7 @@ Task 的简略情况,通常在 list 当中
|
|
|
28983
29027
|
|
|
28984
29028
|
> **current**: `string`
|
|
28985
29029
|
|
|
28986
|
-
Defined in: [lib/task.ts:
|
|
29030
|
+
Defined in: [lib/task.ts:1827](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1827)
|
|
28987
29031
|
|
|
28988
29032
|
***
|
|
28989
29033
|
|
|
@@ -28991,7 +29035,7 @@ Defined in: [lib/task.ts:1789](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28991
29035
|
|
|
28992
29036
|
> **customTheme**: `boolean`
|
|
28993
29037
|
|
|
28994
|
-
Defined in: [lib/task.ts:
|
|
29038
|
+
Defined in: [lib/task.ts:1823](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1823)
|
|
28995
29039
|
|
|
28996
29040
|
***
|
|
28997
29041
|
|
|
@@ -28999,7 +29043,7 @@ Defined in: [lib/task.ts:1785](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28999
29043
|
|
|
29000
29044
|
> **formCount**: `number`
|
|
29001
29045
|
|
|
29002
|
-
Defined in: [lib/task.ts:
|
|
29046
|
+
Defined in: [lib/task.ts:1824](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1824)
|
|
29003
29047
|
|
|
29004
29048
|
***
|
|
29005
29049
|
|
|
@@ -29007,7 +29051,7 @@ Defined in: [lib/task.ts:1786](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29007
29051
|
|
|
29008
29052
|
> **icon**: `string`
|
|
29009
29053
|
|
|
29010
|
-
Defined in: [lib/task.ts:
|
|
29054
|
+
Defined in: [lib/task.ts:1825](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1825)
|
|
29011
29055
|
|
|
29012
29056
|
***
|
|
29013
29057
|
|
|
@@ -29015,7 +29059,7 @@ Defined in: [lib/task.ts:1787](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29015
29059
|
|
|
29016
29060
|
> **id**: `string`
|
|
29017
29061
|
|
|
29018
|
-
Defined in: [lib/task.ts:
|
|
29062
|
+
Defined in: [lib/task.ts:1820](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1820)
|
|
29019
29063
|
|
|
29020
29064
|
任务 ID
|
|
29021
29065
|
|
|
@@ -29025,7 +29069,7 @@ Defined in: [lib/task.ts:1782](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29025
29069
|
|
|
29026
29070
|
> **locale**: `string`
|
|
29027
29071
|
|
|
29028
|
-
Defined in: [lib/task.ts:
|
|
29072
|
+
Defined in: [lib/task.ts:1822](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1822)
|
|
29029
29073
|
|
|
29030
29074
|
***
|
|
29031
29075
|
|
|
@@ -29033,7 +29077,7 @@ Defined in: [lib/task.ts:1784](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29033
29077
|
|
|
29034
29078
|
> **name**: `string`
|
|
29035
29079
|
|
|
29036
|
-
Defined in: [lib/task.ts:
|
|
29080
|
+
Defined in: [lib/task.ts:1821](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1821)
|
|
29037
29081
|
|
|
29038
29082
|
***
|
|
29039
29083
|
|
|
@@ -29041,7 +29085,7 @@ Defined in: [lib/task.ts:1783](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29041
29085
|
|
|
29042
29086
|
> **path**: `string`
|
|
29043
29087
|
|
|
29044
|
-
Defined in: [lib/task.ts:
|
|
29088
|
+
Defined in: [lib/task.ts:1826](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1826)
|
|
29045
29089
|
|
|
29046
29090
|
lib/task/interfaces/ITask.md
|
|
29047
29091
|
---
|
|
@@ -29054,7 +29098,7 @@ lib/task/interfaces/ITask.md
|
|
|
29054
29098
|
|
|
29055
29099
|
# Interface: ITask
|
|
29056
29100
|
|
|
29057
|
-
Defined in: [lib/task.ts:
|
|
29101
|
+
Defined in: [lib/task.ts:1738](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1738)
|
|
29058
29102
|
|
|
29059
29103
|
运行中的任务对象
|
|
29060
29104
|
|
|
@@ -29064,7 +29108,7 @@ Defined in: [lib/task.ts:1700](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29064
29108
|
|
|
29065
29109
|
> **app**: [`IApp`](../../core/interfaces/IApp.md)
|
|
29066
29110
|
|
|
29067
|
-
Defined in: [lib/task.ts:
|
|
29111
|
+
Defined in: [lib/task.ts:1740](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1740)
|
|
29068
29112
|
|
|
29069
29113
|
***
|
|
29070
29114
|
|
|
@@ -29072,7 +29116,7 @@ Defined in: [lib/task.ts:1702](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29072
29116
|
|
|
29073
29117
|
> **class**: [`AbstractApp`](../../core/classes/AbstractApp.md)
|
|
29074
29118
|
|
|
29075
|
-
Defined in: [lib/task.ts:
|
|
29119
|
+
Defined in: [lib/task.ts:1741](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1741)
|
|
29076
29120
|
|
|
29077
29121
|
***
|
|
29078
29122
|
|
|
@@ -29080,7 +29124,7 @@ Defined in: [lib/task.ts:1703](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29080
29124
|
|
|
29081
29125
|
> **controls**: `Record`\<`string`, \{ `access`: `Record`\<`string`, `any`\>; `computed`: `Record`\<`string`, `any`\>; `config`: [`IControlConfig`](../../control/interfaces/IControlConfig.md); `data`: `Record`\<`string`, `any`\>; `emits`: `Record`\<`string`, `any`\>; `files`: `Record`\<`string`, `Blob` \| `string`\>; `layout`: `string`; `methods`: `Record`\<`string`, `any`\>; `props`: `Record`\<`string`, `any`\>; \}\>
|
|
29082
29126
|
|
|
29083
|
-
Defined in: [lib/task.ts:
|
|
29127
|
+
Defined in: [lib/task.ts:1755](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1755)
|
|
29084
29128
|
|
|
29085
29129
|
已解析的控件处理后的对象,任务启动时解析,窗体创建时部分复用
|
|
29086
29130
|
|
|
@@ -29090,7 +29134,7 @@ Defined in: [lib/task.ts:1717](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29090
29134
|
|
|
29091
29135
|
> **current**: `string`
|
|
29092
29136
|
|
|
29093
|
-
Defined in: [lib/task.ts:
|
|
29137
|
+
Defined in: [lib/task.ts:1750](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1750)
|
|
29094
29138
|
|
|
29095
29139
|
当前 app 运行路径,末尾不含 /
|
|
29096
29140
|
|
|
@@ -29100,7 +29144,7 @@ Defined in: [lib/task.ts:1712](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29100
29144
|
|
|
29101
29145
|
> **customTheme**: `boolean`
|
|
29102
29146
|
|
|
29103
|
-
Defined in: [lib/task.ts:
|
|
29147
|
+
Defined in: [lib/task.ts:1742](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1742)
|
|
29104
29148
|
|
|
29105
29149
|
***
|
|
29106
29150
|
|
|
@@ -29108,7 +29152,7 @@ Defined in: [lib/task.ts:1704](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29108
29152
|
|
|
29109
29153
|
> **forms**: `Record`\<`string`, [`IForm`](../../form/interfaces/IForm.md)\>
|
|
29110
29154
|
|
|
29111
|
-
Defined in: [lib/task.ts:
|
|
29155
|
+
Defined in: [lib/task.ts:1753](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1753)
|
|
29112
29156
|
|
|
29113
29157
|
窗体对象列表
|
|
29114
29158
|
|
|
@@ -29118,7 +29162,7 @@ Defined in: [lib/task.ts:1715](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29118
29162
|
|
|
29119
29163
|
> **id**: `string`
|
|
29120
29164
|
|
|
29121
|
-
Defined in: [lib/task.ts:
|
|
29165
|
+
Defined in: [lib/task.ts:1739](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1739)
|
|
29122
29166
|
|
|
29123
29167
|
***
|
|
29124
29168
|
|
|
@@ -29126,7 +29170,7 @@ Defined in: [lib/task.ts:1701](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29126
29170
|
|
|
29127
29171
|
> **locale**: `object`
|
|
29128
29172
|
|
|
29129
|
-
Defined in: [lib/task.ts:
|
|
29173
|
+
Defined in: [lib/task.ts:1743](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1743)
|
|
29130
29174
|
|
|
29131
29175
|
#### data
|
|
29132
29176
|
|
|
@@ -29142,7 +29186,7 @@ Defined in: [lib/task.ts:1705](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29142
29186
|
|
|
29143
29187
|
> **path**: `string`
|
|
29144
29188
|
|
|
29145
|
-
Defined in: [lib/task.ts:
|
|
29189
|
+
Defined in: [lib/task.ts:1748](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1748)
|
|
29146
29190
|
|
|
29147
29191
|
当前 app 自己的完整路径,如 /x/xx.cga,或 /x/x,末尾不含 /
|
|
29148
29192
|
|
|
@@ -29152,7 +29196,7 @@ Defined in: [lib/task.ts:1710](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29152
29196
|
|
|
29153
29197
|
> **threads**: `Record`\<`string`, [`IThread`](IThread.md)\>
|
|
29154
29198
|
|
|
29155
|
-
Defined in: [lib/task.ts:
|
|
29199
|
+
Defined in: [lib/task.ts:1772](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1772)
|
|
29156
29200
|
|
|
29157
29201
|
文件名 -> thread 控制对象
|
|
29158
29202
|
|
|
@@ -29162,7 +29206,7 @@ Defined in: [lib/task.ts:1734](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29162
29206
|
|
|
29163
29207
|
> **timers**: `Record`\<`string`, `string`\>
|
|
29164
29208
|
|
|
29165
|
-
Defined in: [lib/task.ts:
|
|
29209
|
+
Defined in: [lib/task.ts:1770](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1770)
|
|
29166
29210
|
|
|
29167
29211
|
任务中的 timer 列表
|
|
29168
29212
|
|
|
@@ -29177,7 +29221,7 @@ lib/task/interfaces/ITaskRunOptions.md
|
|
|
29177
29221
|
|
|
29178
29222
|
# Interface: ITaskRunOptions
|
|
29179
29223
|
|
|
29180
|
-
Defined in: [lib/task.ts:
|
|
29224
|
+
Defined in: [lib/task.ts:1790](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1790)
|
|
29181
29225
|
|
|
29182
29226
|
## Properties
|
|
29183
29227
|
|
|
@@ -29185,7 +29229,7 @@ Defined in: [lib/task.ts:1752](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29185
29229
|
|
|
29186
29230
|
> `optional` **after?**: `string`
|
|
29187
29231
|
|
|
29188
|
-
Defined in: [lib/task.ts:
|
|
29232
|
+
Defined in: [lib/task.ts:1803](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1803)
|
|
29189
29233
|
|
|
29190
29234
|
如果是网络加载 cga,则网址后面会附带,如 ?123
|
|
29191
29235
|
|
|
@@ -29195,7 +29239,7 @@ Defined in: [lib/task.ts:1765](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29195
29239
|
|
|
29196
29240
|
> `optional` **data?**: `Record`\<`string`, `any`\>
|
|
29197
29241
|
|
|
29198
|
-
Defined in: [lib/task.ts:
|
|
29242
|
+
Defined in: [lib/task.ts:1805](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1805)
|
|
29199
29243
|
|
|
29200
29244
|
给 task 传值
|
|
29201
29245
|
|
|
@@ -29205,7 +29249,7 @@ Defined in: [lib/task.ts:1767](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29205
29249
|
|
|
29206
29250
|
> `optional` **icon?**: `string`
|
|
29207
29251
|
|
|
29208
|
-
Defined in: [lib/task.ts:
|
|
29252
|
+
Defined in: [lib/task.ts:1791](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1791)
|
|
29209
29253
|
|
|
29210
29254
|
***
|
|
29211
29255
|
|
|
@@ -29213,7 +29257,7 @@ Defined in: [lib/task.ts:1753](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29213
29257
|
|
|
29214
29258
|
> `optional` **initProgress?**: (`loaded`, `total`, `type`, `msg`) => `void` \| `Promise`\<`void`\>
|
|
29215
29259
|
|
|
29216
|
-
Defined in: [lib/task.ts:
|
|
29260
|
+
Defined in: [lib/task.ts:1793](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1793)
|
|
29217
29261
|
|
|
29218
29262
|
初始化进度回调
|
|
29219
29263
|
|
|
@@ -29245,7 +29289,7 @@ Defined in: [lib/task.ts:1755](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29245
29289
|
|
|
29246
29290
|
> `optional` **notify?**: `boolean`
|
|
29247
29291
|
|
|
29248
|
-
Defined in: [lib/task.ts:
|
|
29292
|
+
Defined in: [lib/task.ts:1799](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1799)
|
|
29249
29293
|
|
|
29250
29294
|
显示 notify 窗口
|
|
29251
29295
|
|
|
@@ -29255,7 +29299,7 @@ Defined in: [lib/task.ts:1761](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29255
29299
|
|
|
29256
29300
|
> `optional` **path?**: `string`
|
|
29257
29301
|
|
|
29258
|
-
Defined in: [lib/task.ts:
|
|
29302
|
+
Defined in: [lib/task.ts:1807](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1807)
|
|
29259
29303
|
|
|
29260
29304
|
执行文件的基路径,一般在传入 APP 包时使用,以 .cga 结尾
|
|
29261
29305
|
|
|
@@ -29265,7 +29309,7 @@ Defined in: [lib/task.ts:1769](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29265
29309
|
|
|
29266
29310
|
> `optional` **permissions?**: `string`[]
|
|
29267
29311
|
|
|
29268
|
-
Defined in: [lib/task.ts:
|
|
29312
|
+
Defined in: [lib/task.ts:1801](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1801)
|
|
29269
29313
|
|
|
29270
29314
|
直接赋予此任务相应权限,有 "root" 权限的应用才能设置
|
|
29271
29315
|
|
|
@@ -29275,7 +29319,7 @@ Defined in: [lib/task.ts:1763](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29275
29319
|
|
|
29276
29320
|
> `optional` **perProgress?**: (`per`) => `void` \| `Promise`\<`void`\>
|
|
29277
29321
|
|
|
29278
|
-
Defined in: [lib/task.ts:
|
|
29322
|
+
Defined in: [lib/task.ts:1797](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1797)
|
|
29279
29323
|
|
|
29280
29324
|
返回总加载进度百分比(0 - 1)
|
|
29281
29325
|
|
|
@@ -29295,7 +29339,7 @@ Defined in: [lib/task.ts:1759](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29295
29339
|
|
|
29296
29340
|
> `optional` **progress?**: (`loaded`, `total`, `type`, `path`) => `void` \| `Promise`\<`void`\>
|
|
29297
29341
|
|
|
29298
|
-
Defined in: [lib/task.ts:
|
|
29342
|
+
Defined in: [lib/task.ts:1795](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1795)
|
|
29299
29343
|
|
|
29300
29344
|
加载进度回调(根据 type 分为不同阶段)
|
|
29301
29345
|
|
|
@@ -29332,7 +29376,7 @@ lib/task/interfaces/IThread.md
|
|
|
29332
29376
|
|
|
29333
29377
|
# Interface: IThread
|
|
29334
29378
|
|
|
29335
|
-
Defined in: [lib/task.ts:
|
|
29379
|
+
Defined in: [lib/task.ts:1726](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1726)
|
|
29336
29380
|
|
|
29337
29381
|
## Properties
|
|
29338
29382
|
|
|
@@ -29340,7 +29384,7 @@ Defined in: [lib/task.ts:1688](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29340
29384
|
|
|
29341
29385
|
> **end**: () => `Promise`\<`void`\>
|
|
29342
29386
|
|
|
29343
|
-
Defined in: [lib/task.ts:
|
|
29387
|
+
Defined in: [lib/task.ts:1734](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1734)
|
|
29344
29388
|
|
|
29345
29389
|
结束线程
|
|
29346
29390
|
|
|
@@ -29354,7 +29398,7 @@ Defined in: [lib/task.ts:1696](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29354
29398
|
|
|
29355
29399
|
> **off**: (`name`, `handler`) => `void`
|
|
29356
29400
|
|
|
29357
|
-
Defined in: [lib/task.ts:
|
|
29401
|
+
Defined in: [lib/task.ts:1730](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1730)
|
|
29358
29402
|
|
|
29359
29403
|
移除事件
|
|
29360
29404
|
|
|
@@ -29378,7 +29422,7 @@ Defined in: [lib/task.ts:1692](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29378
29422
|
|
|
29379
29423
|
> **on**: (`name`, `handler`) => `void`
|
|
29380
29424
|
|
|
29381
|
-
Defined in: [lib/task.ts:
|
|
29425
|
+
Defined in: [lib/task.ts:1728](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1728)
|
|
29382
29426
|
|
|
29383
29427
|
绑定事件
|
|
29384
29428
|
|
|
@@ -29402,7 +29446,7 @@ Defined in: [lib/task.ts:1690](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29402
29446
|
|
|
29403
29447
|
> **send**: (`data`) => `void`
|
|
29404
29448
|
|
|
29405
|
-
Defined in: [lib/task.ts:
|
|
29449
|
+
Defined in: [lib/task.ts:1732](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1732)
|
|
29406
29450
|
|
|
29407
29451
|
发送数据
|
|
29408
29452
|
|
|
@@ -29429,7 +29473,7 @@ lib/task/variables/systemTaskInfo.md
|
|
|
29429
29473
|
|
|
29430
29474
|
> **systemTaskInfo**: [`ISystemTaskInfo`](../interfaces/ISystemTaskInfo.md)
|
|
29431
29475
|
|
|
29432
|
-
Defined in: [lib/task.ts:
|
|
29476
|
+
Defined in: [lib/task.ts:1378](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1378)
|
|
29433
29477
|
|
|
29434
29478
|
task 的信息
|
|
29435
29479
|
|