clickgo 6.1.0 → 6.1.2
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/index.js +1 -1
- package/doc/clickgo-rag.md +402 -295
- package/package.json +1 -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,6 +7834,61 @@ number 类型下增减按钮、键盘上下键及拖拽调值的步长,必须
|
|
|
7820
7834
|
<title type="primary">Main Title</title>
|
|
7821
7835
|
```
|
|
7822
7836
|
|
|
7837
|
+
## toolbar
|
|
7838
|
+
---
|
|
7839
|
+
|
|
7840
|
+
桌面软件命令工具栏。默认保持单行显示,空间不足时允许横向滚动;需要固定显示的命令或“更多”菜单可放入右侧插槽。
|
|
7841
|
+
|
|
7842
|
+
### 参数
|
|
7843
|
+
|
|
7844
|
+
#### border
|
|
7845
|
+
|
|
7846
|
+
`boolean` | `string`
|
|
7847
|
+
|
|
7848
|
+
是否显示工具栏底部分隔线,默认 `true`。
|
|
7849
|
+
|
|
7850
|
+
#### plain
|
|
7851
|
+
|
|
7852
|
+
`boolean` | `string`
|
|
7853
|
+
|
|
7854
|
+
是否使用透明背景,默认 `false`。
|
|
7855
|
+
|
|
7856
|
+
#### scroll
|
|
7857
|
+
|
|
7858
|
+
`boolean` | `string`
|
|
7859
|
+
|
|
7860
|
+
内容超出时是否允许横向滚动,默认 `true`。鼠标滚轮和触摸拖动均可操作;存在未显示内容时,对应边缘会显示渐变提示。
|
|
7861
|
+
|
|
7862
|
+
### 插槽
|
|
7863
|
+
|
|
7864
|
+
#### default
|
|
7865
|
+
|
|
7866
|
+
工具栏主要命令。
|
|
7867
|
+
|
|
7868
|
+
#### right
|
|
7869
|
+
|
|
7870
|
+
始终固定在工具栏右侧的命令。可在这里放置带 `pop` 插槽的按钮,将低优先级命令保留为 ClickGo 菜单。
|
|
7871
|
+
|
|
7872
|
+
### 示例
|
|
7873
|
+
|
|
7874
|
+
```xml
|
|
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>
|
|
7889
|
+
```
|
|
7890
|
+
|
|
7891
|
+
|
|
7823
7892
|
## tuieditor
|
|
7824
7893
|
---
|
|
7825
7894
|
|
|
@@ -9346,7 +9415,7 @@ clickgo/functions/launcher.md
|
|
|
9346
9415
|
|
|
9347
9416
|
> **launcher**(`boot`): `Promise`\<`void`\>
|
|
9348
9417
|
|
|
9349
|
-
Defined in: [clickgo.ts:
|
|
9418
|
+
Defined in: [clickgo.ts:415](https://github.com/maiyun/clickgo/blob/master/dist/clickgo.ts#L415)
|
|
9350
9419
|
|
|
9351
9420
|
启动 ClickGo
|
|
9352
9421
|
|
|
@@ -9362,6 +9431,43 @@ Defined in: [clickgo.ts:407](https://github.com/maiyun/clickgo/blob/master/dist/
|
|
|
9362
9431
|
|
|
9363
9432
|
`Promise`\<`void`\>
|
|
9364
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
|
+
|
|
9365
9471
|
clickgo/index.md
|
|
9366
9472
|
---
|
|
9367
9473
|
|
|
@@ -9392,6 +9498,7 @@ clickgo/index.md
|
|
|
9392
9498
|
- [hasFrame](functions/hasFrame.md)
|
|
9393
9499
|
- [isNative](functions/isNative.md)
|
|
9394
9500
|
- [launcher](functions/launcher.md)
|
|
9501
|
+
- [showBrowserWarning](functions/showBrowserWarning.md)
|
|
9395
9502
|
|
|
9396
9503
|
## References
|
|
9397
9504
|
|
|
@@ -14903,7 +15010,7 @@ lib/core/functions/checkModule.md
|
|
|
14903
15010
|
|
|
14904
15011
|
> **checkModule**(`name`): `boolean`
|
|
14905
15012
|
|
|
14906
|
-
Defined in: [lib/core.ts:
|
|
15013
|
+
Defined in: [lib/core.ts:1350](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1350)
|
|
14907
15014
|
|
|
14908
15015
|
检查特殊模块是否注册
|
|
14909
15016
|
|
|
@@ -15065,7 +15172,7 @@ lib/core/functions/getModule.md
|
|
|
15065
15172
|
|
|
15066
15173
|
> **getModule**(`name`): `Promise`\<[`ITumsPlayer`](../interfaces/ITumsPlayer.md) \| `null`\>
|
|
15067
15174
|
|
|
15068
|
-
Defined in: [lib/core.ts:
|
|
15175
|
+
Defined in: [lib/core.ts:1354](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1354)
|
|
15069
15176
|
|
|
15070
15177
|
### Parameters
|
|
15071
15178
|
|
|
@@ -15081,7 +15188,7 @@ Defined in: [lib/core.ts:1367](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15081
15188
|
|
|
15082
15189
|
> **getModule**(`name`): `Promise`\<\{ \} \| `null`\>
|
|
15083
15190
|
|
|
15084
|
-
Defined in: [lib/core.ts:
|
|
15191
|
+
Defined in: [lib/core.ts:1355](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1355)
|
|
15085
15192
|
|
|
15086
15193
|
### Parameters
|
|
15087
15194
|
|
|
@@ -15097,7 +15204,7 @@ Defined in: [lib/core.ts:1368](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15097
15204
|
|
|
15098
15205
|
> **getModule**(`name`): `Promise`\<`__module` \| `null`\>
|
|
15099
15206
|
|
|
15100
|
-
Defined in: [lib/core.ts:
|
|
15207
|
+
Defined in: [lib/core.ts:1356](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1356)
|
|
15101
15208
|
|
|
15102
15209
|
### Parameters
|
|
15103
15210
|
|
|
@@ -15113,7 +15220,7 @@ Defined in: [lib/core.ts:1369](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15113
15220
|
|
|
15114
15221
|
> **getModule**(`name`): `Promise`\<`any`\>
|
|
15115
15222
|
|
|
15116
|
-
Defined in: [lib/core.ts:
|
|
15223
|
+
Defined in: [lib/core.ts:1357](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1357)
|
|
15117
15224
|
|
|
15118
15225
|
### Parameters
|
|
15119
15226
|
|
|
@@ -15173,7 +15280,7 @@ lib/core/functions/init.md
|
|
|
15173
15280
|
|
|
15174
15281
|
> **init**(): `void`
|
|
15175
15282
|
|
|
15176
|
-
Defined in: [lib/core.ts:
|
|
15283
|
+
Defined in: [lib/core.ts:1419](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1419)
|
|
15177
15284
|
|
|
15178
15285
|
## Returns
|
|
15179
15286
|
|
|
@@ -15221,7 +15328,7 @@ lib/core/functions/loadModule.md
|
|
|
15221
15328
|
|
|
15222
15329
|
> **loadModule**(`name`): `Promise`\<`boolean`\>
|
|
15223
15330
|
|
|
15224
|
-
Defined in: [lib/core.ts:
|
|
15331
|
+
Defined in: [lib/core.ts:1374](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1374)
|
|
15225
15332
|
|
|
15226
15333
|
加载模块,返回 true / false
|
|
15227
15334
|
|
|
@@ -15343,7 +15450,7 @@ lib/core/functions/regModule.md
|
|
|
15343
15450
|
|
|
15344
15451
|
> **regModule**(`current`, `name`, `opt`): `Promise`\<`boolean`\>
|
|
15345
15452
|
|
|
15346
|
-
Defined in: [lib/core.ts:
|
|
15453
|
+
Defined in: [lib/core.ts:1321](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1321)
|
|
15347
15454
|
|
|
15348
15455
|
注册模块
|
|
15349
15456
|
|
|
@@ -15528,7 +15635,7 @@ lib/core/interfaces/IAppConfig.md
|
|
|
15528
15635
|
|
|
15529
15636
|
# Interface: IAppConfig
|
|
15530
15637
|
|
|
15531
|
-
Defined in: [lib/core.ts:
|
|
15638
|
+
Defined in: [lib/core.ts:1584](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1584)
|
|
15532
15639
|
|
|
15533
15640
|
应用文件包 config
|
|
15534
15641
|
|
|
@@ -15538,7 +15645,7 @@ Defined in: [lib/core.ts:1597](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15538
15645
|
|
|
15539
15646
|
> **author**: `string`
|
|
15540
15647
|
|
|
15541
|
-
Defined in: [lib/core.ts:
|
|
15648
|
+
Defined in: [lib/core.ts:1592](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1592)
|
|
15542
15649
|
|
|
15543
15650
|
作者
|
|
15544
15651
|
|
|
@@ -15548,7 +15655,7 @@ Defined in: [lib/core.ts:1605](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15548
15655
|
|
|
15549
15656
|
> **controls**: `string`[]
|
|
15550
15657
|
|
|
15551
|
-
Defined in: [lib/core.ts:
|
|
15658
|
+
Defined in: [lib/core.ts:1595](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1595)
|
|
15552
15659
|
|
|
15553
15660
|
将要加载的控件
|
|
15554
15661
|
|
|
@@ -15558,7 +15665,7 @@ Defined in: [lib/core.ts:1608](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15558
15665
|
|
|
15559
15666
|
> `optional` **files?**: `string`[]
|
|
15560
15667
|
|
|
15561
|
-
Defined in: [lib/core.ts:
|
|
15668
|
+
Defined in: [lib/core.ts:1608](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1608)
|
|
15562
15669
|
|
|
15563
15670
|
将要加载的非 js 文件列表,打包为 cga 模式下此配置可省略
|
|
15564
15671
|
|
|
@@ -15568,7 +15675,7 @@ Defined in: [lib/core.ts:1621](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15568
15675
|
|
|
15569
15676
|
> `optional` **icon?**: `string`
|
|
15570
15677
|
|
|
15571
|
-
Defined in: [lib/core.ts:
|
|
15678
|
+
Defined in: [lib/core.ts:1605](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1605)
|
|
15572
15679
|
|
|
15573
15680
|
图标路径,需包含扩展名
|
|
15574
15681
|
|
|
@@ -15578,7 +15685,7 @@ Defined in: [lib/core.ts:1618](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15578
15685
|
|
|
15579
15686
|
> `optional` **locales?**: `Record`\<`string`, `string`\>
|
|
15580
15687
|
|
|
15581
|
-
Defined in: [lib/core.ts:
|
|
15688
|
+
Defined in: [lib/core.ts:1601](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1601)
|
|
15582
15689
|
|
|
15583
15690
|
将自动加载的语言包,path: lang
|
|
15584
15691
|
|
|
@@ -15588,7 +15695,7 @@ Defined in: [lib/core.ts:1614](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15588
15695
|
|
|
15589
15696
|
> `optional` **modules?**: `string`[]
|
|
15590
15697
|
|
|
15591
|
-
Defined in: [lib/core.ts:
|
|
15698
|
+
Defined in: [lib/core.ts:1610](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1610)
|
|
15592
15699
|
|
|
15593
15700
|
要提前加载的库名
|
|
15594
15701
|
|
|
@@ -15598,7 +15705,7 @@ Defined in: [lib/core.ts:1623](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15598
15705
|
|
|
15599
15706
|
> **name**: `string`
|
|
15600
15707
|
|
|
15601
|
-
Defined in: [lib/core.ts:
|
|
15708
|
+
Defined in: [lib/core.ts:1586](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1586)
|
|
15602
15709
|
|
|
15603
15710
|
应用名
|
|
15604
15711
|
|
|
@@ -15608,7 +15715,7 @@ Defined in: [lib/core.ts:1599](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15608
15715
|
|
|
15609
15716
|
> `optional` **permissions?**: `string`[]
|
|
15610
15717
|
|
|
15611
|
-
Defined in: [lib/core.ts:
|
|
15718
|
+
Defined in: [lib/core.ts:1599](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1599)
|
|
15612
15719
|
|
|
15613
15720
|
将自动申请的权限
|
|
15614
15721
|
|
|
@@ -15618,7 +15725,7 @@ Defined in: [lib/core.ts:1612](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15618
15725
|
|
|
15619
15726
|
> `optional` **style?**: `string`
|
|
15620
15727
|
|
|
15621
|
-
Defined in: [lib/core.ts:
|
|
15728
|
+
Defined in: [lib/core.ts:1603](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1603)
|
|
15622
15729
|
|
|
15623
15730
|
全局样式,不带扩展名,系统会在末尾添加 .css
|
|
15624
15731
|
|
|
@@ -15628,7 +15735,7 @@ Defined in: [lib/core.ts:1616](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15628
15735
|
|
|
15629
15736
|
> `optional` **themes?**: `string`[]
|
|
15630
15737
|
|
|
15631
|
-
Defined in: [lib/core.ts:
|
|
15738
|
+
Defined in: [lib/core.ts:1597](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1597)
|
|
15632
15739
|
|
|
15633
15740
|
将自动加载的主题
|
|
15634
15741
|
|
|
@@ -15638,7 +15745,7 @@ Defined in: [lib/core.ts:1610](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15638
15745
|
|
|
15639
15746
|
> **ver**: `number`
|
|
15640
15747
|
|
|
15641
|
-
Defined in: [lib/core.ts:
|
|
15748
|
+
Defined in: [lib/core.ts:1588](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1588)
|
|
15642
15749
|
|
|
15643
15750
|
发行版本
|
|
15644
15751
|
|
|
@@ -15648,7 +15755,7 @@ Defined in: [lib/core.ts:1601](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15648
15755
|
|
|
15649
15756
|
> **version**: `string`
|
|
15650
15757
|
|
|
15651
|
-
Defined in: [lib/core.ts:
|
|
15758
|
+
Defined in: [lib/core.ts:1590](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1590)
|
|
15652
15759
|
|
|
15653
15760
|
发行版本字符串
|
|
15654
15761
|
|
|
@@ -15663,7 +15770,7 @@ lib/core/interfaces/IApp.md
|
|
|
15663
15770
|
|
|
15664
15771
|
# Interface: IApp
|
|
15665
15772
|
|
|
15666
|
-
Defined in: [lib/core.ts:
|
|
15773
|
+
Defined in: [lib/core.ts:1551](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1551)
|
|
15667
15774
|
|
|
15668
15775
|
应用包解包后对象
|
|
15669
15776
|
|
|
@@ -15673,7 +15780,7 @@ Defined in: [lib/core.ts:1564](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15673
15780
|
|
|
15674
15781
|
> **config**: [`IAppConfig`](IAppConfig.md)
|
|
15675
15782
|
|
|
15676
|
-
Defined in: [lib/core.ts:
|
|
15783
|
+
Defined in: [lib/core.ts:1554](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1554)
|
|
15677
15784
|
|
|
15678
15785
|
控件对象配置文件
|
|
15679
15786
|
|
|
@@ -15683,7 +15790,7 @@ Defined in: [lib/core.ts:1567](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15683
15790
|
|
|
15684
15791
|
> **icon**: `string`
|
|
15685
15792
|
|
|
15686
|
-
Defined in: [lib/core.ts:
|
|
15793
|
+
Defined in: [lib/core.ts:1556](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1556)
|
|
15687
15794
|
|
|
15688
15795
|
应用图标
|
|
15689
15796
|
|
|
@@ -15693,7 +15800,7 @@ Defined in: [lib/core.ts:1569](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15693
15800
|
|
|
15694
15801
|
> **package**: [`IAppPackage`](IAppPackage.md)
|
|
15695
15802
|
|
|
15696
|
-
Defined in: [lib/core.ts:
|
|
15803
|
+
Defined in: [lib/core.ts:1558](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1558)
|
|
15697
15804
|
|
|
15698
15805
|
新 CGA 的按需解密包读取器
|
|
15699
15806
|
|
|
@@ -15703,7 +15810,7 @@ Defined in: [lib/core.ts:1571](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15703
15810
|
|
|
15704
15811
|
> **type**: `"app"`
|
|
15705
15812
|
|
|
15706
|
-
Defined in: [lib/core.ts:
|
|
15813
|
+
Defined in: [lib/core.ts:1552](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1552)
|
|
15707
15814
|
|
|
15708
15815
|
lib/core/interfaces/IAppPackageEntry.md
|
|
15709
15816
|
---
|
|
@@ -15716,7 +15823,7 @@ lib/core/interfaces/IAppPackageEntry.md
|
|
|
15716
15823
|
|
|
15717
15824
|
# Interface: IAppPackageEntry
|
|
15718
15825
|
|
|
15719
|
-
Defined in: [lib/core.ts:
|
|
15826
|
+
Defined in: [lib/core.ts:1562](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1562)
|
|
15720
15827
|
|
|
15721
15828
|
CGA 包内项目
|
|
15722
15829
|
|
|
@@ -15726,7 +15833,7 @@ CGA 包内项目
|
|
|
15726
15833
|
|
|
15727
15834
|
> **isDirectory**: `boolean`
|
|
15728
15835
|
|
|
15729
|
-
Defined in: [lib/core.ts:
|
|
15836
|
+
Defined in: [lib/core.ts:1563](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1563)
|
|
15730
15837
|
|
|
15731
15838
|
***
|
|
15732
15839
|
|
|
@@ -15734,7 +15841,7 @@ Defined in: [lib/core.ts:1576](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15734
15841
|
|
|
15735
15842
|
> **isFile**: `boolean`
|
|
15736
15843
|
|
|
15737
|
-
Defined in: [lib/core.ts:
|
|
15844
|
+
Defined in: [lib/core.ts:1564](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1564)
|
|
15738
15845
|
|
|
15739
15846
|
***
|
|
15740
15847
|
|
|
@@ -15742,7 +15849,7 @@ Defined in: [lib/core.ts:1577](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15742
15849
|
|
|
15743
15850
|
> **name**: `string`
|
|
15744
15851
|
|
|
15745
|
-
Defined in: [lib/core.ts:
|
|
15852
|
+
Defined in: [lib/core.ts:1565](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1565)
|
|
15746
15853
|
|
|
15747
15854
|
lib/core/interfaces/IAppPackage.md
|
|
15748
15855
|
---
|
|
@@ -15755,7 +15862,7 @@ lib/core/interfaces/IAppPackage.md
|
|
|
15755
15862
|
|
|
15756
15863
|
# Interface: IAppPackage
|
|
15757
15864
|
|
|
15758
|
-
Defined in: [lib/core.ts:
|
|
15865
|
+
Defined in: [lib/core.ts:1576](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1576)
|
|
15759
15866
|
|
|
15760
15867
|
CGA 按需解密包读取器
|
|
15761
15868
|
|
|
@@ -15765,7 +15872,7 @@ CGA 按需解密包读取器
|
|
|
15765
15872
|
|
|
15766
15873
|
> **clear**(): `void`
|
|
15767
15874
|
|
|
15768
|
-
Defined in: [lib/core.ts:
|
|
15875
|
+
Defined in: [lib/core.ts:1580](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1580)
|
|
15769
15876
|
|
|
15770
15877
|
#### Returns
|
|
15771
15878
|
|
|
@@ -15777,7 +15884,7 @@ Defined in: [lib/core.ts:1593](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15777
15884
|
|
|
15778
15885
|
> **getContent**(`path`): `Promise`\<`string` \| `Blob` \| `null`\>
|
|
15779
15886
|
|
|
15780
|
-
Defined in: [lib/core.ts:
|
|
15887
|
+
Defined in: [lib/core.ts:1577](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1577)
|
|
15781
15888
|
|
|
15782
15889
|
#### Parameters
|
|
15783
15890
|
|
|
@@ -15795,7 +15902,7 @@ Defined in: [lib/core.ts:1590](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15795
15902
|
|
|
15796
15903
|
> **readDir**(`path`): [`IAppPackageEntry`](IAppPackageEntry.md)[]
|
|
15797
15904
|
|
|
15798
|
-
Defined in: [lib/core.ts:
|
|
15905
|
+
Defined in: [lib/core.ts:1579](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1579)
|
|
15799
15906
|
|
|
15800
15907
|
#### Parameters
|
|
15801
15908
|
|
|
@@ -15813,7 +15920,7 @@ Defined in: [lib/core.ts:1592](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15813
15920
|
|
|
15814
15921
|
> **stats**(`path`): [`IAppPackageStats`](IAppPackageStats.md) \| `null`
|
|
15815
15922
|
|
|
15816
|
-
Defined in: [lib/core.ts:
|
|
15923
|
+
Defined in: [lib/core.ts:1578](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1578)
|
|
15817
15924
|
|
|
15818
15925
|
#### Parameters
|
|
15819
15926
|
|
|
@@ -15836,7 +15943,7 @@ lib/core/interfaces/IAppPackageStats.md
|
|
|
15836
15943
|
|
|
15837
15944
|
# Interface: IAppPackageStats
|
|
15838
15945
|
|
|
15839
|
-
Defined in: [lib/core.ts:
|
|
15946
|
+
Defined in: [lib/core.ts:1569](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1569)
|
|
15840
15947
|
|
|
15841
15948
|
CGA 包内项目属性
|
|
15842
15949
|
|
|
@@ -15846,7 +15953,7 @@ CGA 包内项目属性
|
|
|
15846
15953
|
|
|
15847
15954
|
> **isDirectory**: `boolean`
|
|
15848
15955
|
|
|
15849
|
-
Defined in: [lib/core.ts:
|
|
15956
|
+
Defined in: [lib/core.ts:1570](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1570)
|
|
15850
15957
|
|
|
15851
15958
|
***
|
|
15852
15959
|
|
|
@@ -15854,7 +15961,7 @@ Defined in: [lib/core.ts:1583](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15854
15961
|
|
|
15855
15962
|
> **isFile**: `boolean`
|
|
15856
15963
|
|
|
15857
|
-
Defined in: [lib/core.ts:
|
|
15964
|
+
Defined in: [lib/core.ts:1571](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1571)
|
|
15858
15965
|
|
|
15859
15966
|
***
|
|
15860
15967
|
|
|
@@ -15862,7 +15969,7 @@ Defined in: [lib/core.ts:1584](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15862
15969
|
|
|
15863
15970
|
> **size**: `number`
|
|
15864
15971
|
|
|
15865
|
-
Defined in: [lib/core.ts:
|
|
15972
|
+
Defined in: [lib/core.ts:1572](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1572)
|
|
15866
15973
|
|
|
15867
15974
|
lib/core/interfaces/IAvailArea.md
|
|
15868
15975
|
---
|
|
@@ -15875,7 +15982,7 @@ lib/core/interfaces/IAvailArea.md
|
|
|
15875
15982
|
|
|
15876
15983
|
# Interface: IAvailArea
|
|
15877
15984
|
|
|
15878
|
-
Defined in: [lib/core.ts:
|
|
15985
|
+
Defined in: [lib/core.ts:1517](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1517)
|
|
15879
15986
|
|
|
15880
15987
|
屏幕可用区域
|
|
15881
15988
|
|
|
@@ -15885,7 +15992,7 @@ Defined in: [lib/core.ts:1530](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15885
15992
|
|
|
15886
15993
|
> **height**: `number`
|
|
15887
15994
|
|
|
15888
|
-
Defined in: [lib/core.ts:
|
|
15995
|
+
Defined in: [lib/core.ts:1521](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1521)
|
|
15889
15996
|
|
|
15890
15997
|
***
|
|
15891
15998
|
|
|
@@ -15893,7 +16000,7 @@ Defined in: [lib/core.ts:1534](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15893
16000
|
|
|
15894
16001
|
> **left**: `number`
|
|
15895
16002
|
|
|
15896
|
-
Defined in: [lib/core.ts:
|
|
16003
|
+
Defined in: [lib/core.ts:1518](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1518)
|
|
15897
16004
|
|
|
15898
16005
|
***
|
|
15899
16006
|
|
|
@@ -15901,7 +16008,7 @@ Defined in: [lib/core.ts:1531](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15901
16008
|
|
|
15902
16009
|
> **oheight**: `number`
|
|
15903
16010
|
|
|
15904
|
-
Defined in: [lib/core.ts:
|
|
16011
|
+
Defined in: [lib/core.ts:1523](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1523)
|
|
15905
16012
|
|
|
15906
16013
|
***
|
|
15907
16014
|
|
|
@@ -15909,7 +16016,7 @@ Defined in: [lib/core.ts:1536](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15909
16016
|
|
|
15910
16017
|
> **owidth**: `number`
|
|
15911
16018
|
|
|
15912
|
-
Defined in: [lib/core.ts:
|
|
16019
|
+
Defined in: [lib/core.ts:1522](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1522)
|
|
15913
16020
|
|
|
15914
16021
|
***
|
|
15915
16022
|
|
|
@@ -15917,7 +16024,7 @@ Defined in: [lib/core.ts:1535](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15917
16024
|
|
|
15918
16025
|
> **top**: `number`
|
|
15919
16026
|
|
|
15920
|
-
Defined in: [lib/core.ts:
|
|
16027
|
+
Defined in: [lib/core.ts:1519](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1519)
|
|
15921
16028
|
|
|
15922
16029
|
***
|
|
15923
16030
|
|
|
@@ -15925,7 +16032,7 @@ Defined in: [lib/core.ts:1532](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15925
16032
|
|
|
15926
16033
|
> **width**: `number`
|
|
15927
16034
|
|
|
15928
|
-
Defined in: [lib/core.ts:
|
|
16035
|
+
Defined in: [lib/core.ts:1520](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1520)
|
|
15929
16036
|
|
|
15930
16037
|
lib/core/interfaces/IConfigLauncherItem.md
|
|
15931
16038
|
---
|
|
@@ -15938,7 +16045,7 @@ lib/core/interfaces/IConfigLauncherItem.md
|
|
|
15938
16045
|
|
|
15939
16046
|
# Interface: IConfigLauncherItem
|
|
15940
16047
|
|
|
15941
|
-
Defined in: [lib/core.ts:
|
|
16048
|
+
Defined in: [lib/core.ts:1508](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1508)
|
|
15942
16049
|
|
|
15943
16050
|
Launcher 的 item 对象
|
|
15944
16051
|
|
|
@@ -15948,7 +16055,7 @@ Launcher 的 item 对象
|
|
|
15948
16055
|
|
|
15949
16056
|
> `optional` **icon?**: `string`
|
|
15950
16057
|
|
|
15951
|
-
Defined in: [lib/core.ts:
|
|
16058
|
+
Defined in: [lib/core.ts:1512](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1512)
|
|
15952
16059
|
|
|
15953
16060
|
***
|
|
15954
16061
|
|
|
@@ -15956,7 +16063,7 @@ Defined in: [lib/core.ts:1525](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15956
16063
|
|
|
15957
16064
|
> `optional` **id?**: `string`
|
|
15958
16065
|
|
|
15959
|
-
Defined in: [lib/core.ts:
|
|
16066
|
+
Defined in: [lib/core.ts:1509](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1509)
|
|
15960
16067
|
|
|
15961
16068
|
***
|
|
15962
16069
|
|
|
@@ -15964,7 +16071,7 @@ Defined in: [lib/core.ts:1522](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15964
16071
|
|
|
15965
16072
|
> `optional` **list?**: `object`[]
|
|
15966
16073
|
|
|
15967
|
-
Defined in: [lib/core.ts:
|
|
16074
|
+
Defined in: [lib/core.ts:1513](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1513)
|
|
15968
16075
|
|
|
15969
16076
|
#### icon
|
|
15970
16077
|
|
|
@@ -15988,7 +16095,7 @@ Defined in: [lib/core.ts:1526](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15988
16095
|
|
|
15989
16096
|
> **name**: `string`
|
|
15990
16097
|
|
|
15991
|
-
Defined in: [lib/core.ts:
|
|
16098
|
+
Defined in: [lib/core.ts:1510](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1510)
|
|
15992
16099
|
|
|
15993
16100
|
***
|
|
15994
16101
|
|
|
@@ -15996,7 +16103,7 @@ Defined in: [lib/core.ts:1523](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
15996
16103
|
|
|
15997
16104
|
> `optional` **path?**: `string`
|
|
15998
16105
|
|
|
15999
|
-
Defined in: [lib/core.ts:
|
|
16106
|
+
Defined in: [lib/core.ts:1511](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1511)
|
|
16000
16107
|
|
|
16001
16108
|
lib/core/interfaces/IConfig.md
|
|
16002
16109
|
---
|
|
@@ -16009,7 +16116,7 @@ lib/core/interfaces/IConfig.md
|
|
|
16009
16116
|
|
|
16010
16117
|
# Interface: IConfig
|
|
16011
16118
|
|
|
16012
|
-
Defined in: [lib/core.ts:
|
|
16119
|
+
Defined in: [lib/core.ts:1496](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1496)
|
|
16013
16120
|
|
|
16014
16121
|
Config 对象
|
|
16015
16122
|
|
|
@@ -16019,7 +16126,7 @@ Config 对象
|
|
|
16019
16126
|
|
|
16020
16127
|
> **desktop.icon.recycler**: `boolean`
|
|
16021
16128
|
|
|
16022
|
-
Defined in: [lib/core.ts:
|
|
16129
|
+
Defined in: [lib/core.ts:1501](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1501)
|
|
16023
16130
|
|
|
16024
16131
|
***
|
|
16025
16132
|
|
|
@@ -16027,7 +16134,7 @@ Defined in: [lib/core.ts:1514](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16027
16134
|
|
|
16028
16135
|
> **desktop.icon.storage**: `boolean`
|
|
16029
16136
|
|
|
16030
|
-
Defined in: [lib/core.ts:
|
|
16137
|
+
Defined in: [lib/core.ts:1500](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1500)
|
|
16031
16138
|
|
|
16032
16139
|
***
|
|
16033
16140
|
|
|
@@ -16035,7 +16142,7 @@ Defined in: [lib/core.ts:1513](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16035
16142
|
|
|
16036
16143
|
> **desktop.path**: `string` \| `null`
|
|
16037
16144
|
|
|
16038
|
-
Defined in: [lib/core.ts:
|
|
16145
|
+
Defined in: [lib/core.ts:1503](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1503)
|
|
16039
16146
|
|
|
16040
16147
|
***
|
|
16041
16148
|
|
|
@@ -16043,7 +16150,7 @@ Defined in: [lib/core.ts:1516](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16043
16150
|
|
|
16044
16151
|
> **desktop.wallpaper**: `string` \| `null`
|
|
16045
16152
|
|
|
16046
|
-
Defined in: [lib/core.ts:
|
|
16153
|
+
Defined in: [lib/core.ts:1502](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1502)
|
|
16047
16154
|
|
|
16048
16155
|
***
|
|
16049
16156
|
|
|
@@ -16051,7 +16158,7 @@ Defined in: [lib/core.ts:1515](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16051
16158
|
|
|
16052
16159
|
> **launcher.list**: [`IConfigLauncherItem`](IConfigLauncherItem.md)[]
|
|
16053
16160
|
|
|
16054
|
-
Defined in: [lib/core.ts:
|
|
16161
|
+
Defined in: [lib/core.ts:1504](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1504)
|
|
16055
16162
|
|
|
16056
16163
|
***
|
|
16057
16164
|
|
|
@@ -16059,7 +16166,7 @@ Defined in: [lib/core.ts:1517](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16059
16166
|
|
|
16060
16167
|
> **locale**: `string`
|
|
16061
16168
|
|
|
16062
|
-
Defined in: [lib/core.ts:
|
|
16169
|
+
Defined in: [lib/core.ts:1497](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1497)
|
|
16063
16170
|
|
|
16064
16171
|
***
|
|
16065
16172
|
|
|
@@ -16067,7 +16174,7 @@ Defined in: [lib/core.ts:1510](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16067
16174
|
|
|
16068
16175
|
> **task.pin**: `Record`\<`string`, \{ `icon`: `string`; `name`: `string`; \}\>
|
|
16069
16176
|
|
|
16070
|
-
Defined in: [lib/core.ts:
|
|
16177
|
+
Defined in: [lib/core.ts:1499](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1499)
|
|
16071
16178
|
|
|
16072
16179
|
***
|
|
16073
16180
|
|
|
@@ -16075,7 +16182,7 @@ Defined in: [lib/core.ts:1512](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16075
16182
|
|
|
16076
16183
|
> **task.position**: `"left"` \| `"top"` \| `"right"` \| `"bottom"`
|
|
16077
16184
|
|
|
16078
|
-
Defined in: [lib/core.ts:
|
|
16185
|
+
Defined in: [lib/core.ts:1498](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1498)
|
|
16079
16186
|
|
|
16080
16187
|
lib/core/interfaces/ICoreFetchAppOptions.md
|
|
16081
16188
|
---
|
|
@@ -16088,7 +16195,7 @@ lib/core/interfaces/ICoreFetchAppOptions.md
|
|
|
16088
16195
|
|
|
16089
16196
|
# Interface: ICoreFetchAppOptions
|
|
16090
16197
|
|
|
16091
|
-
Defined in: [lib/core.ts:
|
|
16198
|
+
Defined in: [lib/core.ts:1530](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1530)
|
|
16092
16199
|
|
|
16093
16200
|
现场下载 app 的参数
|
|
16094
16201
|
|
|
@@ -16098,7 +16205,7 @@ Defined in: [lib/core.ts:1543](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16098
16205
|
|
|
16099
16206
|
> `optional` **after?**: `string`
|
|
16100
16207
|
|
|
16101
|
-
Defined in: [lib/core.ts:
|
|
16208
|
+
Defined in: [lib/core.ts:1540](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1540)
|
|
16102
16209
|
|
|
16103
16210
|
网址后面附带的前缀,如 ?123
|
|
16104
16211
|
|
|
@@ -16108,7 +16215,7 @@ Defined in: [lib/core.ts:1553](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16108
16215
|
|
|
16109
16216
|
> `optional` **notify?**: `number` \| \{ `id?`: `number`; `loaded?`: `number`; `total?`: `number`; \}
|
|
16110
16217
|
|
|
16111
|
-
Defined in: [lib/core.ts:
|
|
16218
|
+
Defined in: [lib/core.ts:1531](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1531)
|
|
16112
16219
|
|
|
16113
16220
|
#### Union Members
|
|
16114
16221
|
|
|
@@ -16144,7 +16251,7 @@ notify id
|
|
|
16144
16251
|
|
|
16145
16252
|
> `optional` **progress?**: (`loaded`, `total`, `per`) => `void` \| `Promise`\<`void`\>
|
|
16146
16253
|
|
|
16147
|
-
Defined in: [lib/core.ts:
|
|
16254
|
+
Defined in: [lib/core.ts:1547](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1547)
|
|
16148
16255
|
|
|
16149
16256
|
下载进度
|
|
16150
16257
|
|
|
@@ -16183,7 +16290,7 @@ lib/core/interfaces/ITumsPlayer.md
|
|
|
16183
16290
|
|
|
16184
16291
|
# Interface: ITumsPlayer
|
|
16185
16292
|
|
|
16186
|
-
Defined in: [lib/core.ts:
|
|
16293
|
+
Defined in: [lib/core.ts:1696](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1696)
|
|
16187
16294
|
|
|
16188
16295
|
tums-player 模块对象
|
|
16189
16296
|
|
|
@@ -16193,7 +16300,7 @@ tums-player 模块对象
|
|
|
16193
16300
|
|
|
16194
16301
|
> **default**: `any`
|
|
16195
16302
|
|
|
16196
|
-
Defined in: [lib/core.ts:
|
|
16303
|
+
Defined in: [lib/core.ts:1697](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1697)
|
|
16197
16304
|
|
|
16198
16305
|
***
|
|
16199
16306
|
|
|
@@ -16201,7 +16308,7 @@ Defined in: [lib/core.ts:1710](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16201
16308
|
|
|
16202
16309
|
> **startTalk**: (`opt`) => `Promise`\<`void`\>
|
|
16203
16310
|
|
|
16204
|
-
Defined in: [lib/core.ts:
|
|
16311
|
+
Defined in: [lib/core.ts:1699](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1699)
|
|
16205
16312
|
|
|
16206
16313
|
开始对讲
|
|
16207
16314
|
|
|
@@ -16237,7 +16344,7 @@ half_duplex-半双工模式,vad-VAD 人声检测模式,aec-AEC 全双工模式
|
|
|
16237
16344
|
|
|
16238
16345
|
> **stopTalk**: () => `void`
|
|
16239
16346
|
|
|
16240
|
-
Defined in: [lib/core.ts:
|
|
16347
|
+
Defined in: [lib/core.ts:1707](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1707)
|
|
16241
16348
|
|
|
16242
16349
|
停止对讲
|
|
16243
16350
|
|
|
@@ -16256,7 +16363,7 @@ lib/core/interfaces/IVApp.md
|
|
|
16256
16363
|
|
|
16257
16364
|
# Interface: IVApp
|
|
16258
16365
|
|
|
16259
|
-
Defined in: [lib/core.ts:
|
|
16366
|
+
Defined in: [lib/core.ts:1676](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1676)
|
|
16260
16367
|
|
|
16261
16368
|
Vue 应用
|
|
16262
16369
|
|
|
@@ -16266,7 +16373,7 @@ Vue 应用
|
|
|
16266
16373
|
|
|
16267
16374
|
> **\_container**: `HTMLElement`
|
|
16268
16375
|
|
|
16269
|
-
Defined in: [lib/core.ts:
|
|
16376
|
+
Defined in: [lib/core.ts:1688](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1688)
|
|
16270
16377
|
|
|
16271
16378
|
***
|
|
16272
16379
|
|
|
@@ -16274,7 +16381,7 @@ Defined in: [lib/core.ts:1701](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16274
16381
|
|
|
16275
16382
|
> **config**: [`IVueConfig`](IVueConfig.md)
|
|
16276
16383
|
|
|
16277
|
-
Defined in: [lib/core.ts:
|
|
16384
|
+
Defined in: [lib/core.ts:1679](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1679)
|
|
16278
16385
|
|
|
16279
16386
|
***
|
|
16280
16387
|
|
|
@@ -16282,7 +16389,7 @@ Defined in: [lib/core.ts:1692](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16282
16389
|
|
|
16283
16390
|
> **version**: `string`
|
|
16284
16391
|
|
|
16285
|
-
Defined in: [lib/core.ts:
|
|
16392
|
+
Defined in: [lib/core.ts:1686](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1686)
|
|
16286
16393
|
|
|
16287
16394
|
## Methods
|
|
16288
16395
|
|
|
@@ -16292,7 +16399,7 @@ Defined in: [lib/core.ts:1699](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16292
16399
|
|
|
16293
16400
|
> **component**(`name`): `any`
|
|
16294
16401
|
|
|
16295
|
-
Defined in: [lib/core.ts:
|
|
16402
|
+
Defined in: [lib/core.ts:1677](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1677)
|
|
16296
16403
|
|
|
16297
16404
|
##### Parameters
|
|
16298
16405
|
|
|
@@ -16308,7 +16415,7 @@ Defined in: [lib/core.ts:1690](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16308
16415
|
|
|
16309
16416
|
> **component**(`name`, `config`): `this`
|
|
16310
16417
|
|
|
16311
|
-
Defined in: [lib/core.ts:
|
|
16418
|
+
Defined in: [lib/core.ts:1678](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1678)
|
|
16312
16419
|
|
|
16313
16420
|
##### Parameters
|
|
16314
16421
|
|
|
@@ -16332,7 +16439,7 @@ Defined in: [lib/core.ts:1691](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16332
16439
|
|
|
16333
16440
|
> **directive**(`name`): `any`
|
|
16334
16441
|
|
|
16335
|
-
Defined in: [lib/core.ts:
|
|
16442
|
+
Defined in: [lib/core.ts:1680](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1680)
|
|
16336
16443
|
|
|
16337
16444
|
##### Parameters
|
|
16338
16445
|
|
|
@@ -16348,7 +16455,7 @@ Defined in: [lib/core.ts:1693](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16348
16455
|
|
|
16349
16456
|
> **directive**(`name`, `config`): `this`
|
|
16350
16457
|
|
|
16351
|
-
Defined in: [lib/core.ts:
|
|
16458
|
+
Defined in: [lib/core.ts:1681](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1681)
|
|
16352
16459
|
|
|
16353
16460
|
##### Parameters
|
|
16354
16461
|
|
|
@@ -16370,7 +16477,7 @@ Defined in: [lib/core.ts:1694](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16370
16477
|
|
|
16371
16478
|
> **mixin**(`mixin`): `this`
|
|
16372
16479
|
|
|
16373
|
-
Defined in: [lib/core.ts:
|
|
16480
|
+
Defined in: [lib/core.ts:1682](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1682)
|
|
16374
16481
|
|
|
16375
16482
|
#### Parameters
|
|
16376
16483
|
|
|
@@ -16388,7 +16495,7 @@ Defined in: [lib/core.ts:1695](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16388
16495
|
|
|
16389
16496
|
> **mount**(`rootContainer`): [`IVue`](IVue.md)
|
|
16390
16497
|
|
|
16391
|
-
Defined in: [lib/core.ts:
|
|
16498
|
+
Defined in: [lib/core.ts:1683](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1683)
|
|
16392
16499
|
|
|
16393
16500
|
#### Parameters
|
|
16394
16501
|
|
|
@@ -16406,7 +16513,7 @@ Defined in: [lib/core.ts:1696](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16406
16513
|
|
|
16407
16514
|
> **provide**\<`T`\>(`key`, `value`): `this`
|
|
16408
16515
|
|
|
16409
|
-
Defined in: [lib/core.ts:
|
|
16516
|
+
Defined in: [lib/core.ts:1684](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1684)
|
|
16410
16517
|
|
|
16411
16518
|
#### Type Parameters
|
|
16412
16519
|
|
|
@@ -16434,7 +16541,7 @@ Defined in: [lib/core.ts:1697](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16434
16541
|
|
|
16435
16542
|
> **unmount**(): `void`
|
|
16436
16543
|
|
|
16437
|
-
Defined in: [lib/core.ts:
|
|
16544
|
+
Defined in: [lib/core.ts:1685](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1685)
|
|
16438
16545
|
|
|
16439
16546
|
#### Returns
|
|
16440
16547
|
|
|
@@ -16451,7 +16558,7 @@ lib/core/interfaces/IVNode.md
|
|
|
16451
16558
|
|
|
16452
16559
|
# Interface: IVNode
|
|
16453
16560
|
|
|
16454
|
-
Defined in: [lib/core.ts:
|
|
16561
|
+
Defined in: [lib/core.ts:1639](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1639)
|
|
16455
16562
|
|
|
16456
16563
|
Vue 节点
|
|
16457
16564
|
|
|
@@ -16465,7 +16572,7 @@ Vue 节点
|
|
|
16465
16572
|
|
|
16466
16573
|
> **children**: `object` & `IVNode`[]
|
|
16467
16574
|
|
|
16468
|
-
Defined in: [lib/core.ts:
|
|
16575
|
+
Defined in: [lib/core.ts:1640](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1640)
|
|
16469
16576
|
|
|
16470
16577
|
#### Type Declaration
|
|
16471
16578
|
|
|
@@ -16479,7 +16586,7 @@ Defined in: [lib/core.ts:1653](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16479
16586
|
|
|
16480
16587
|
> **props**: `Record`\<`string`, `any`\>
|
|
16481
16588
|
|
|
16482
|
-
Defined in: [lib/core.ts:
|
|
16589
|
+
Defined in: [lib/core.ts:1644](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1644)
|
|
16483
16590
|
|
|
16484
16591
|
***
|
|
16485
16592
|
|
|
@@ -16487,7 +16594,7 @@ Defined in: [lib/core.ts:1657](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16487
16594
|
|
|
16488
16595
|
> **type**: `symbol` \| `Record`\<`string`, `any`\>
|
|
16489
16596
|
|
|
16490
|
-
Defined in: [lib/core.ts:
|
|
16597
|
+
Defined in: [lib/core.ts:1645](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1645)
|
|
16491
16598
|
|
|
16492
16599
|
lib/core/interfaces/IVueConfig.md
|
|
16493
16600
|
---
|
|
@@ -16500,7 +16607,7 @@ lib/core/interfaces/IVueConfig.md
|
|
|
16500
16607
|
|
|
16501
16608
|
# Interface: IVueConfig
|
|
16502
16609
|
|
|
16503
|
-
Defined in: [lib/core.ts:
|
|
16610
|
+
Defined in: [lib/core.ts:1666](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1666)
|
|
16504
16611
|
|
|
16505
16612
|
Vue 配置
|
|
16506
16613
|
|
|
@@ -16510,7 +16617,7 @@ Vue 配置
|
|
|
16510
16617
|
|
|
16511
16618
|
> **globalProperties**: `Record`\<`string`, `any`\>
|
|
16512
16619
|
|
|
16513
|
-
Defined in: [lib/core.ts:
|
|
16620
|
+
Defined in: [lib/core.ts:1668](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1668)
|
|
16514
16621
|
|
|
16515
16622
|
***
|
|
16516
16623
|
|
|
@@ -16518,7 +16625,7 @@ Defined in: [lib/core.ts:1681](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16518
16625
|
|
|
16519
16626
|
> **optionMergeStrategies**: `Record`\<`string`, [`IVueOptionMergeFunction`](../type-aliases/IVueOptionMergeFunction.md)\>
|
|
16520
16627
|
|
|
16521
|
-
Defined in: [lib/core.ts:
|
|
16628
|
+
Defined in: [lib/core.ts:1670](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1670)
|
|
16522
16629
|
|
|
16523
16630
|
***
|
|
16524
16631
|
|
|
@@ -16526,7 +16633,7 @@ Defined in: [lib/core.ts:1683](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16526
16633
|
|
|
16527
16634
|
> **performance**: `boolean`
|
|
16528
16635
|
|
|
16529
|
-
Defined in: [lib/core.ts:
|
|
16636
|
+
Defined in: [lib/core.ts:1671](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1671)
|
|
16530
16637
|
|
|
16531
16638
|
## Methods
|
|
16532
16639
|
|
|
@@ -16534,7 +16641,7 @@ Defined in: [lib/core.ts:1684](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16534
16641
|
|
|
16535
16642
|
> `optional` **errorHandler**(`err`, `instance`, `info`): `void`
|
|
16536
16643
|
|
|
16537
|
-
Defined in: [lib/core.ts:
|
|
16644
|
+
Defined in: [lib/core.ts:1667](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1667)
|
|
16538
16645
|
|
|
16539
16646
|
#### Parameters
|
|
16540
16647
|
|
|
@@ -16560,7 +16667,7 @@ Defined in: [lib/core.ts:1680](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16560
16667
|
|
|
16561
16668
|
> **isCustomElement**(`tag`): `boolean`
|
|
16562
16669
|
|
|
16563
|
-
Defined in: [lib/core.ts:
|
|
16670
|
+
Defined in: [lib/core.ts:1669](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1669)
|
|
16564
16671
|
|
|
16565
16672
|
#### Parameters
|
|
16566
16673
|
|
|
@@ -16578,7 +16685,7 @@ Defined in: [lib/core.ts:1682](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16578
16685
|
|
|
16579
16686
|
> `optional` **warnHandler**(`msg`, `instance`, `trace`): `void`
|
|
16580
16687
|
|
|
16581
|
-
Defined in: [lib/core.ts:
|
|
16688
|
+
Defined in: [lib/core.ts:1672](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1672)
|
|
16582
16689
|
|
|
16583
16690
|
#### Parameters
|
|
16584
16691
|
|
|
@@ -16609,7 +16716,7 @@ lib/core/interfaces/IVue.md
|
|
|
16609
16716
|
|
|
16610
16717
|
# Interface: IVue
|
|
16611
16718
|
|
|
16612
|
-
Defined in: [lib/core.ts:
|
|
16719
|
+
Defined in: [lib/core.ts:1614](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1614)
|
|
16613
16720
|
|
|
16614
16721
|
Vue 实例
|
|
16615
16722
|
|
|
@@ -16623,7 +16730,7 @@ Vue 实例
|
|
|
16623
16730
|
|
|
16624
16731
|
> **$attrs**: `Record`\<`string`, `string`\>
|
|
16625
16732
|
|
|
16626
|
-
Defined in: [lib/core.ts:
|
|
16733
|
+
Defined in: [lib/core.ts:1615](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1615)
|
|
16627
16734
|
|
|
16628
16735
|
***
|
|
16629
16736
|
|
|
@@ -16631,7 +16738,7 @@ Defined in: [lib/core.ts:1628](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16631
16738
|
|
|
16632
16739
|
> **$data**: `Record`\<`string`, `any`\>
|
|
16633
16740
|
|
|
16634
|
-
Defined in: [lib/core.ts:
|
|
16741
|
+
Defined in: [lib/core.ts:1616](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1616)
|
|
16635
16742
|
|
|
16636
16743
|
***
|
|
16637
16744
|
|
|
@@ -16639,7 +16746,7 @@ Defined in: [lib/core.ts:1629](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16639
16746
|
|
|
16640
16747
|
> **$el**: `HTMLElement`
|
|
16641
16748
|
|
|
16642
|
-
Defined in: [lib/core.ts:
|
|
16749
|
+
Defined in: [lib/core.ts:1617](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1617)
|
|
16643
16750
|
|
|
16644
16751
|
***
|
|
16645
16752
|
|
|
@@ -16647,7 +16754,7 @@ Defined in: [lib/core.ts:1630](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16647
16754
|
|
|
16648
16755
|
> **$options**: `Record`\<`string`, `any`\>
|
|
16649
16756
|
|
|
16650
|
-
Defined in: [lib/core.ts:
|
|
16757
|
+
Defined in: [lib/core.ts:1621](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1621)
|
|
16651
16758
|
|
|
16652
16759
|
***
|
|
16653
16760
|
|
|
@@ -16655,7 +16762,7 @@ Defined in: [lib/core.ts:1634](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16655
16762
|
|
|
16656
16763
|
> **$parent**: `IVue` \| `null`
|
|
16657
16764
|
|
|
16658
|
-
Defined in: [lib/core.ts:
|
|
16765
|
+
Defined in: [lib/core.ts:1622](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1622)
|
|
16659
16766
|
|
|
16660
16767
|
***
|
|
16661
16768
|
|
|
@@ -16663,7 +16770,7 @@ Defined in: [lib/core.ts:1635](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16663
16770
|
|
|
16664
16771
|
> **$props**: `Record`\<`string`, `any`\>
|
|
16665
16772
|
|
|
16666
|
-
Defined in: [lib/core.ts:
|
|
16773
|
+
Defined in: [lib/core.ts:1623](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1623)
|
|
16667
16774
|
|
|
16668
16775
|
***
|
|
16669
16776
|
|
|
@@ -16671,7 +16778,7 @@ Defined in: [lib/core.ts:1636](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16671
16778
|
|
|
16672
16779
|
> **$refs**: `Record`\<`string`, `HTMLElement` & `IVue`\>
|
|
16673
16780
|
|
|
16674
|
-
Defined in: [lib/core.ts:
|
|
16781
|
+
Defined in: [lib/core.ts:1624](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1624)
|
|
16675
16782
|
|
|
16676
16783
|
***
|
|
16677
16784
|
|
|
@@ -16679,7 +16786,7 @@ Defined in: [lib/core.ts:1637](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16679
16786
|
|
|
16680
16787
|
> **$root**: `IVue`
|
|
16681
16788
|
|
|
16682
|
-
Defined in: [lib/core.ts:
|
|
16789
|
+
Defined in: [lib/core.ts:1625](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1625)
|
|
16683
16790
|
|
|
16684
16791
|
***
|
|
16685
16792
|
|
|
@@ -16687,7 +16794,7 @@ Defined in: [lib/core.ts:1638](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16687
16794
|
|
|
16688
16795
|
> **$slots**: `object`
|
|
16689
16796
|
|
|
16690
|
-
Defined in: [lib/core.ts:
|
|
16797
|
+
Defined in: [lib/core.ts:1626](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1626)
|
|
16691
16798
|
|
|
16692
16799
|
#### Index Signature
|
|
16693
16800
|
|
|
@@ -16703,7 +16810,7 @@ Defined in: [lib/core.ts:1639](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16703
16810
|
|
|
16704
16811
|
> **$watch**: (`o`, `cb`, `opt?`) => `void`
|
|
16705
16812
|
|
|
16706
|
-
Defined in: [lib/core.ts:
|
|
16813
|
+
Defined in: [lib/core.ts:1630](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1630)
|
|
16707
16814
|
|
|
16708
16815
|
#### Parameters
|
|
16709
16816
|
|
|
@@ -16735,7 +16842,7 @@ Defined in: [lib/core.ts:1643](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16735
16842
|
|
|
16736
16843
|
> **$emit**(`name`, ...`arg`): `void`
|
|
16737
16844
|
|
|
16738
|
-
Defined in: [lib/core.ts:
|
|
16845
|
+
Defined in: [lib/core.ts:1618](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1618)
|
|
16739
16846
|
|
|
16740
16847
|
#### Parameters
|
|
16741
16848
|
|
|
@@ -16757,7 +16864,7 @@ Defined in: [lib/core.ts:1631](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16757
16864
|
|
|
16758
16865
|
> **$forceUpdate**(): `void`
|
|
16759
16866
|
|
|
16760
|
-
Defined in: [lib/core.ts:
|
|
16867
|
+
Defined in: [lib/core.ts:1619](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1619)
|
|
16761
16868
|
|
|
16762
16869
|
#### Returns
|
|
16763
16870
|
|
|
@@ -16769,7 +16876,7 @@ Defined in: [lib/core.ts:1632](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16769
16876
|
|
|
16770
16877
|
> **$nextTick**(): `Promise`\<`void`\>
|
|
16771
16878
|
|
|
16772
|
-
Defined in: [lib/core.ts:
|
|
16879
|
+
Defined in: [lib/core.ts:1620](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1620)
|
|
16773
16880
|
|
|
16774
16881
|
#### Returns
|
|
16775
16882
|
|
|
@@ -16786,7 +16893,7 @@ lib/core/interfaces/IVueObject.md
|
|
|
16786
16893
|
|
|
16787
16894
|
# Interface: IVueObject
|
|
16788
16895
|
|
|
16789
|
-
Defined in: [lib/core.ts:
|
|
16896
|
+
Defined in: [lib/core.ts:1650](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1650)
|
|
16790
16897
|
|
|
16791
16898
|
## Methods
|
|
16792
16899
|
|
|
@@ -16794,7 +16901,7 @@ Defined in: [lib/core.ts:1663](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16794
16901
|
|
|
16795
16902
|
> **createApp**(`opt`): [`IVApp`](IVApp.md)
|
|
16796
16903
|
|
|
16797
|
-
Defined in: [lib/core.ts:
|
|
16904
|
+
Defined in: [lib/core.ts:1651](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1651)
|
|
16798
16905
|
|
|
16799
16906
|
#### Parameters
|
|
16800
16907
|
|
|
@@ -16812,7 +16919,7 @@ Defined in: [lib/core.ts:1664](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16812
16919
|
|
|
16813
16920
|
> **h**(`tag`, `props?`, `list?`): `any`
|
|
16814
16921
|
|
|
16815
|
-
Defined in: [lib/core.ts:
|
|
16922
|
+
Defined in: [lib/core.ts:1659](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1659)
|
|
16816
16923
|
|
|
16817
16924
|
#### Parameters
|
|
16818
16925
|
|
|
@@ -16838,7 +16945,7 @@ Defined in: [lib/core.ts:1672](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16838
16945
|
|
|
16839
16946
|
> **reactive**\<`T`\>(`obj`): `T`
|
|
16840
16947
|
|
|
16841
|
-
Defined in: [lib/core.ts:
|
|
16948
|
+
Defined in: [lib/core.ts:1653](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1653)
|
|
16842
16949
|
|
|
16843
16950
|
#### Type Parameters
|
|
16844
16951
|
|
|
@@ -16862,7 +16969,7 @@ Defined in: [lib/core.ts:1666](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16862
16969
|
|
|
16863
16970
|
> **ref**\<`T`\>(`obj`): `object`
|
|
16864
16971
|
|
|
16865
|
-
Defined in: [lib/core.ts:
|
|
16972
|
+
Defined in: [lib/core.ts:1652](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1652)
|
|
16866
16973
|
|
|
16867
16974
|
#### Type Parameters
|
|
16868
16975
|
|
|
@@ -16890,7 +16997,7 @@ Defined in: [lib/core.ts:1665](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
16890
16997
|
|
|
16891
16998
|
> **watch**(`v`, `cb`, `opt`): `void`
|
|
16892
16999
|
|
|
16893
|
-
Defined in: [lib/core.ts:
|
|
17000
|
+
Defined in: [lib/core.ts:1654](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1654)
|
|
16894
17001
|
|
|
16895
17002
|
#### Parameters
|
|
16896
17003
|
|
|
@@ -16923,7 +17030,7 @@ lib/core/type-aliases/IVueOptionMergeFunction.md
|
|
|
16923
17030
|
|
|
16924
17031
|
> **IVueOptionMergeFunction** = (`to`, `from`, `instance`) => `any`
|
|
16925
17032
|
|
|
16926
|
-
Defined in: [lib/core.ts:
|
|
17033
|
+
Defined in: [lib/core.ts:1663](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1663)
|
|
16927
17034
|
|
|
16928
17035
|
Vue 选项合并函数
|
|
16929
17036
|
|
|
@@ -16958,7 +17065,7 @@ lib/core/type-aliases/TCurrent.md
|
|
|
16958
17065
|
|
|
16959
17066
|
> **TCurrent** = `string` \| [`AbstractForm`](../../form/classes/AbstractForm.md) \| [`AbstractPanel`](../../form/classes/AbstractPanel.md) \| [`AbstractControl`](../../control/classes/AbstractControl.md) \| [`AbstractApp`](../classes/AbstractApp.md)
|
|
16960
17067
|
|
|
16961
|
-
Defined in: [lib/core.ts:
|
|
17068
|
+
Defined in: [lib/core.ts:1691](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1691)
|
|
16962
17069
|
|
|
16963
17070
|
lib/core/type-aliases/TGlobalEvent.md
|
|
16964
17071
|
---
|
|
@@ -16973,7 +17080,7 @@ lib/core/type-aliases/TGlobalEvent.md
|
|
|
16973
17080
|
|
|
16974
17081
|
> **TGlobalEvent** = `"error"` \| `"screenResize"` \| `"configChanged"` \| `"formCreated"` \| `"formRemoved"` \| `"formTitleChanged"` \| `"formIconChanged"` \| `"formStateMinChanged"` \| `"formStateMaxChanged"` \| `"formShowChanged"` \| `"formFocused"` \| `"formBlurred"` \| `"formFlash"` \| `"formShowInSystemTaskChange"` \| `"formHashChange"` \| `"taskStarted"` \| `"taskEnded"` \| `"launcherFolderNameChanged"` \| `"hashChanged"` \| `"keydown"` \| `"keyup"`
|
|
16975
17082
|
|
|
16976
|
-
Defined in: [lib/core.ts:
|
|
17083
|
+
Defined in: [lib/core.ts:1527](https://github.com/maiyun/clickgo/blob/master/dist/lib/core.ts#L1527)
|
|
16977
17084
|
|
|
16978
17085
|
全局事件类型
|
|
16979
17086
|
|
|
@@ -22503,7 +22610,7 @@ lib/form/functions/captcha.md
|
|
|
22503
22610
|
|
|
22504
22611
|
> **captcha**(`current`, `opt`): `Promise`\<`false` \| [`ICaptchaResultEvent`](../../control/interfaces/ICaptchaResultEvent.md)\>
|
|
22505
22612
|
|
|
22506
|
-
Defined in: [lib/form.ts:
|
|
22613
|
+
Defined in: [lib/form.ts:4392](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4392)
|
|
22507
22614
|
|
|
22508
22615
|
显示一个验证码窗口
|
|
22509
22616
|
|
|
@@ -22619,7 +22726,7 @@ lib/form/functions/confirm.md
|
|
|
22619
22726
|
|
|
22620
22727
|
> **confirm**(`current`, `opt`): `Promise`\<`number` \| `boolean`\>
|
|
22621
22728
|
|
|
22622
|
-
Defined in: [lib/form.ts:
|
|
22729
|
+
Defined in: [lib/form.ts:4463](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4463)
|
|
22623
22730
|
|
|
22624
22731
|
显示一个 confirm
|
|
22625
22732
|
|
|
@@ -22654,7 +22761,7 @@ lib/form/functions/create.md
|
|
|
22654
22761
|
|
|
22655
22762
|
> **create**\<`T`\>(`current`, `cls`, `data?`, `opt?`): `Promise`\<`T`\>
|
|
22656
22763
|
|
|
22657
|
-
Defined in: [lib/form.ts:
|
|
22764
|
+
Defined in: [lib/form.ts:3811](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3811)
|
|
22658
22765
|
|
|
22659
22766
|
创建一个窗体
|
|
22660
22767
|
|
|
@@ -22719,7 +22826,7 @@ lib/form/functions/createPanel.md
|
|
|
22719
22826
|
|
|
22720
22827
|
> **createPanel**\<`T`\>(`rootPanel`, `cls`, `opt?`): `Promise`\<\{ `id`: `string`; `vapp`: [`IVApp`](../../core/interfaces/IVApp.md); `vroot`: `T`; \}\>
|
|
22721
22828
|
|
|
22722
|
-
Defined in: [lib/form.ts:
|
|
22829
|
+
Defined in: [lib/form.ts:3444](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3444)
|
|
22723
22830
|
|
|
22724
22831
|
创建 panel 对象,一般情况下无需使用
|
|
22725
22832
|
|
|
@@ -22782,7 +22889,7 @@ lib/form/functions/dialog.md
|
|
|
22782
22889
|
|
|
22783
22890
|
> **dialog**(`current`, `opt`): `Promise`\<`string`\>
|
|
22784
22891
|
|
|
22785
|
-
Defined in: [lib/form.ts:
|
|
22892
|
+
Defined in: [lib/form.ts:4296](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4296)
|
|
22786
22893
|
|
|
22787
22894
|
显示一个 dialog
|
|
22788
22895
|
|
|
@@ -22817,7 +22924,7 @@ lib/form/functions/doFocusAndPopEvent.md
|
|
|
22817
22924
|
|
|
22818
22925
|
> **doFocusAndPopEvent**(`e`): `Promise`\<`void`\>
|
|
22819
22926
|
|
|
22820
|
-
Defined in: [lib/form.ts:
|
|
22927
|
+
Defined in: [lib/form.ts:3245](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3245)
|
|
22821
22928
|
|
|
22822
22929
|
点下 pointerdown 屏幕任意一位置时根据点击处处理隐藏 pop 和焦点丢失事件,鼠标和 touch 只会响应一个
|
|
22823
22930
|
|
|
@@ -22846,7 +22953,7 @@ lib/form/functions/flash.md
|
|
|
22846
22953
|
|
|
22847
22954
|
> **flash**(`current`, `formId`): `Promise`\<`void`\>
|
|
22848
22955
|
|
|
22849
|
-
Defined in: [lib/form.ts:
|
|
22956
|
+
Defined in: [lib/form.ts:4560](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4560)
|
|
22850
22957
|
|
|
22851
22958
|
让窗体闪烁
|
|
22852
22959
|
|
|
@@ -23214,7 +23321,7 @@ lib/form/functions/hideLauncher.md
|
|
|
23214
23321
|
|
|
23215
23322
|
> **hideLauncher**(): `void`
|
|
23216
23323
|
|
|
23217
|
-
Defined in: [lib/form.ts:
|
|
23324
|
+
Defined in: [lib/form.ts:4597](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4597)
|
|
23218
23325
|
|
|
23219
23326
|
隐藏 launcher 界面
|
|
23220
23327
|
|
|
@@ -23264,7 +23371,7 @@ lib/form/functions/hidePop.md
|
|
|
23264
23371
|
|
|
23265
23372
|
> **hidePop**(`pop?`): `void`
|
|
23266
23373
|
|
|
23267
|
-
Defined in: [lib/form.ts:
|
|
23374
|
+
Defined in: [lib/form.ts:3144](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3144)
|
|
23268
23375
|
|
|
23269
23376
|
隐藏正在显示中的所有 pop,或指定 pop/el
|
|
23270
23377
|
|
|
@@ -23312,7 +23419,7 @@ lib/form/functions/init.md
|
|
|
23312
23419
|
|
|
23313
23420
|
> **init**(): `void`
|
|
23314
23421
|
|
|
23315
|
-
Defined in: [lib/form.ts:
|
|
23422
|
+
Defined in: [lib/form.ts:4611](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4611)
|
|
23316
23423
|
|
|
23317
23424
|
## Returns
|
|
23318
23425
|
|
|
@@ -23360,7 +23467,7 @@ lib/form/functions/isJustPop.md
|
|
|
23360
23467
|
|
|
23361
23468
|
> **isJustPop**(`el`): `boolean`
|
|
23362
23469
|
|
|
23363
|
-
Defined in: [lib/form.ts:
|
|
23470
|
+
Defined in: [lib/form.ts:3226](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3226)
|
|
23364
23471
|
|
|
23365
23472
|
检测 pop 是不是刚刚显示的
|
|
23366
23473
|
|
|
@@ -23575,7 +23682,7 @@ lib/form/functions/prompt.md
|
|
|
23575
23682
|
|
|
23576
23683
|
> **prompt**(`current`, `opt`): `Promise`\<`string`\>
|
|
23577
23684
|
|
|
23578
|
-
Defined in: [lib/form.ts:
|
|
23685
|
+
Defined in: [lib/form.ts:4500](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4500)
|
|
23579
23686
|
|
|
23580
23687
|
显示一个输入框 dialog
|
|
23581
23688
|
|
|
@@ -23701,7 +23808,7 @@ lib/form/functions/remove.md
|
|
|
23701
23808
|
|
|
23702
23809
|
> **remove**(`formId`): `boolean`
|
|
23703
23810
|
|
|
23704
|
-
Defined in: [lib/form.ts:
|
|
23811
|
+
Defined in: [lib/form.ts:3314](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3314)
|
|
23705
23812
|
|
|
23706
23813
|
移除一个 form(关闭窗口)
|
|
23707
23814
|
|
|
@@ -23730,7 +23837,7 @@ lib/form/functions/removePanel.md
|
|
|
23730
23837
|
|
|
23731
23838
|
> **removePanel**(`id`, `vapp`, `el`): `boolean`
|
|
23732
23839
|
|
|
23733
|
-
Defined in: [lib/form.ts:
|
|
23840
|
+
Defined in: [lib/form.ts:3387](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3387)
|
|
23734
23841
|
|
|
23735
23842
|
移除 panel 挂载,通常发生在 panel 控件的 onBeforeUnmount 中
|
|
23736
23843
|
|
|
@@ -23903,7 +24010,7 @@ lib/form/functions/showLauncher.md
|
|
|
23903
24010
|
|
|
23904
24011
|
> **showLauncher**(): `void`
|
|
23905
24012
|
|
|
23906
|
-
Defined in: [lib/form.ts:
|
|
24013
|
+
Defined in: [lib/form.ts:4587](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4587)
|
|
23907
24014
|
|
|
23908
24015
|
显示 launcher 界面
|
|
23909
24016
|
|
|
@@ -23924,7 +24031,7 @@ lib/form/functions/showPop.md
|
|
|
23924
24031
|
|
|
23925
24032
|
> **showPop**(`el`, `pop`, `direction`, `opt?`): `void`
|
|
23926
24033
|
|
|
23927
|
-
Defined in: [lib/form.ts:
|
|
24034
|
+
Defined in: [lib/form.ts:3030](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3030)
|
|
23928
24035
|
|
|
23929
24036
|
获取 pop 显示出来的坐标并报系统全局记录
|
|
23930
24037
|
|
|
@@ -24168,7 +24275,7 @@ lib/form/interfaces/IAbstractPanelQsChangeShowEvent.md
|
|
|
24168
24275
|
|
|
24169
24276
|
# Interface: IAbstractPanelQsChangeShowEvent
|
|
24170
24277
|
|
|
24171
|
-
Defined in: [lib/form.ts:
|
|
24278
|
+
Defined in: [lib/form.ts:4637](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4637)
|
|
24172
24279
|
|
|
24173
24280
|
AbstractPanel qsChange 显示事件
|
|
24174
24281
|
|
|
@@ -24178,7 +24285,7 @@ AbstractPanel qsChange 显示事件
|
|
|
24178
24285
|
|
|
24179
24286
|
> **detail**: `object`
|
|
24180
24287
|
|
|
24181
|
-
Defined in: [lib/form.ts:
|
|
24288
|
+
Defined in: [lib/form.ts:4638](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4638)
|
|
24182
24289
|
|
|
24183
24290
|
#### action
|
|
24184
24291
|
|
|
@@ -24219,7 +24326,7 @@ lib/form/interfaces/IAbstractPanelShowEvent.md
|
|
|
24219
24326
|
|
|
24220
24327
|
# Interface: IAbstractPanelShowEvent
|
|
24221
24328
|
|
|
24222
|
-
Defined in: [lib/form.ts:
|
|
24329
|
+
Defined in: [lib/form.ts:4622](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4622)
|
|
24223
24330
|
|
|
24224
24331
|
AbstractPanel 显示事件
|
|
24225
24332
|
|
|
@@ -24229,7 +24336,7 @@ AbstractPanel 显示事件
|
|
|
24229
24336
|
|
|
24230
24337
|
> **detail**: `object`
|
|
24231
24338
|
|
|
24232
|
-
Defined in: [lib/form.ts:
|
|
24339
|
+
Defined in: [lib/form.ts:4623](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4623)
|
|
24233
24340
|
|
|
24234
24341
|
#### action
|
|
24235
24342
|
|
|
@@ -24270,7 +24377,7 @@ lib/form/interfaces/IFormCaptchaOptions.md
|
|
|
24270
24377
|
|
|
24271
24378
|
# Interface: IFormCaptchaOptions
|
|
24272
24379
|
|
|
24273
|
-
Defined in: [lib/form.ts:
|
|
24380
|
+
Defined in: [lib/form.ts:4767](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4767)
|
|
24274
24381
|
|
|
24275
24382
|
显示验证码选项
|
|
24276
24383
|
|
|
@@ -24280,7 +24387,7 @@ Defined in: [lib/form.ts:4731](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24280
24387
|
|
|
24281
24388
|
> **akey**: `string`
|
|
24282
24389
|
|
|
24283
|
-
Defined in: [lib/form.ts:
|
|
24390
|
+
Defined in: [lib/form.ts:4771](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4771)
|
|
24284
24391
|
|
|
24285
24392
|
验证码 key
|
|
24286
24393
|
|
|
@@ -24290,7 +24397,7 @@ Defined in: [lib/form.ts:4735](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24290
24397
|
|
|
24291
24398
|
> **factory**: `"tc"` \| `"cf"`
|
|
24292
24399
|
|
|
24293
|
-
Defined in: [lib/form.ts:
|
|
24400
|
+
Defined in: [lib/form.ts:4769](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4769)
|
|
24294
24401
|
|
|
24295
24402
|
验证码服务商
|
|
24296
24403
|
|
|
@@ -24305,7 +24412,7 @@ lib/form/interfaces/IFormConfirmOptions.md
|
|
|
24305
24412
|
|
|
24306
24413
|
# Interface: IFormConfirmOptions
|
|
24307
24414
|
|
|
24308
|
-
Defined in: [lib/form.ts:
|
|
24415
|
+
Defined in: [lib/form.ts:4760](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4760)
|
|
24309
24416
|
|
|
24310
24417
|
Confirm 选项
|
|
24311
24418
|
|
|
@@ -24315,7 +24422,7 @@ Confirm 选项
|
|
|
24315
24422
|
|
|
24316
24423
|
> `optional` **cancel?**: `boolean`
|
|
24317
24424
|
|
|
24318
|
-
Defined in: [lib/form.ts:
|
|
24425
|
+
Defined in: [lib/form.ts:4763](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4763)
|
|
24319
24426
|
|
|
24320
24427
|
***
|
|
24321
24428
|
|
|
@@ -24323,7 +24430,7 @@ Defined in: [lib/form.ts:4727](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24323
24430
|
|
|
24324
24431
|
> **content**: `string`
|
|
24325
24432
|
|
|
24326
|
-
Defined in: [lib/form.ts:
|
|
24433
|
+
Defined in: [lib/form.ts:4762](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4762)
|
|
24327
24434
|
|
|
24328
24435
|
***
|
|
24329
24436
|
|
|
@@ -24331,7 +24438,7 @@ Defined in: [lib/form.ts:4726](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24331
24438
|
|
|
24332
24439
|
> `optional` **title?**: `string`
|
|
24333
24440
|
|
|
24334
|
-
Defined in: [lib/form.ts:
|
|
24441
|
+
Defined in: [lib/form.ts:4761](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4761)
|
|
24335
24442
|
|
|
24336
24443
|
lib/form/interfaces/IFormDialogOptions.md
|
|
24337
24444
|
---
|
|
@@ -24344,7 +24451,7 @@ lib/form/interfaces/IFormDialogOptions.md
|
|
|
24344
24451
|
|
|
24345
24452
|
# Interface: IFormDialogOptions
|
|
24346
24453
|
|
|
24347
|
-
Defined in: [lib/form.ts:
|
|
24454
|
+
Defined in: [lib/form.ts:4706](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4706)
|
|
24348
24455
|
|
|
24349
24456
|
Dialog 选项
|
|
24350
24457
|
|
|
@@ -24354,7 +24461,7 @@ Dialog 选项
|
|
|
24354
24461
|
|
|
24355
24462
|
> `optional` **autoDialogResult?**: `boolean`
|
|
24356
24463
|
|
|
24357
|
-
Defined in: [lib/form.ts:
|
|
24464
|
+
Defined in: [lib/form.ts:4714](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4714)
|
|
24358
24465
|
|
|
24359
24466
|
点击按钮后是否自动将按钮文本写入 dialogResult,默认 true
|
|
24360
24467
|
|
|
@@ -24364,7 +24471,7 @@ Defined in: [lib/form.ts:4678](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24364
24471
|
|
|
24365
24472
|
> `optional` **buttons?**: `string`[]
|
|
24366
24473
|
|
|
24367
|
-
Defined in: [lib/form.ts:
|
|
24474
|
+
Defined in: [lib/form.ts:4712](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4712)
|
|
24368
24475
|
|
|
24369
24476
|
底部按钮文本列表,默认使用当前语言的确定按钮文本
|
|
24370
24477
|
|
|
@@ -24374,7 +24481,7 @@ Defined in: [lib/form.ts:4676](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24374
24481
|
|
|
24375
24482
|
> **content**: `string`
|
|
24376
24483
|
|
|
24377
|
-
Defined in: [lib/form.ts:
|
|
24484
|
+
Defined in: [lib/form.ts:4710](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4710)
|
|
24378
24485
|
|
|
24379
24486
|
dialog 内容,支持直接传布局字符串
|
|
24380
24487
|
|
|
@@ -24384,7 +24491,7 @@ dialog 内容,支持直接传布局字符串
|
|
|
24384
24491
|
|
|
24385
24492
|
> `optional` **data?**: `Record`\<`string`, `any`\>
|
|
24386
24493
|
|
|
24387
|
-
Defined in: [lib/form.ts:
|
|
24494
|
+
Defined in: [lib/form.ts:4728](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4728)
|
|
24388
24495
|
|
|
24389
24496
|
传值,需要用 data.x 读取
|
|
24390
24497
|
|
|
@@ -24394,7 +24501,7 @@ Defined in: [lib/form.ts:4692](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24394
24501
|
|
|
24395
24502
|
> `optional` **direction?**: `"v"` \| `"h"`
|
|
24396
24503
|
|
|
24397
|
-
Defined in: [lib/form.ts:
|
|
24504
|
+
Defined in: [lib/form.ts:4717](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4717)
|
|
24398
24505
|
|
|
24399
24506
|
dialog 控件内容布局方向,h 为横向,v 为纵向
|
|
24400
24507
|
|
|
@@ -24404,7 +24511,7 @@ dialog 控件内容布局方向,h 为横向,v 为纵向
|
|
|
24404
24511
|
|
|
24405
24512
|
> `optional` **gutter?**: `string` \| `number`
|
|
24406
24513
|
|
|
24407
|
-
Defined in: [lib/form.ts:
|
|
24514
|
+
Defined in: [lib/form.ts:4719](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4719)
|
|
24408
24515
|
|
|
24409
24516
|
dialog 控件内容区项目间距,会透传给 dialog 控件
|
|
24410
24517
|
|
|
@@ -24414,7 +24521,7 @@ dialog 控件内容区项目间距,会透传给 dialog 控件
|
|
|
24414
24521
|
|
|
24415
24522
|
> `optional` **height?**: `string` \| `number`
|
|
24416
24523
|
|
|
24417
|
-
Defined in: [lib/form.ts:
|
|
24524
|
+
Defined in: [lib/form.ts:4723](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4723)
|
|
24418
24525
|
|
|
24419
24526
|
dialog 控件高度,传数字时为像素值,传 fill 时代表填充可用高度
|
|
24420
24527
|
|
|
@@ -24424,7 +24531,7 @@ dialog 控件高度,传数字时为像素值,传 fill 时代表填充可用
|
|
|
24424
24531
|
|
|
24425
24532
|
> `optional` **methods?**: `Record`\<`string`, (...`param`) => `any`\>
|
|
24426
24533
|
|
|
24427
|
-
Defined in: [lib/form.ts:
|
|
24534
|
+
Defined in: [lib/form.ts:4730](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4730)
|
|
24428
24535
|
|
|
24429
24536
|
传值,需要用 methods.x 读取
|
|
24430
24537
|
|
|
@@ -24434,7 +24541,7 @@ Defined in: [lib/form.ts:4694](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24434
24541
|
|
|
24435
24542
|
> `optional` **onMounted?**: () => `void` \| `Promise`\<`void`\>
|
|
24436
24543
|
|
|
24437
|
-
Defined in: [lib/form.ts:
|
|
24544
|
+
Defined in: [lib/form.ts:4750](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4750)
|
|
24438
24545
|
|
|
24439
24546
|
窗体挂载完成事件
|
|
24440
24547
|
|
|
@@ -24448,7 +24555,7 @@ Defined in: [lib/form.ts:4714](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24448
24555
|
|
|
24449
24556
|
> `optional` **padding?**: `string` \| `boolean`
|
|
24450
24557
|
|
|
24451
|
-
Defined in: [lib/form.ts:
|
|
24558
|
+
Defined in: [lib/form.ts:4725](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4725)
|
|
24452
24559
|
|
|
24453
24560
|
dialog 控件内容区是否显示内边距,默认表现与控件自身一致
|
|
24454
24561
|
|
|
@@ -24458,7 +24565,7 @@ dialog 控件内容区是否显示内边距,默认表现与控件自身一致
|
|
|
24458
24565
|
|
|
24459
24566
|
> `optional` **path?**: `string`
|
|
24460
24567
|
|
|
24461
|
-
Defined in: [lib/form.ts:
|
|
24568
|
+
Defined in: [lib/form.ts:4734](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4734)
|
|
24462
24569
|
|
|
24463
24570
|
路径基,以 / 结束或文件路径则以文件的基路径为准,可留空
|
|
24464
24571
|
|
|
@@ -24468,7 +24575,7 @@ Defined in: [lib/form.ts:4698](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24468
24575
|
|
|
24469
24576
|
> `optional` **select?**: (`this`, `e`, `button`) => `void`
|
|
24470
24577
|
|
|
24471
|
-
Defined in: [lib/form.ts:
|
|
24578
|
+
Defined in: [lib/form.ts:4741](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4741)
|
|
24472
24579
|
|
|
24473
24580
|
点击按钮触发事件,不能用 Promise
|
|
24474
24581
|
|
|
@@ -24500,7 +24607,7 @@ Defined in: [lib/form.ts:4705](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24500
24607
|
|
|
24501
24608
|
> `optional` **style?**: `string`
|
|
24502
24609
|
|
|
24503
|
-
Defined in: [lib/form.ts:
|
|
24610
|
+
Defined in: [lib/form.ts:4732](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4732)
|
|
24504
24611
|
|
|
24505
24612
|
样式表
|
|
24506
24613
|
|
|
@@ -24510,7 +24617,7 @@ Defined in: [lib/form.ts:4696](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24510
24617
|
|
|
24511
24618
|
> `optional` **title?**: `string`
|
|
24512
24619
|
|
|
24513
|
-
Defined in: [lib/form.ts:
|
|
24620
|
+
Defined in: [lib/form.ts:4708](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4708)
|
|
24514
24621
|
|
|
24515
24622
|
dialog 窗体标题,不传则使用默认标题 dialog
|
|
24516
24623
|
|
|
@@ -24520,7 +24627,7 @@ dialog 窗体标题,不传则使用默认标题 dialog
|
|
|
24520
24627
|
|
|
24521
24628
|
> `optional` **width?**: `string` \| `number`
|
|
24522
24629
|
|
|
24523
|
-
Defined in: [lib/form.ts:
|
|
24630
|
+
Defined in: [lib/form.ts:4721](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4721)
|
|
24524
24631
|
|
|
24525
24632
|
dialog 控件宽度,传数字时为像素值,传 fill 时代表填充可用宽度
|
|
24526
24633
|
|
|
@@ -24535,7 +24642,7 @@ lib/form/interfaces/IFormDialogSelectEvent.md
|
|
|
24535
24642
|
|
|
24536
24643
|
# Interface: IFormDialogSelectEvent
|
|
24537
24644
|
|
|
24538
|
-
Defined in: [lib/form.ts:
|
|
24645
|
+
Defined in: [lib/form.ts:4753](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4753)
|
|
24539
24646
|
|
|
24540
24647
|
Custom Event
|
|
24541
24648
|
|
|
@@ -24549,7 +24656,7 @@ Custom Event
|
|
|
24549
24656
|
|
|
24550
24657
|
> **detail**: `object`
|
|
24551
24658
|
|
|
24552
|
-
Defined in: [lib/form.ts:
|
|
24659
|
+
Defined in: [lib/form.ts:4754](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4754)
|
|
24553
24660
|
|
|
24554
24661
|
#### button
|
|
24555
24662
|
|
|
@@ -24594,7 +24701,7 @@ lib/form/interfaces/IFormInfo.md
|
|
|
24594
24701
|
|
|
24595
24702
|
# Interface: IFormInfo
|
|
24596
24703
|
|
|
24597
|
-
Defined in: [lib/form.ts:
|
|
24704
|
+
Defined in: [lib/form.ts:4661](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4661)
|
|
24598
24705
|
|
|
24599
24706
|
Form 的简略情况,通常在 list 当中
|
|
24600
24707
|
|
|
@@ -24604,7 +24711,7 @@ Form 的简略情况,通常在 list 当中
|
|
|
24604
24711
|
|
|
24605
24712
|
> **focus**: `boolean`
|
|
24606
24713
|
|
|
24607
|
-
Defined in: [lib/form.ts:
|
|
24714
|
+
Defined in: [lib/form.ts:4668](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4668)
|
|
24608
24715
|
|
|
24609
24716
|
***
|
|
24610
24717
|
|
|
@@ -24612,7 +24719,7 @@ Defined in: [lib/form.ts:4632](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24612
24719
|
|
|
24613
24720
|
> **icon**: `string`
|
|
24614
24721
|
|
|
24615
|
-
Defined in: [lib/form.ts:
|
|
24722
|
+
Defined in: [lib/form.ts:4664](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4664)
|
|
24616
24723
|
|
|
24617
24724
|
***
|
|
24618
24725
|
|
|
@@ -24620,7 +24727,7 @@ Defined in: [lib/form.ts:4628](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24620
24727
|
|
|
24621
24728
|
> **show**: `boolean`
|
|
24622
24729
|
|
|
24623
|
-
Defined in: [lib/form.ts:
|
|
24730
|
+
Defined in: [lib/form.ts:4667](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4667)
|
|
24624
24731
|
|
|
24625
24732
|
***
|
|
24626
24733
|
|
|
@@ -24628,7 +24735,7 @@ Defined in: [lib/form.ts:4631](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24628
24735
|
|
|
24629
24736
|
> **showInSystemTask**: `boolean`
|
|
24630
24737
|
|
|
24631
|
-
Defined in: [lib/form.ts:
|
|
24738
|
+
Defined in: [lib/form.ts:4669](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4669)
|
|
24632
24739
|
|
|
24633
24740
|
***
|
|
24634
24741
|
|
|
@@ -24636,7 +24743,7 @@ Defined in: [lib/form.ts:4633](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24636
24743
|
|
|
24637
24744
|
> **stateMax**: `boolean`
|
|
24638
24745
|
|
|
24639
|
-
Defined in: [lib/form.ts:
|
|
24746
|
+
Defined in: [lib/form.ts:4665](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4665)
|
|
24640
24747
|
|
|
24641
24748
|
***
|
|
24642
24749
|
|
|
@@ -24644,7 +24751,7 @@ Defined in: [lib/form.ts:4629](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24644
24751
|
|
|
24645
24752
|
> **stateMin**: `boolean`
|
|
24646
24753
|
|
|
24647
|
-
Defined in: [lib/form.ts:
|
|
24754
|
+
Defined in: [lib/form.ts:4666](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4666)
|
|
24648
24755
|
|
|
24649
24756
|
***
|
|
24650
24757
|
|
|
@@ -24652,7 +24759,7 @@ Defined in: [lib/form.ts:4630](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24652
24759
|
|
|
24653
24760
|
> **taskId**: `string`
|
|
24654
24761
|
|
|
24655
|
-
Defined in: [lib/form.ts:
|
|
24762
|
+
Defined in: [lib/form.ts:4662](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4662)
|
|
24656
24763
|
|
|
24657
24764
|
***
|
|
24658
24765
|
|
|
@@ -24660,7 +24767,7 @@ Defined in: [lib/form.ts:4626](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24660
24767
|
|
|
24661
24768
|
> **title**: `string`
|
|
24662
24769
|
|
|
24663
|
-
Defined in: [lib/form.ts:
|
|
24770
|
+
Defined in: [lib/form.ts:4663](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4663)
|
|
24664
24771
|
|
|
24665
24772
|
lib/form/interfaces/IForm.md
|
|
24666
24773
|
---
|
|
@@ -24673,7 +24780,7 @@ lib/form/interfaces/IForm.md
|
|
|
24673
24780
|
|
|
24674
24781
|
# Interface: IForm
|
|
24675
24782
|
|
|
24676
|
-
Defined in: [lib/form.ts:
|
|
24783
|
+
Defined in: [lib/form.ts:4652](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4652)
|
|
24677
24784
|
|
|
24678
24785
|
运行时 task 中的 form 对象
|
|
24679
24786
|
|
|
@@ -24683,7 +24790,7 @@ Defined in: [lib/form.ts:4616](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24683
24790
|
|
|
24684
24791
|
> **closed**: `boolean`
|
|
24685
24792
|
|
|
24686
|
-
Defined in: [lib/form.ts:
|
|
24793
|
+
Defined in: [lib/form.ts:4657](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4657)
|
|
24687
24794
|
|
|
24688
24795
|
是否已经执行过了关闭窗体方法,此处加判断为了防止重复执行 close 导致的 bug
|
|
24689
24796
|
|
|
@@ -24693,7 +24800,7 @@ Defined in: [lib/form.ts:4621](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24693
24800
|
|
|
24694
24801
|
> **id**: `string`
|
|
24695
24802
|
|
|
24696
|
-
Defined in: [lib/form.ts:
|
|
24803
|
+
Defined in: [lib/form.ts:4653](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4653)
|
|
24697
24804
|
|
|
24698
24805
|
***
|
|
24699
24806
|
|
|
@@ -24701,7 +24808,7 @@ Defined in: [lib/form.ts:4617](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24701
24808
|
|
|
24702
24809
|
> **vapp**: [`IVApp`](../../core/interfaces/IVApp.md)
|
|
24703
24810
|
|
|
24704
|
-
Defined in: [lib/form.ts:
|
|
24811
|
+
Defined in: [lib/form.ts:4654](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4654)
|
|
24705
24812
|
|
|
24706
24813
|
***
|
|
24707
24814
|
|
|
@@ -24709,7 +24816,7 @@ Defined in: [lib/form.ts:4618](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24709
24816
|
|
|
24710
24817
|
> **vroot**: [`IVue`](../../core/interfaces/IVue.md)
|
|
24711
24818
|
|
|
24712
|
-
Defined in: [lib/form.ts:
|
|
24819
|
+
Defined in: [lib/form.ts:4655](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4655)
|
|
24713
24820
|
|
|
24714
24821
|
lib/form/interfaces/IFormPromptOptions.md
|
|
24715
24822
|
---
|
|
@@ -24722,7 +24829,7 @@ lib/form/interfaces/IFormPromptOptions.md
|
|
|
24722
24829
|
|
|
24723
24830
|
# Interface: IFormPromptOptions
|
|
24724
24831
|
|
|
24725
|
-
Defined in: [lib/form.ts:
|
|
24832
|
+
Defined in: [lib/form.ts:4775](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4775)
|
|
24726
24833
|
|
|
24727
24834
|
Prompt 选项
|
|
24728
24835
|
|
|
@@ -24732,7 +24839,7 @@ Prompt 选项
|
|
|
24732
24839
|
|
|
24733
24840
|
> `optional` **cancel?**: `boolean`
|
|
24734
24841
|
|
|
24735
|
-
Defined in: [lib/form.ts:
|
|
24842
|
+
Defined in: [lib/form.ts:4783](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4783)
|
|
24736
24843
|
|
|
24737
24844
|
是否显示取消按钮,默认显示
|
|
24738
24845
|
|
|
@@ -24742,7 +24849,7 @@ Defined in: [lib/form.ts:4747](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24742
24849
|
|
|
24743
24850
|
> **content**: `string`
|
|
24744
24851
|
|
|
24745
|
-
Defined in: [lib/form.ts:
|
|
24852
|
+
Defined in: [lib/form.ts:4779](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4779)
|
|
24746
24853
|
|
|
24747
24854
|
内容说明
|
|
24748
24855
|
|
|
@@ -24752,7 +24859,7 @@ Defined in: [lib/form.ts:4743](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24752
24859
|
|
|
24753
24860
|
> `optional` **select?**: (`this`, `e`, `button`) => `void`
|
|
24754
24861
|
|
|
24755
|
-
Defined in: [lib/form.ts:
|
|
24862
|
+
Defined in: [lib/form.ts:4790](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4790)
|
|
24756
24863
|
|
|
24757
24864
|
点击按钮触发事件
|
|
24758
24865
|
|
|
@@ -24784,7 +24891,7 @@ true 代表确定,false 代表取消
|
|
|
24784
24891
|
|
|
24785
24892
|
> `optional` **text?**: `string`
|
|
24786
24893
|
|
|
24787
|
-
Defined in: [lib/form.ts:
|
|
24894
|
+
Defined in: [lib/form.ts:4781](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4781)
|
|
24788
24895
|
|
|
24789
24896
|
文本默认值
|
|
24790
24897
|
|
|
@@ -24794,7 +24901,7 @@ Defined in: [lib/form.ts:4745](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24794
24901
|
|
|
24795
24902
|
> `optional` **title?**: `string`
|
|
24796
24903
|
|
|
24797
|
-
Defined in: [lib/form.ts:
|
|
24904
|
+
Defined in: [lib/form.ts:4777](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4777)
|
|
24798
24905
|
|
|
24799
24906
|
标题
|
|
24800
24907
|
|
|
@@ -24809,7 +24916,7 @@ lib/form/interfaces/IFormPromptSelectEvent.md
|
|
|
24809
24916
|
|
|
24810
24917
|
# Interface: IFormPromptSelectEvent
|
|
24811
24918
|
|
|
24812
|
-
Defined in: [lib/form.ts:
|
|
24919
|
+
Defined in: [lib/form.ts:4797](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4797)
|
|
24813
24920
|
|
|
24814
24921
|
Custom Event
|
|
24815
24922
|
|
|
@@ -24823,7 +24930,7 @@ Custom Event
|
|
|
24823
24930
|
|
|
24824
24931
|
> **detail**: `object`
|
|
24825
24932
|
|
|
24826
|
-
Defined in: [lib/form.ts:
|
|
24933
|
+
Defined in: [lib/form.ts:4798](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4798)
|
|
24827
24934
|
|
|
24828
24935
|
#### button
|
|
24829
24936
|
|
|
@@ -24874,7 +24981,7 @@ lib/form/interfaces/IMoveDragOptions.md
|
|
|
24874
24981
|
|
|
24875
24982
|
# Interface: IMoveDragOptions
|
|
24876
24983
|
|
|
24877
|
-
Defined in: [lib/form.ts:
|
|
24984
|
+
Defined in: [lib/form.ts:4673](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4673)
|
|
24878
24985
|
|
|
24879
24986
|
移动 drag 到新位置函数的选项
|
|
24880
24987
|
|
|
@@ -24884,7 +24991,7 @@ Defined in: [lib/form.ts:4637](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24884
24991
|
|
|
24885
24992
|
> `optional` **height?**: `number`
|
|
24886
24993
|
|
|
24887
|
-
Defined in: [lib/form.ts:
|
|
24994
|
+
Defined in: [lib/form.ts:4677](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4677)
|
|
24888
24995
|
|
|
24889
24996
|
***
|
|
24890
24997
|
|
|
@@ -24892,7 +24999,7 @@ Defined in: [lib/form.ts:4641](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24892
24999
|
|
|
24893
25000
|
> `optional` **icon?**: `boolean`
|
|
24894
25001
|
|
|
24895
|
-
Defined in: [lib/form.ts:
|
|
25002
|
+
Defined in: [lib/form.ts:4678](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4678)
|
|
24896
25003
|
|
|
24897
25004
|
***
|
|
24898
25005
|
|
|
@@ -24900,7 +25007,7 @@ Defined in: [lib/form.ts:4642](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24900
25007
|
|
|
24901
25008
|
> `optional` **left?**: `number`
|
|
24902
25009
|
|
|
24903
|
-
Defined in: [lib/form.ts:
|
|
25010
|
+
Defined in: [lib/form.ts:4675](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4675)
|
|
24904
25011
|
|
|
24905
25012
|
***
|
|
24906
25013
|
|
|
@@ -24908,7 +25015,7 @@ Defined in: [lib/form.ts:4639](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24908
25015
|
|
|
24909
25016
|
> `optional` **top?**: `number`
|
|
24910
25017
|
|
|
24911
|
-
Defined in: [lib/form.ts:
|
|
25018
|
+
Defined in: [lib/form.ts:4674](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4674)
|
|
24912
25019
|
|
|
24913
25020
|
***
|
|
24914
25021
|
|
|
@@ -24916,7 +25023,7 @@ Defined in: [lib/form.ts:4638](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24916
25023
|
|
|
24917
25024
|
> `optional` **width?**: `number`
|
|
24918
25025
|
|
|
24919
|
-
Defined in: [lib/form.ts:
|
|
25026
|
+
Defined in: [lib/form.ts:4676](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4676)
|
|
24920
25027
|
|
|
24921
25028
|
lib/form/interfaces/INotifyContentOptions.md
|
|
24922
25029
|
---
|
|
@@ -24929,7 +25036,7 @@ lib/form/interfaces/INotifyContentOptions.md
|
|
|
24929
25036
|
|
|
24930
25037
|
# Interface: INotifyContentOptions
|
|
24931
25038
|
|
|
24932
|
-
Defined in: [lib/form.ts:
|
|
25039
|
+
Defined in: [lib/form.ts:4695](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4695)
|
|
24933
25040
|
|
|
24934
25041
|
notify 信息框的修改选项
|
|
24935
25042
|
|
|
@@ -24939,7 +25046,7 @@ notify 信息框的修改选项
|
|
|
24939
25046
|
|
|
24940
25047
|
> `optional` **content?**: `string`
|
|
24941
25048
|
|
|
24942
|
-
Defined in: [lib/form.ts:
|
|
25049
|
+
Defined in: [lib/form.ts:4697](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4697)
|
|
24943
25050
|
|
|
24944
25051
|
***
|
|
24945
25052
|
|
|
@@ -24947,7 +25054,7 @@ Defined in: [lib/form.ts:4661](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24947
25054
|
|
|
24948
25055
|
> `optional` **note?**: `string`
|
|
24949
25056
|
|
|
24950
|
-
Defined in: [lib/form.ts:
|
|
25057
|
+
Defined in: [lib/form.ts:4698](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4698)
|
|
24951
25058
|
|
|
24952
25059
|
***
|
|
24953
25060
|
|
|
@@ -24955,7 +25062,7 @@ Defined in: [lib/form.ts:4662](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24955
25062
|
|
|
24956
25063
|
> `optional` **progress?**: `number`
|
|
24957
25064
|
|
|
24958
|
-
Defined in: [lib/form.ts:
|
|
25065
|
+
Defined in: [lib/form.ts:4700](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4700)
|
|
24959
25066
|
|
|
24960
25067
|
可顺便修改进度
|
|
24961
25068
|
|
|
@@ -24965,7 +25072,7 @@ Defined in: [lib/form.ts:4664](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24965
25072
|
|
|
24966
25073
|
> `optional` **timeout?**: `number`
|
|
24967
25074
|
|
|
24968
|
-
Defined in: [lib/form.ts:
|
|
25075
|
+
Defined in: [lib/form.ts:4702](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4702)
|
|
24969
25076
|
|
|
24970
25077
|
设置后将在 x 毫秒后隐藏,这不会大于创建时的设置的总时长
|
|
24971
25078
|
|
|
@@ -24975,7 +25082,7 @@ Defined in: [lib/form.ts:4666](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24975
25082
|
|
|
24976
25083
|
> `optional` **title?**: `string`
|
|
24977
25084
|
|
|
24978
|
-
Defined in: [lib/form.ts:
|
|
25085
|
+
Defined in: [lib/form.ts:4696](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4696)
|
|
24979
25086
|
|
|
24980
25087
|
lib/form/interfaces/INotifyOptions.md
|
|
24981
25088
|
---
|
|
@@ -24988,7 +25095,7 @@ lib/form/interfaces/INotifyOptions.md
|
|
|
24988
25095
|
|
|
24989
25096
|
# Interface: INotifyOptions
|
|
24990
25097
|
|
|
24991
|
-
Defined in: [lib/form.ts:
|
|
25098
|
+
Defined in: [lib/form.ts:4682](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4682)
|
|
24992
25099
|
|
|
24993
25100
|
弹出 notify 信息框的选项
|
|
24994
25101
|
|
|
@@ -24998,7 +25105,7 @@ Defined in: [lib/form.ts:4646](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
24998
25105
|
|
|
24999
25106
|
> `optional` **content?**: `string`
|
|
25000
25107
|
|
|
25001
|
-
Defined in: [lib/form.ts:
|
|
25108
|
+
Defined in: [lib/form.ts:4685](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4685)
|
|
25002
25109
|
|
|
25003
25110
|
正文
|
|
25004
25111
|
|
|
@@ -25008,7 +25115,7 @@ Defined in: [lib/form.ts:4649](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25008
25115
|
|
|
25009
25116
|
> `optional` **icon?**: `string` \| `null`
|
|
25010
25117
|
|
|
25011
|
-
Defined in: [lib/form.ts:
|
|
25118
|
+
Defined in: [lib/form.ts:4688](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4688)
|
|
25012
25119
|
|
|
25013
25120
|
***
|
|
25014
25121
|
|
|
@@ -25016,7 +25123,7 @@ Defined in: [lib/form.ts:4652](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25016
25123
|
|
|
25017
25124
|
> `optional` **note?**: `string`
|
|
25018
25125
|
|
|
25019
|
-
Defined in: [lib/form.ts:
|
|
25126
|
+
Defined in: [lib/form.ts:4687](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4687)
|
|
25020
25127
|
|
|
25021
25128
|
浅色描述
|
|
25022
25129
|
|
|
@@ -25026,7 +25133,7 @@ Defined in: [lib/form.ts:4651](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25026
25133
|
|
|
25027
25134
|
> `optional` **progress?**: `boolean`
|
|
25028
25135
|
|
|
25029
|
-
Defined in: [lib/form.ts:
|
|
25136
|
+
Defined in: [lib/form.ts:4691](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4691)
|
|
25030
25137
|
|
|
25031
25138
|
***
|
|
25032
25139
|
|
|
@@ -25034,7 +25141,7 @@ Defined in: [lib/form.ts:4655](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25034
25141
|
|
|
25035
25142
|
> `optional` **timeout?**: `number`
|
|
25036
25143
|
|
|
25037
|
-
Defined in: [lib/form.ts:
|
|
25144
|
+
Defined in: [lib/form.ts:4689](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4689)
|
|
25038
25145
|
|
|
25039
25146
|
***
|
|
25040
25147
|
|
|
@@ -25042,7 +25149,7 @@ Defined in: [lib/form.ts:4653](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25042
25149
|
|
|
25043
25150
|
> `optional` **title?**: `string`
|
|
25044
25151
|
|
|
25045
|
-
Defined in: [lib/form.ts:
|
|
25152
|
+
Defined in: [lib/form.ts:4683](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4683)
|
|
25046
25153
|
|
|
25047
25154
|
***
|
|
25048
25155
|
|
|
@@ -25050,7 +25157,7 @@ Defined in: [lib/form.ts:4647](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
25050
25157
|
|
|
25051
25158
|
> `optional` **type?**: `"progress"` \| `"info"` \| `"warning"` \| `"danger"` \| `"primary"`
|
|
25052
25159
|
|
|
25053
|
-
Defined in: [lib/form.ts:
|
|
25160
|
+
Defined in: [lib/form.ts:4690](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4690)
|
|
25054
25161
|
|
|
25055
25162
|
lib/form/variables/activePanels.md
|
|
25056
25163
|
---
|
|
@@ -27539,7 +27646,7 @@ lib/task/classes/AbstractThread.md
|
|
|
27539
27646
|
|
|
27540
27647
|
# Abstract Class: AbstractThread
|
|
27541
27648
|
|
|
27542
|
-
Defined in: [lib/task.ts:
|
|
27649
|
+
Defined in: [lib/task.ts:1561](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1561)
|
|
27543
27650
|
|
|
27544
27651
|
线程抽象类
|
|
27545
27652
|
|
|
@@ -27559,7 +27666,7 @@ Defined in: [lib/task.ts:1523](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27559
27666
|
|
|
27560
27667
|
> **taskId**: `string` = `''`
|
|
27561
27668
|
|
|
27562
|
-
Defined in: [lib/task.ts:
|
|
27669
|
+
Defined in: [lib/task.ts:1570](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1570)
|
|
27563
27670
|
|
|
27564
27671
|
系统会自动设置本项
|
|
27565
27672
|
|
|
@@ -27571,7 +27678,7 @@ Defined in: [lib/task.ts:1532](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27571
27678
|
|
|
27572
27679
|
> **get** **filename**(): `string`
|
|
27573
27680
|
|
|
27574
|
-
Defined in: [lib/task.ts:
|
|
27681
|
+
Defined in: [lib/task.ts:1564](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1564)
|
|
27575
27682
|
|
|
27576
27683
|
当前文件在包内的路径
|
|
27577
27684
|
|
|
@@ -27585,7 +27692,7 @@ Defined in: [lib/task.ts:1526](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27585
27692
|
|
|
27586
27693
|
> **close**(): `void`
|
|
27587
27694
|
|
|
27588
|
-
Defined in: [lib/task.ts:
|
|
27695
|
+
Defined in: [lib/task.ts:1599](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1599)
|
|
27589
27696
|
|
|
27590
27697
|
关闭线程
|
|
27591
27698
|
|
|
@@ -27599,7 +27706,7 @@ Defined in: [lib/task.ts:1561](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27599
27706
|
|
|
27600
27707
|
> `abstract` **main**(`data`): `void` \| `Promise`\<`void`\>
|
|
27601
27708
|
|
|
27602
|
-
Defined in: [lib/task.ts:
|
|
27709
|
+
Defined in: [lib/task.ts:1573](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1573)
|
|
27603
27710
|
|
|
27604
27711
|
线程入口
|
|
27605
27712
|
|
|
@@ -27619,7 +27726,7 @@ Defined in: [lib/task.ts:1535](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27619
27726
|
|
|
27620
27727
|
> **onEnded**(): `void` \| `Promise`\<`void`\>
|
|
27621
27728
|
|
|
27622
|
-
Defined in: [lib/task.ts:
|
|
27729
|
+
Defined in: [lib/task.ts:1582](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1582)
|
|
27623
27730
|
|
|
27624
27731
|
线程结束事件
|
|
27625
27732
|
|
|
@@ -27633,7 +27740,7 @@ Defined in: [lib/task.ts:1544](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27633
27740
|
|
|
27634
27741
|
> **onError**(`e`): `void` \| `Promise`\<`void`\>
|
|
27635
27742
|
|
|
27636
|
-
Defined in: [lib/task.ts:
|
|
27743
|
+
Defined in: [lib/task.ts:1588](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1588)
|
|
27637
27744
|
|
|
27638
27745
|
报错
|
|
27639
27746
|
|
|
@@ -27653,7 +27760,7 @@ Defined in: [lib/task.ts:1550](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27653
27760
|
|
|
27654
27761
|
> **onMessage**(`e`): `void` \| `Promise`\<`void`\>
|
|
27655
27762
|
|
|
27656
|
-
Defined in: [lib/task.ts:
|
|
27763
|
+
Defined in: [lib/task.ts:1576](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1576)
|
|
27657
27764
|
|
|
27658
27765
|
线程接收事件
|
|
27659
27766
|
|
|
@@ -27673,7 +27780,7 @@ Defined in: [lib/task.ts:1538](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
27673
27780
|
|
|
27674
27781
|
> **send**(`data`): `void`
|
|
27675
27782
|
|
|
27676
|
-
Defined in: [lib/task.ts:
|
|
27783
|
+
Defined in: [lib/task.ts:1594](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1594)
|
|
27677
27784
|
|
|
27678
27785
|
发送数据
|
|
27679
27786
|
|
|
@@ -27698,7 +27805,7 @@ lib/task/enumerations/EIPTYPE.md
|
|
|
27698
27805
|
|
|
27699
27806
|
# Enumeration: EIPTYPE
|
|
27700
27807
|
|
|
27701
|
-
Defined in: [lib/task.ts:
|
|
27808
|
+
Defined in: [lib/task.ts:405](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L405)
|
|
27702
27809
|
|
|
27703
27810
|
initProgress 的 type
|
|
27704
27811
|
|
|
@@ -27708,7 +27815,7 @@ initProgress 的 type
|
|
|
27708
27815
|
|
|
27709
27816
|
> **APP**: `0`
|
|
27710
27817
|
|
|
27711
|
-
Defined in: [lib/task.ts:
|
|
27818
|
+
Defined in: [lib/task.ts:406](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L406)
|
|
27712
27819
|
|
|
27713
27820
|
***
|
|
27714
27821
|
|
|
@@ -27716,7 +27823,7 @@ Defined in: [lib/task.ts:374](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27716
27823
|
|
|
27717
27824
|
> **CONTROL**: `2`
|
|
27718
27825
|
|
|
27719
|
-
Defined in: [lib/task.ts:
|
|
27826
|
+
Defined in: [lib/task.ts:408](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L408)
|
|
27720
27827
|
|
|
27721
27828
|
***
|
|
27722
27829
|
|
|
@@ -27724,7 +27831,7 @@ Defined in: [lib/task.ts:376](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27724
27831
|
|
|
27725
27832
|
> **DONE**: `7`
|
|
27726
27833
|
|
|
27727
|
-
Defined in: [lib/task.ts:
|
|
27834
|
+
Defined in: [lib/task.ts:413](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L413)
|
|
27728
27835
|
|
|
27729
27836
|
***
|
|
27730
27837
|
|
|
@@ -27732,7 +27839,7 @@ Defined in: [lib/task.ts:381](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27732
27839
|
|
|
27733
27840
|
> **LOCAL**: `1`
|
|
27734
27841
|
|
|
27735
|
-
Defined in: [lib/task.ts:
|
|
27842
|
+
Defined in: [lib/task.ts:407](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L407)
|
|
27736
27843
|
|
|
27737
27844
|
***
|
|
27738
27845
|
|
|
@@ -27740,7 +27847,7 @@ Defined in: [lib/task.ts:375](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27740
27847
|
|
|
27741
27848
|
> **PERMISSION**: `5`
|
|
27742
27849
|
|
|
27743
|
-
Defined in: [lib/task.ts:
|
|
27850
|
+
Defined in: [lib/task.ts:411](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L411)
|
|
27744
27851
|
|
|
27745
27852
|
***
|
|
27746
27853
|
|
|
@@ -27748,7 +27855,7 @@ Defined in: [lib/task.ts:379](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27748
27855
|
|
|
27749
27856
|
> **START**: `6`
|
|
27750
27857
|
|
|
27751
|
-
Defined in: [lib/task.ts:
|
|
27858
|
+
Defined in: [lib/task.ts:412](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L412)
|
|
27752
27859
|
|
|
27753
27860
|
***
|
|
27754
27861
|
|
|
@@ -27756,7 +27863,7 @@ Defined in: [lib/task.ts:380](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27756
27863
|
|
|
27757
27864
|
> **STYLE**: `4`
|
|
27758
27865
|
|
|
27759
|
-
Defined in: [lib/task.ts:
|
|
27866
|
+
Defined in: [lib/task.ts:410](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L410)
|
|
27760
27867
|
|
|
27761
27868
|
***
|
|
27762
27869
|
|
|
@@ -27764,7 +27871,7 @@ Defined in: [lib/task.ts:378](https://github.com/maiyun/clickgo/blob/master/dist
|
|
|
27764
27871
|
|
|
27765
27872
|
> **THEME**: `3`
|
|
27766
27873
|
|
|
27767
|
-
Defined in: [lib/task.ts:
|
|
27874
|
+
Defined in: [lib/task.ts:409](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L409)
|
|
27768
27875
|
|
|
27769
27876
|
lib/task/functions/checkPermission.md
|
|
27770
27877
|
---
|
|
@@ -27779,7 +27886,7 @@ lib/task/functions/checkPermission.md
|
|
|
27779
27886
|
|
|
27780
27887
|
> **checkPermission**(`taskId`, `vals`, `apply?`, `applyHandler?`): `Promise`\<`boolean`[]\>
|
|
27781
27888
|
|
|
27782
|
-
Defined in: [lib/task.ts:
|
|
27889
|
+
Defined in: [lib/task.ts:958](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L958)
|
|
27783
27890
|
|
|
27784
27891
|
检测应用是否有相应的权限(如果 taskId 是 sysId 则直接成功)
|
|
27785
27892
|
|
|
@@ -27826,7 +27933,7 @@ lib/task/functions/clearLocaleLang.md
|
|
|
27826
27933
|
|
|
27827
27934
|
> **clearLocaleLang**(`current`): `void`
|
|
27828
27935
|
|
|
27829
|
-
Defined in: [lib/task.ts:
|
|
27936
|
+
Defined in: [lib/task.ts:1256](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1256)
|
|
27830
27937
|
|
|
27831
27938
|
清除 task 的语言设置
|
|
27832
27939
|
|
|
@@ -27855,7 +27962,7 @@ lib/task/functions/clearLocale.md
|
|
|
27855
27962
|
|
|
27856
27963
|
> **clearLocale**(`taskId`): `void`
|
|
27857
27964
|
|
|
27858
|
-
Defined in: [lib/task.ts:
|
|
27965
|
+
Defined in: [lib/task.ts:1214](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1214)
|
|
27859
27966
|
|
|
27860
27967
|
清除任务的所有加载的语言包
|
|
27861
27968
|
|
|
@@ -27884,7 +27991,7 @@ lib/task/functions/clearSystem.md
|
|
|
27884
27991
|
|
|
27885
27992
|
> **clearSystem**(`taskId`): `Promise`\<`boolean`\>
|
|
27886
27993
|
|
|
27887
|
-
Defined in: [lib/task.ts:
|
|
27994
|
+
Defined in: [lib/task.ts:1423](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1423)
|
|
27888
27995
|
|
|
27889
27996
|
清除系统任务设定
|
|
27890
27997
|
|
|
@@ -27913,7 +28020,7 @@ lib/task/functions/createTimer.md
|
|
|
27913
28020
|
|
|
27914
28021
|
> **createTimer**(`current`, `fun`, `delay`, `opt?`): `number`
|
|
27915
28022
|
|
|
27916
|
-
Defined in: [lib/task.ts:
|
|
28023
|
+
Defined in: [lib/task.ts:1274](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1274)
|
|
27917
28024
|
|
|
27918
28025
|
创建 timer
|
|
27919
28026
|
|
|
@@ -27960,7 +28067,7 @@ lib/task/functions/end.md
|
|
|
27960
28067
|
|
|
27961
28068
|
> **end**(`taskId`): `Promise`\<`boolean`\>
|
|
27962
28069
|
|
|
27963
|
-
Defined in: [lib/task.ts:
|
|
28070
|
+
Defined in: [lib/task.ts:1073](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1073)
|
|
27964
28071
|
|
|
27965
28072
|
完全结束任务
|
|
27966
28073
|
|
|
@@ -28016,7 +28123,7 @@ lib/task/functions/getList.md
|
|
|
28016
28123
|
|
|
28017
28124
|
> **getList**(): [`ITaskInfo`](../interfaces/ITaskInfo.md)[]
|
|
28018
28125
|
|
|
28019
|
-
Defined in: [lib/task.ts:
|
|
28126
|
+
Defined in: [lib/task.ts:386](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L386)
|
|
28020
28127
|
|
|
28021
28128
|
获取 task list 的简略情况
|
|
28022
28129
|
|
|
@@ -28122,7 +28229,7 @@ lib/task/functions/getPermissions.md
|
|
|
28122
28229
|
|
|
28123
28230
|
> **getPermissions**(`current`): `string`[]
|
|
28124
28231
|
|
|
28125
|
-
Defined in: [lib/task.ts:
|
|
28232
|
+
Defined in: [lib/task.ts:373](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L373)
|
|
28126
28233
|
|
|
28127
28234
|
获取某个任务的已授权权限列表
|
|
28128
28235
|
|
|
@@ -28186,7 +28293,7 @@ lib/task/functions/init.md
|
|
|
28186
28293
|
|
|
28187
28294
|
> **init**(): `void`
|
|
28188
28295
|
|
|
28189
|
-
Defined in: [lib/task.ts:
|
|
28296
|
+
Defined in: [lib/task.ts:1511](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1511)
|
|
28190
28297
|
|
|
28191
28298
|
## Returns
|
|
28192
28299
|
|
|
@@ -28234,7 +28341,7 @@ lib/task/functions/loadLocaleData.md
|
|
|
28234
28341
|
|
|
28235
28342
|
> **loadLocaleData**(`taskId`, `lang`, `data`, `pre?`): `void`
|
|
28236
28343
|
|
|
28237
|
-
Defined in: [lib/task.ts:
|
|
28344
|
+
Defined in: [lib/task.ts:1158](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1158)
|
|
28238
28345
|
|
|
28239
28346
|
加载 locale data 对象到 task
|
|
28240
28347
|
|
|
@@ -28281,7 +28388,7 @@ lib/task/functions/loadLocale.md
|
|
|
28281
28388
|
|
|
28282
28389
|
> **loadLocale**(`taskId`, `lang`, `path`): `Promise`\<`boolean`\>
|
|
28283
28390
|
|
|
28284
|
-
Defined in: [lib/task.ts:
|
|
28391
|
+
Defined in: [lib/task.ts:1185](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1185)
|
|
28285
28392
|
|
|
28286
28393
|
加载 locale 文件 json
|
|
28287
28394
|
|
|
@@ -28322,7 +28429,7 @@ lib/task/functions/offFrame.md
|
|
|
28322
28429
|
|
|
28323
28430
|
> **offFrame**(`current`, `ft`): `void`
|
|
28324
28431
|
|
|
28325
|
-
Defined in: [lib/task.ts:
|
|
28432
|
+
Defined in: [lib/task.ts:353](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L353)
|
|
28326
28433
|
|
|
28327
28434
|
移除 frame 监听
|
|
28328
28435
|
|
|
@@ -28357,7 +28464,7 @@ lib/task/functions/onFrame.md
|
|
|
28357
28464
|
|
|
28358
28465
|
> **onFrame**(`current`, `fun`, `opt?`): `number`
|
|
28359
28466
|
|
|
28360
|
-
Defined in: [lib/task.ts:
|
|
28467
|
+
Defined in: [lib/task.ts:272](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L272)
|
|
28361
28468
|
|
|
28362
28469
|
创建 frame 监听,formId 存在则为窗体范围,否则为任务级范围
|
|
28363
28470
|
|
|
@@ -28404,7 +28511,7 @@ lib/task/functions/refreshSystemPosition.md
|
|
|
28404
28511
|
|
|
28405
28512
|
> **refreshSystemPosition**(): `void`
|
|
28406
28513
|
|
|
28407
|
-
Defined in: [lib/task.ts:
|
|
28514
|
+
Defined in: [lib/task.ts:1455](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1455)
|
|
28408
28515
|
|
|
28409
28516
|
刷新系统任务的 form 的位置以及 length
|
|
28410
28517
|
|
|
@@ -28425,7 +28532,7 @@ lib/task/functions/removeTimer.md
|
|
|
28425
28532
|
|
|
28426
28533
|
> **removeTimer**(`current`, `timer`): `void`
|
|
28427
28534
|
|
|
28428
|
-
Defined in: [lib/task.ts:
|
|
28535
|
+
Defined in: [lib/task.ts:1341](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1341)
|
|
28429
28536
|
|
|
28430
28537
|
移除 timer
|
|
28431
28538
|
|
|
@@ -28460,7 +28567,7 @@ lib/task/functions/run.md
|
|
|
28460
28567
|
|
|
28461
28568
|
> **run**(`current`, `url`, `opt?`): `Promise`\<`string` \| `number`\>
|
|
28462
28569
|
|
|
28463
|
-
Defined in: [lib/task.ts:
|
|
28570
|
+
Defined in: [lib/task.ts:423](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L423)
|
|
28464
28571
|
|
|
28465
28572
|
运行一个应用
|
|
28466
28573
|
|
|
@@ -28503,7 +28610,7 @@ lib/task/functions/runThread.md
|
|
|
28503
28610
|
|
|
28504
28611
|
> **runThread**(`current`, `cls`, `data?`): [`IThread`](../interfaces/IThread.md)
|
|
28505
28612
|
|
|
28506
|
-
Defined in: [lib/task.ts:
|
|
28613
|
+
Defined in: [lib/task.ts:1613](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1613)
|
|
28507
28614
|
|
|
28508
28615
|
运行线程(同一个线程文件只能运行一个)
|
|
28509
28616
|
|
|
@@ -28573,7 +28680,7 @@ lib/task/functions/setLocaleLang.md
|
|
|
28573
28680
|
|
|
28574
28681
|
> **setLocaleLang**(`current`, `lang`): `void`
|
|
28575
28682
|
|
|
28576
|
-
Defined in: [lib/task.ts:
|
|
28683
|
+
Defined in: [lib/task.ts:1241](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1241)
|
|
28577
28684
|
|
|
28578
28685
|
设置本 task 的语言 name
|
|
28579
28686
|
|
|
@@ -28608,7 +28715,7 @@ lib/task/functions/setLocale.md
|
|
|
28608
28715
|
|
|
28609
28716
|
> **setLocale**(`taskId`, `lang`, `path`): `Promise`\<`boolean`\>
|
|
28610
28717
|
|
|
28611
|
-
Defined in: [lib/task.ts:
|
|
28718
|
+
Defined in: [lib/task.ts:1231](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1231)
|
|
28612
28719
|
|
|
28613
28720
|
加载全新 locale(老 locale 的所有语言的缓存会被卸载)
|
|
28614
28721
|
|
|
@@ -28649,7 +28756,7 @@ lib/task/functions/setSystem.md
|
|
|
28649
28756
|
|
|
28650
28757
|
> **setSystem**(`taskId`, `formId`): `boolean`
|
|
28651
28758
|
|
|
28652
|
-
Defined in: [lib/task.ts:
|
|
28759
|
+
Defined in: [lib/task.ts:1385](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1385)
|
|
28653
28760
|
|
|
28654
28761
|
将任务注册为系统 task
|
|
28655
28762
|
|
|
@@ -28684,7 +28791,7 @@ lib/task/functions/sleep.md
|
|
|
28684
28791
|
|
|
28685
28792
|
> **sleep**(`current`, `fun`, `delay`): `number`
|
|
28686
28793
|
|
|
28687
|
-
Defined in: [lib/task.ts:
|
|
28794
|
+
Defined in: [lib/task.ts:1364](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1364)
|
|
28688
28795
|
|
|
28689
28796
|
暂停一小段时间
|
|
28690
28797
|
|
|
@@ -28787,7 +28894,7 @@ lib/task/interfaces/ICreateTimerOptions.md
|
|
|
28787
28894
|
|
|
28788
28895
|
# Interface: ICreateTimerOptions
|
|
28789
28896
|
|
|
28790
|
-
Defined in: [lib/task.ts:
|
|
28897
|
+
Defined in: [lib/task.ts:1810](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1810)
|
|
28791
28898
|
|
|
28792
28899
|
## Properties
|
|
28793
28900
|
|
|
@@ -28795,7 +28902,7 @@ Defined in: [lib/task.ts:1772](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28795
28902
|
|
|
28796
28903
|
> `optional` **count?**: `number`
|
|
28797
28904
|
|
|
28798
|
-
Defined in: [lib/task.ts:
|
|
28905
|
+
Defined in: [lib/task.ts:1814](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1814)
|
|
28799
28906
|
|
|
28800
28907
|
***
|
|
28801
28908
|
|
|
@@ -28803,7 +28910,7 @@ Defined in: [lib/task.ts:1776](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28803
28910
|
|
|
28804
28911
|
> `optional` **formId?**: `string`
|
|
28805
28912
|
|
|
28806
|
-
Defined in: [lib/task.ts:
|
|
28913
|
+
Defined in: [lib/task.ts:1811](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1811)
|
|
28807
28914
|
|
|
28808
28915
|
***
|
|
28809
28916
|
|
|
@@ -28811,7 +28918,7 @@ Defined in: [lib/task.ts:1773](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28811
28918
|
|
|
28812
28919
|
> `optional` **immediate?**: `boolean`
|
|
28813
28920
|
|
|
28814
|
-
Defined in: [lib/task.ts:
|
|
28921
|
+
Defined in: [lib/task.ts:1813](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1813)
|
|
28815
28922
|
|
|
28816
28923
|
lib/task/interfaces/IRuntime.md
|
|
28817
28924
|
---
|
|
@@ -28824,7 +28931,7 @@ lib/task/interfaces/IRuntime.md
|
|
|
28824
28931
|
|
|
28825
28932
|
# Interface: IRuntime
|
|
28826
28933
|
|
|
28827
|
-
Defined in: [lib/task.ts:
|
|
28934
|
+
Defined in: [lib/task.ts:1775](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1775)
|
|
28828
28935
|
|
|
28829
28936
|
## Properties
|
|
28830
28937
|
|
|
@@ -28832,7 +28939,7 @@ Defined in: [lib/task.ts:1737](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28832
28939
|
|
|
28833
28940
|
> **dialogCreating**: `number`
|
|
28834
28941
|
|
|
28835
|
-
Defined in: [lib/task.ts:
|
|
28942
|
+
Defined in: [lib/task.ts:1778](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1778)
|
|
28836
28943
|
|
|
28837
28944
|
正在异步创建 dialog 的数量,用于防止快速重复调用产生多个 dialog
|
|
28838
28945
|
|
|
@@ -28842,7 +28949,7 @@ Defined in: [lib/task.ts:1740](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28842
28949
|
|
|
28843
28950
|
> **dialogFormIds**: `string`[]
|
|
28844
28951
|
|
|
28845
|
-
Defined in: [lib/task.ts:
|
|
28952
|
+
Defined in: [lib/task.ts:1776](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1776)
|
|
28846
28953
|
|
|
28847
28954
|
***
|
|
28848
28955
|
|
|
@@ -28850,7 +28957,7 @@ Defined in: [lib/task.ts:1738](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28850
28957
|
|
|
28851
28958
|
> **index**: `number`
|
|
28852
28959
|
|
|
28853
|
-
Defined in: [lib/task.ts:
|
|
28960
|
+
Defined in: [lib/task.ts:1780](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1780)
|
|
28854
28961
|
|
|
28855
28962
|
***
|
|
28856
28963
|
|
|
@@ -28858,7 +28965,7 @@ Defined in: [lib/task.ts:1742](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28858
28965
|
|
|
28859
28966
|
> **permissions**: `string`[]
|
|
28860
28967
|
|
|
28861
|
-
Defined in: [lib/task.ts:
|
|
28968
|
+
Defined in: [lib/task.ts:1779](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1779)
|
|
28862
28969
|
|
|
28863
28970
|
lib/task/interfaces/ISystemTaskInfo.md
|
|
28864
28971
|
---
|
|
@@ -28871,7 +28978,7 @@ lib/task/interfaces/ISystemTaskInfo.md
|
|
|
28871
28978
|
|
|
28872
28979
|
# Interface: ISystemTaskInfo
|
|
28873
28980
|
|
|
28874
|
-
Defined in: [lib/task.ts:
|
|
28981
|
+
Defined in: [lib/task.ts:1784](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1784)
|
|
28875
28982
|
|
|
28876
28983
|
系统任务信息
|
|
28877
28984
|
|
|
@@ -28881,7 +28988,7 @@ Defined in: [lib/task.ts:1746](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28881
28988
|
|
|
28882
28989
|
> **formId**: `string`
|
|
28883
28990
|
|
|
28884
|
-
Defined in: [lib/task.ts:
|
|
28991
|
+
Defined in: [lib/task.ts:1786](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1786)
|
|
28885
28992
|
|
|
28886
28993
|
***
|
|
28887
28994
|
|
|
@@ -28889,7 +28996,7 @@ Defined in: [lib/task.ts:1748](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28889
28996
|
|
|
28890
28997
|
> **length**: `number`
|
|
28891
28998
|
|
|
28892
|
-
Defined in: [lib/task.ts:
|
|
28999
|
+
Defined in: [lib/task.ts:1787](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1787)
|
|
28893
29000
|
|
|
28894
29001
|
***
|
|
28895
29002
|
|
|
@@ -28897,7 +29004,7 @@ Defined in: [lib/task.ts:1749](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28897
29004
|
|
|
28898
29005
|
> **taskId**: `string`
|
|
28899
29006
|
|
|
28900
|
-
Defined in: [lib/task.ts:
|
|
29007
|
+
Defined in: [lib/task.ts:1785](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1785)
|
|
28901
29008
|
|
|
28902
29009
|
lib/task/interfaces/ITaskInfo.md
|
|
28903
29010
|
---
|
|
@@ -28910,7 +29017,7 @@ lib/task/interfaces/ITaskInfo.md
|
|
|
28910
29017
|
|
|
28911
29018
|
# Interface: ITaskInfo
|
|
28912
29019
|
|
|
28913
|
-
Defined in: [lib/task.ts:
|
|
29020
|
+
Defined in: [lib/task.ts:1818](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1818)
|
|
28914
29021
|
|
|
28915
29022
|
Task 的简略情况,通常在 list 当中
|
|
28916
29023
|
|
|
@@ -28920,7 +29027,7 @@ Task 的简略情况,通常在 list 当中
|
|
|
28920
29027
|
|
|
28921
29028
|
> **current**: `string`
|
|
28922
29029
|
|
|
28923
|
-
Defined in: [lib/task.ts:
|
|
29030
|
+
Defined in: [lib/task.ts:1827](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1827)
|
|
28924
29031
|
|
|
28925
29032
|
***
|
|
28926
29033
|
|
|
@@ -28928,7 +29035,7 @@ Defined in: [lib/task.ts:1789](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28928
29035
|
|
|
28929
29036
|
> **customTheme**: `boolean`
|
|
28930
29037
|
|
|
28931
|
-
Defined in: [lib/task.ts:
|
|
29038
|
+
Defined in: [lib/task.ts:1823](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1823)
|
|
28932
29039
|
|
|
28933
29040
|
***
|
|
28934
29041
|
|
|
@@ -28936,7 +29043,7 @@ Defined in: [lib/task.ts:1785](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28936
29043
|
|
|
28937
29044
|
> **formCount**: `number`
|
|
28938
29045
|
|
|
28939
|
-
Defined in: [lib/task.ts:
|
|
29046
|
+
Defined in: [lib/task.ts:1824](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1824)
|
|
28940
29047
|
|
|
28941
29048
|
***
|
|
28942
29049
|
|
|
@@ -28944,7 +29051,7 @@ Defined in: [lib/task.ts:1786](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28944
29051
|
|
|
28945
29052
|
> **icon**: `string`
|
|
28946
29053
|
|
|
28947
|
-
Defined in: [lib/task.ts:
|
|
29054
|
+
Defined in: [lib/task.ts:1825](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1825)
|
|
28948
29055
|
|
|
28949
29056
|
***
|
|
28950
29057
|
|
|
@@ -28952,7 +29059,7 @@ Defined in: [lib/task.ts:1787](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28952
29059
|
|
|
28953
29060
|
> **id**: `string`
|
|
28954
29061
|
|
|
28955
|
-
Defined in: [lib/task.ts:
|
|
29062
|
+
Defined in: [lib/task.ts:1820](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1820)
|
|
28956
29063
|
|
|
28957
29064
|
任务 ID
|
|
28958
29065
|
|
|
@@ -28962,7 +29069,7 @@ Defined in: [lib/task.ts:1782](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28962
29069
|
|
|
28963
29070
|
> **locale**: `string`
|
|
28964
29071
|
|
|
28965
|
-
Defined in: [lib/task.ts:
|
|
29072
|
+
Defined in: [lib/task.ts:1822](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1822)
|
|
28966
29073
|
|
|
28967
29074
|
***
|
|
28968
29075
|
|
|
@@ -28970,7 +29077,7 @@ Defined in: [lib/task.ts:1784](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28970
29077
|
|
|
28971
29078
|
> **name**: `string`
|
|
28972
29079
|
|
|
28973
|
-
Defined in: [lib/task.ts:
|
|
29080
|
+
Defined in: [lib/task.ts:1821](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1821)
|
|
28974
29081
|
|
|
28975
29082
|
***
|
|
28976
29083
|
|
|
@@ -28978,7 +29085,7 @@ Defined in: [lib/task.ts:1783](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
28978
29085
|
|
|
28979
29086
|
> **path**: `string`
|
|
28980
29087
|
|
|
28981
|
-
Defined in: [lib/task.ts:
|
|
29088
|
+
Defined in: [lib/task.ts:1826](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1826)
|
|
28982
29089
|
|
|
28983
29090
|
lib/task/interfaces/ITask.md
|
|
28984
29091
|
---
|
|
@@ -28991,7 +29098,7 @@ lib/task/interfaces/ITask.md
|
|
|
28991
29098
|
|
|
28992
29099
|
# Interface: ITask
|
|
28993
29100
|
|
|
28994
|
-
Defined in: [lib/task.ts:
|
|
29101
|
+
Defined in: [lib/task.ts:1738](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1738)
|
|
28995
29102
|
|
|
28996
29103
|
运行中的任务对象
|
|
28997
29104
|
|
|
@@ -29001,7 +29108,7 @@ Defined in: [lib/task.ts:1700](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29001
29108
|
|
|
29002
29109
|
> **app**: [`IApp`](../../core/interfaces/IApp.md)
|
|
29003
29110
|
|
|
29004
|
-
Defined in: [lib/task.ts:
|
|
29111
|
+
Defined in: [lib/task.ts:1740](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1740)
|
|
29005
29112
|
|
|
29006
29113
|
***
|
|
29007
29114
|
|
|
@@ -29009,7 +29116,7 @@ Defined in: [lib/task.ts:1702](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29009
29116
|
|
|
29010
29117
|
> **class**: [`AbstractApp`](../../core/classes/AbstractApp.md)
|
|
29011
29118
|
|
|
29012
|
-
Defined in: [lib/task.ts:
|
|
29119
|
+
Defined in: [lib/task.ts:1741](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1741)
|
|
29013
29120
|
|
|
29014
29121
|
***
|
|
29015
29122
|
|
|
@@ -29017,7 +29124,7 @@ Defined in: [lib/task.ts:1703](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29017
29124
|
|
|
29018
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`\>; \}\>
|
|
29019
29126
|
|
|
29020
|
-
Defined in: [lib/task.ts:
|
|
29127
|
+
Defined in: [lib/task.ts:1755](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1755)
|
|
29021
29128
|
|
|
29022
29129
|
已解析的控件处理后的对象,任务启动时解析,窗体创建时部分复用
|
|
29023
29130
|
|
|
@@ -29027,7 +29134,7 @@ Defined in: [lib/task.ts:1717](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29027
29134
|
|
|
29028
29135
|
> **current**: `string`
|
|
29029
29136
|
|
|
29030
|
-
Defined in: [lib/task.ts:
|
|
29137
|
+
Defined in: [lib/task.ts:1750](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1750)
|
|
29031
29138
|
|
|
29032
29139
|
当前 app 运行路径,末尾不含 /
|
|
29033
29140
|
|
|
@@ -29037,7 +29144,7 @@ Defined in: [lib/task.ts:1712](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29037
29144
|
|
|
29038
29145
|
> **customTheme**: `boolean`
|
|
29039
29146
|
|
|
29040
|
-
Defined in: [lib/task.ts:
|
|
29147
|
+
Defined in: [lib/task.ts:1742](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1742)
|
|
29041
29148
|
|
|
29042
29149
|
***
|
|
29043
29150
|
|
|
@@ -29045,7 +29152,7 @@ Defined in: [lib/task.ts:1704](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29045
29152
|
|
|
29046
29153
|
> **forms**: `Record`\<`string`, [`IForm`](../../form/interfaces/IForm.md)\>
|
|
29047
29154
|
|
|
29048
|
-
Defined in: [lib/task.ts:
|
|
29155
|
+
Defined in: [lib/task.ts:1753](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1753)
|
|
29049
29156
|
|
|
29050
29157
|
窗体对象列表
|
|
29051
29158
|
|
|
@@ -29055,7 +29162,7 @@ Defined in: [lib/task.ts:1715](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29055
29162
|
|
|
29056
29163
|
> **id**: `string`
|
|
29057
29164
|
|
|
29058
|
-
Defined in: [lib/task.ts:
|
|
29165
|
+
Defined in: [lib/task.ts:1739](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1739)
|
|
29059
29166
|
|
|
29060
29167
|
***
|
|
29061
29168
|
|
|
@@ -29063,7 +29170,7 @@ Defined in: [lib/task.ts:1701](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29063
29170
|
|
|
29064
29171
|
> **locale**: `object`
|
|
29065
29172
|
|
|
29066
|
-
Defined in: [lib/task.ts:
|
|
29173
|
+
Defined in: [lib/task.ts:1743](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1743)
|
|
29067
29174
|
|
|
29068
29175
|
#### data
|
|
29069
29176
|
|
|
@@ -29079,7 +29186,7 @@ Defined in: [lib/task.ts:1705](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29079
29186
|
|
|
29080
29187
|
> **path**: `string`
|
|
29081
29188
|
|
|
29082
|
-
Defined in: [lib/task.ts:
|
|
29189
|
+
Defined in: [lib/task.ts:1748](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1748)
|
|
29083
29190
|
|
|
29084
29191
|
当前 app 自己的完整路径,如 /x/xx.cga,或 /x/x,末尾不含 /
|
|
29085
29192
|
|
|
@@ -29089,7 +29196,7 @@ Defined in: [lib/task.ts:1710](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29089
29196
|
|
|
29090
29197
|
> **threads**: `Record`\<`string`, [`IThread`](IThread.md)\>
|
|
29091
29198
|
|
|
29092
|
-
Defined in: [lib/task.ts:
|
|
29199
|
+
Defined in: [lib/task.ts:1772](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1772)
|
|
29093
29200
|
|
|
29094
29201
|
文件名 -> thread 控制对象
|
|
29095
29202
|
|
|
@@ -29099,7 +29206,7 @@ Defined in: [lib/task.ts:1734](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29099
29206
|
|
|
29100
29207
|
> **timers**: `Record`\<`string`, `string`\>
|
|
29101
29208
|
|
|
29102
|
-
Defined in: [lib/task.ts:
|
|
29209
|
+
Defined in: [lib/task.ts:1770](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1770)
|
|
29103
29210
|
|
|
29104
29211
|
任务中的 timer 列表
|
|
29105
29212
|
|
|
@@ -29114,7 +29221,7 @@ lib/task/interfaces/ITaskRunOptions.md
|
|
|
29114
29221
|
|
|
29115
29222
|
# Interface: ITaskRunOptions
|
|
29116
29223
|
|
|
29117
|
-
Defined in: [lib/task.ts:
|
|
29224
|
+
Defined in: [lib/task.ts:1790](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1790)
|
|
29118
29225
|
|
|
29119
29226
|
## Properties
|
|
29120
29227
|
|
|
@@ -29122,7 +29229,7 @@ Defined in: [lib/task.ts:1752](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29122
29229
|
|
|
29123
29230
|
> `optional` **after?**: `string`
|
|
29124
29231
|
|
|
29125
|
-
Defined in: [lib/task.ts:
|
|
29232
|
+
Defined in: [lib/task.ts:1803](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1803)
|
|
29126
29233
|
|
|
29127
29234
|
如果是网络加载 cga,则网址后面会附带,如 ?123
|
|
29128
29235
|
|
|
@@ -29132,7 +29239,7 @@ Defined in: [lib/task.ts:1765](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29132
29239
|
|
|
29133
29240
|
> `optional` **data?**: `Record`\<`string`, `any`\>
|
|
29134
29241
|
|
|
29135
|
-
Defined in: [lib/task.ts:
|
|
29242
|
+
Defined in: [lib/task.ts:1805](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1805)
|
|
29136
29243
|
|
|
29137
29244
|
给 task 传值
|
|
29138
29245
|
|
|
@@ -29142,7 +29249,7 @@ Defined in: [lib/task.ts:1767](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29142
29249
|
|
|
29143
29250
|
> `optional` **icon?**: `string`
|
|
29144
29251
|
|
|
29145
|
-
Defined in: [lib/task.ts:
|
|
29252
|
+
Defined in: [lib/task.ts:1791](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1791)
|
|
29146
29253
|
|
|
29147
29254
|
***
|
|
29148
29255
|
|
|
@@ -29150,7 +29257,7 @@ Defined in: [lib/task.ts:1753](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29150
29257
|
|
|
29151
29258
|
> `optional` **initProgress?**: (`loaded`, `total`, `type`, `msg`) => `void` \| `Promise`\<`void`\>
|
|
29152
29259
|
|
|
29153
|
-
Defined in: [lib/task.ts:
|
|
29260
|
+
Defined in: [lib/task.ts:1793](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1793)
|
|
29154
29261
|
|
|
29155
29262
|
初始化进度回调
|
|
29156
29263
|
|
|
@@ -29182,7 +29289,7 @@ Defined in: [lib/task.ts:1755](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29182
29289
|
|
|
29183
29290
|
> `optional` **notify?**: `boolean`
|
|
29184
29291
|
|
|
29185
|
-
Defined in: [lib/task.ts:
|
|
29292
|
+
Defined in: [lib/task.ts:1799](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1799)
|
|
29186
29293
|
|
|
29187
29294
|
显示 notify 窗口
|
|
29188
29295
|
|
|
@@ -29192,7 +29299,7 @@ Defined in: [lib/task.ts:1761](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29192
29299
|
|
|
29193
29300
|
> `optional` **path?**: `string`
|
|
29194
29301
|
|
|
29195
|
-
Defined in: [lib/task.ts:
|
|
29302
|
+
Defined in: [lib/task.ts:1807](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1807)
|
|
29196
29303
|
|
|
29197
29304
|
执行文件的基路径,一般在传入 APP 包时使用,以 .cga 结尾
|
|
29198
29305
|
|
|
@@ -29202,7 +29309,7 @@ Defined in: [lib/task.ts:1769](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29202
29309
|
|
|
29203
29310
|
> `optional` **permissions?**: `string`[]
|
|
29204
29311
|
|
|
29205
|
-
Defined in: [lib/task.ts:
|
|
29312
|
+
Defined in: [lib/task.ts:1801](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1801)
|
|
29206
29313
|
|
|
29207
29314
|
直接赋予此任务相应权限,有 "root" 权限的应用才能设置
|
|
29208
29315
|
|
|
@@ -29212,7 +29319,7 @@ Defined in: [lib/task.ts:1763](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29212
29319
|
|
|
29213
29320
|
> `optional` **perProgress?**: (`per`) => `void` \| `Promise`\<`void`\>
|
|
29214
29321
|
|
|
29215
|
-
Defined in: [lib/task.ts:
|
|
29322
|
+
Defined in: [lib/task.ts:1797](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1797)
|
|
29216
29323
|
|
|
29217
29324
|
返回总加载进度百分比(0 - 1)
|
|
29218
29325
|
|
|
@@ -29232,7 +29339,7 @@ Defined in: [lib/task.ts:1759](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29232
29339
|
|
|
29233
29340
|
> `optional` **progress?**: (`loaded`, `total`, `type`, `path`) => `void` \| `Promise`\<`void`\>
|
|
29234
29341
|
|
|
29235
|
-
Defined in: [lib/task.ts:
|
|
29342
|
+
Defined in: [lib/task.ts:1795](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1795)
|
|
29236
29343
|
|
|
29237
29344
|
加载进度回调(根据 type 分为不同阶段)
|
|
29238
29345
|
|
|
@@ -29269,7 +29376,7 @@ lib/task/interfaces/IThread.md
|
|
|
29269
29376
|
|
|
29270
29377
|
# Interface: IThread
|
|
29271
29378
|
|
|
29272
|
-
Defined in: [lib/task.ts:
|
|
29379
|
+
Defined in: [lib/task.ts:1726](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1726)
|
|
29273
29380
|
|
|
29274
29381
|
## Properties
|
|
29275
29382
|
|
|
@@ -29277,7 +29384,7 @@ Defined in: [lib/task.ts:1688](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29277
29384
|
|
|
29278
29385
|
> **end**: () => `Promise`\<`void`\>
|
|
29279
29386
|
|
|
29280
|
-
Defined in: [lib/task.ts:
|
|
29387
|
+
Defined in: [lib/task.ts:1734](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1734)
|
|
29281
29388
|
|
|
29282
29389
|
结束线程
|
|
29283
29390
|
|
|
@@ -29291,7 +29398,7 @@ Defined in: [lib/task.ts:1696](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29291
29398
|
|
|
29292
29399
|
> **off**: (`name`, `handler`) => `void`
|
|
29293
29400
|
|
|
29294
|
-
Defined in: [lib/task.ts:
|
|
29401
|
+
Defined in: [lib/task.ts:1730](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1730)
|
|
29295
29402
|
|
|
29296
29403
|
移除事件
|
|
29297
29404
|
|
|
@@ -29315,7 +29422,7 @@ Defined in: [lib/task.ts:1692](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29315
29422
|
|
|
29316
29423
|
> **on**: (`name`, `handler`) => `void`
|
|
29317
29424
|
|
|
29318
|
-
Defined in: [lib/task.ts:
|
|
29425
|
+
Defined in: [lib/task.ts:1728](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1728)
|
|
29319
29426
|
|
|
29320
29427
|
绑定事件
|
|
29321
29428
|
|
|
@@ -29339,7 +29446,7 @@ Defined in: [lib/task.ts:1690](https://github.com/maiyun/clickgo/blob/master/dis
|
|
|
29339
29446
|
|
|
29340
29447
|
> **send**: (`data`) => `void`
|
|
29341
29448
|
|
|
29342
|
-
Defined in: [lib/task.ts:
|
|
29449
|
+
Defined in: [lib/task.ts:1732](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1732)
|
|
29343
29450
|
|
|
29344
29451
|
发送数据
|
|
29345
29452
|
|
|
@@ -29366,7 +29473,7 @@ lib/task/variables/systemTaskInfo.md
|
|
|
29366
29473
|
|
|
29367
29474
|
> **systemTaskInfo**: [`ISystemTaskInfo`](../interfaces/ISystemTaskInfo.md)
|
|
29368
29475
|
|
|
29369
|
-
Defined in: [lib/task.ts:
|
|
29476
|
+
Defined in: [lib/task.ts:1378](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1378)
|
|
29370
29477
|
|
|
29371
29478
|
task 的信息
|
|
29372
29479
|
|