clickgo 5.10.2 → 5.11.0

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.
@@ -1905,7 +1905,7 @@ ECharts 配置选项。
1905
1905
 
1906
1906
  #### init
1907
1907
 
1908
- `(canvas: any) => void`
1908
+ `(canvas: fabric.Canvas) => void`
1909
1909
 
1910
1910
  加载成功并初始化 fabric js 的 canvas 对象后触发,利用此抛出对象可执行原生的所有绘图和操作方法。
1911
1911
 
@@ -4128,9 +4128,18 @@ CSS 样式字符串。
4128
4128
 
4129
4129
  ```xml
4130
4130
  <menulist>
4131
- <menulist-item label="Item 1"></menulist-item>
4132
- <menulist-split></menulist-split>
4133
- <menulist-item label="Item 2"></menulist-item>
4131
+ <menulist-item>
4132
+ <template v-slot>File</template>
4133
+ <template v-slot:pop>
4134
+ <menulist>
4135
+ <menulist-item label="New"></menulist-item>
4136
+ <menulist-item label="Open"></menulist-item>
4137
+ <menulist-split></menulist-split>
4138
+ <menulist-item label="Exit"></menulist-item>
4139
+ </menulist>
4140
+ </template>
4141
+ </menulist-item>
4142
+ <menulist-item label="Edit"></menulist-item>
4134
4143
  </menulist>
4135
4144
  ```
4136
4145
 
@@ -5612,6 +5621,88 @@ QR 码组件,用于生成二维码。
5612
5621
  </sgroup>
5613
5622
  ```
5614
5623
 
5624
+ ## stab
5625
+ ---
5626
+
5627
+ 轻量化选项卡控件,与 `stab-item` 搭配使用,仅提供选项切换功能,无面板内容区域和方向设置。支持 `default`、`plain`、`light`、`rect` 四种外观样式。
5628
+
5629
+ ### 参数
5630
+
5631
+ #### modelValue
5632
+
5633
+ `number`
5634
+
5635
+ 双向绑定,当前选中的索引,从 0 开始,默认 `0`。
5636
+
5637
+ #### type
5638
+
5639
+ `string`
5640
+
5641
+ 外观类型,可选 `default`(底线型)、`plain`(无底边框底线型)、`light`(胶囊型)、`rect`(矩形滑块型),默认 `'default'`。
5642
+
5643
+ ### 事件
5644
+
5645
+ 无。
5646
+
5647
+ ### 样式
5648
+
5649
+ **布局结构**:水平 flex 容器,居中对齐,子元素为 `stab-item` 控件。
5650
+
5651
+ **视觉特征**:`default` 模式底部带 `.5px` 边框,`light` 模式为无边框间隔胶囊布局,`rect` 模式为圆角灰色背景容器,内有白色滑块通过 `::before` 伪元素实现过渡动画。
5652
+
5653
+ **交互响应**:`rect` 模式切换时滑块平滑移动,位置由子 `stab-item` 上报的宽度与偏移量通过 CSS 自定义属性驱动。
5654
+
5655
+ ### 示例
5656
+
5657
+ ```html
5658
+ <stab v-model="tab" type="default">
5659
+ <stab-item>Tab 1</stab-item>
5660
+ <stab-item>Tab 2</stab-item>
5661
+ <stab-item>Tab 3</stab-item>
5662
+ </stab>
5663
+ ```
5664
+
5665
+
5666
+ ## stab-item
5667
+ ---
5668
+
5669
+ 轻量化选项卡子项控件,与父级 `stab` 控件搭配使用。点击后通知父级更新选中索引,并在 `rect` 模式下自动上报自身宽度与位置以驱动滑块动画。
5670
+
5671
+ ## 参数
5672
+
5673
+ 无。
5674
+
5675
+ ## 事件
5676
+
5677
+ 无。
5678
+
5679
+ ## 方法
5680
+
5681
+ 无。
5682
+
5683
+ ## 插槽
5684
+
5685
+ 无(`default` 插槽用于放置选项卡标签文本或内容)。
5686
+
5687
+ ## 样式
5688
+
5689
+ **布局结构**:块级 flex 元素,通过 `selected` 类标记当前选中状态,并从父级 `stab` 获取 `type` 类以切换对应外观。
5690
+
5691
+ **视觉特征**:`default`/`plain` 模式选中时显示主题色文字与底部 3px 指示线;`light` 模式选中时显示圆角灰色背景;`rect` 模式下元素叠在滑块之上,选中态保持默认文字色。
5692
+
5693
+ **交互响应**:点击时立即切换选中状态,`rect` 模式下同步触发 `resize` 上报位置给父级;所有状态变化均通过 `var(--g-transition)` 过渡动画。
5694
+
5695
+ ## 示例
5696
+
5697
+ ```html
5698
+ <stab v-model="tab">
5699
+ <stab-item>Tab 1</stab-item>
5700
+ <stab-item>Tab 2</stab-item>
5701
+ <stab-item>Tab 3</stab-item>
5702
+ </stab>
5703
+ ```
5704
+
5705
+
5615
5706
  ## step
5616
5707
  ---
5617
5708
 
@@ -17657,7 +17748,7 @@ Defined in: [lib/form.ts:477](https://github.com/maiyun/clickgo/blob/master/dist
17657
17748
 
17658
17749
  > **dialogResult**: `string` = `''`
17659
17750
 
17660
- Defined in: [lib/form.ts:762](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L762)
17751
+ Defined in: [lib/form.ts:766](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L766)
17661
17752
 
17662
17753
  dialog mask 窗体返回值,在 close 之后会进行传导
17663
17754
 
@@ -17687,7 +17778,7 @@ Defined in: [lib/form.ts:482](https://github.com/maiyun/clickgo/blob/master/dist
17687
17778
 
17688
17779
  > **lockLoading**: `boolean` = `false`
17689
17780
 
17690
- Defined in: [lib/form.ts:633](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L633)
17781
+ Defined in: [lib/form.ts:637](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L637)
17691
17782
 
17692
17783
  是否阻止任何人修改 loading
17693
17784
 
@@ -17853,7 +17944,7 @@ Defined in: [lib/form.ts:488](https://github.com/maiyun/clickgo/blob/master/dist
17853
17944
 
17854
17945
  > **get** **formFocus**(): `boolean`
17855
17946
 
17856
- Defined in: [lib/form.ts:548](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L548)
17947
+ Defined in: [lib/form.ts:552](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L552)
17857
17948
 
17858
17949
  当前窗体是否是焦点
17859
17950
 
@@ -17957,7 +18048,7 @@ Defined in: [lib/form.ts:196](https://github.com/maiyun/clickgo/blob/master/dist
17957
18048
 
17958
18049
  > **get** **inStep**(): `boolean`
17959
18050
 
17960
- Defined in: [lib/form.ts:640](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L640)
18051
+ Defined in: [lib/form.ts:644](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L644)
17961
18052
 
17962
18053
  当前是否在 step 环节中
17963
18054
 
@@ -18027,7 +18118,7 @@ Defined in: [lib/form.ts:230](https://github.com/maiyun/clickgo/blob/master/dist
18027
18118
 
18028
18119
  > **get** **loading**(): `boolean`
18029
18120
 
18030
- Defined in: [lib/form.ts:621](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L621)
18121
+ Defined in: [lib/form.ts:625](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L625)
18031
18122
 
18032
18123
  覆盖整个窗体的 loading
18033
18124
 
@@ -18039,7 +18130,7 @@ Defined in: [lib/form.ts:621](https://github.com/maiyun/clickgo/blob/master/dist
18039
18130
 
18040
18131
  > **set** **loading**(`val`): `void`
18041
18132
 
18042
- Defined in: [lib/form.ts:625](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L625)
18133
+ Defined in: [lib/form.ts:629](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L629)
18043
18134
 
18044
18135
  ##### Parameters
18045
18136
 
@@ -18163,7 +18254,7 @@ Defined in: [lib/form.ts:279](https://github.com/maiyun/clickgo/blob/master/dist
18163
18254
 
18164
18255
  > **get** **showInSystemTask**(): `boolean`
18165
18256
 
18166
- Defined in: [lib/form.ts:554](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L554)
18257
+ Defined in: [lib/form.ts:558](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L558)
18167
18258
 
18168
18259
  当前窗体是否显示在任务栏
18169
18260
 
@@ -18175,7 +18266,7 @@ Defined in: [lib/form.ts:554](https://github.com/maiyun/clickgo/blob/master/dist
18175
18266
 
18176
18267
  > **set** **showInSystemTask**(`v`): `void`
18177
18268
 
18178
- Defined in: [lib/form.ts:559](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L559)
18269
+ Defined in: [lib/form.ts:563](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L563)
18179
18270
 
18180
18271
  ##### Parameters
18181
18272
 
@@ -18271,7 +18362,7 @@ Defined in: [lib/form.ts:299](https://github.com/maiyun/clickgo/blob/master/dist
18271
18362
 
18272
18363
  > **close**(): `void`
18273
18364
 
18274
- Defined in: [lib/form.ts:755](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L755)
18365
+ Defined in: [lib/form.ts:759](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L759)
18275
18366
 
18276
18367
  关闭当前窗体
18277
18368
 
@@ -18285,7 +18376,7 @@ Defined in: [lib/form.ts:755](https://github.com/maiyun/clickgo/blob/master/dist
18285
18376
 
18286
18377
  > **doneStep**(): `Promise`\<`void`\>
18287
18378
 
18288
- Defined in: [lib/form.ts:687](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L687)
18379
+ Defined in: [lib/form.ts:691](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L691)
18289
18380
 
18290
18381
  完成当前步骤条
18291
18382
 
@@ -18299,7 +18390,7 @@ Defined in: [lib/form.ts:687](https://github.com/maiyun/clickgo/blob/master/dist
18299
18390
 
18300
18391
  > **enterStep**(`list`): `Promise`\<`boolean`\>
18301
18392
 
18302
- Defined in: [lib/form.ts:648](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L648)
18393
+ Defined in: [lib/form.ts:652](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L652)
18303
18394
 
18304
18395
  进入 form hash 为源的步进条
18305
18396
 
@@ -18319,7 +18410,7 @@ Defined in: [lib/form.ts:648](https://github.com/maiyun/clickgo/blob/master/dist
18319
18410
 
18320
18411
  > **formHashBack**(): `Promise`\<`void`\>
18321
18412
 
18322
- Defined in: [lib/form.ts:570](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L570)
18413
+ Defined in: [lib/form.ts:574](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L574)
18323
18414
 
18324
18415
  form hash 回退
18325
18416
 
@@ -18333,7 +18424,7 @@ form hash 回退
18333
18424
 
18334
18425
  > **hide**(): `void`
18335
18426
 
18336
- Defined in: [lib/form.ts:747](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L747)
18427
+ Defined in: [lib/form.ts:751](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L751)
18337
18428
 
18338
18429
  让窗体隐藏
18339
18430
 
@@ -18411,7 +18502,7 @@ Defined in: [lib/form.ts:341](https://github.com/maiyun/clickgo/blob/master/dist
18411
18502
 
18412
18503
  > **onConfigChanged**\<`T`\>(`n`, `v`): `void`
18413
18504
 
18414
- Defined in: [lib/form.ts:784](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L784)
18505
+ Defined in: [lib/form.ts:788](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L788)
18415
18506
 
18416
18507
  系统配置变更事件
18417
18508
 
@@ -18457,7 +18548,7 @@ Defined in: [lib/form.ts:333](https://github.com/maiyun/clickgo/blob/master/dist
18457
18548
 
18458
18549
  > **onFormBlurred**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
18459
18550
 
18460
- Defined in: [lib/form.ts:840](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L840)
18551
+ Defined in: [lib/form.ts:844](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L844)
18461
18552
 
18462
18553
  窗体丢失焦点事件
18463
18554
 
@@ -18481,7 +18572,7 @@ Defined in: [lib/form.ts:840](https://github.com/maiyun/clickgo/blob/master/dist
18481
18572
 
18482
18573
  > **onFormCreated**(`taskId`, `formId`, `title`, `icon`, `showInSystemTask`): `void` \| `Promise`\<`void`\>
18483
18574
 
18484
- Defined in: [lib/form.ts:790](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L790)
18575
+ Defined in: [lib/form.ts:794](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L794)
18485
18576
 
18486
18577
  窗体创建事件
18487
18578
 
@@ -18517,7 +18608,7 @@ Defined in: [lib/form.ts:790](https://github.com/maiyun/clickgo/blob/master/dist
18517
18608
 
18518
18609
  > **onFormFlash**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
18519
18610
 
18520
- Defined in: [lib/form.ts:846](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L846)
18611
+ Defined in: [lib/form.ts:850](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L850)
18521
18612
 
18522
18613
  窗体闪烁事件
18523
18614
 
@@ -18541,7 +18632,7 @@ Defined in: [lib/form.ts:846](https://github.com/maiyun/clickgo/blob/master/dist
18541
18632
 
18542
18633
  > **onFormFocused**(`taskId`, `formId`): `void` \| `Promise`\<`void`\>
18543
18634
 
18544
- Defined in: [lib/form.ts:834](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L834)
18635
+ Defined in: [lib/form.ts:838](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L838)
18545
18636
 
18546
18637
  窗体获得焦点事件
18547
18638
 
@@ -18565,7 +18656,7 @@ Defined in: [lib/form.ts:834](https://github.com/maiyun/clickgo/blob/master/dist
18565
18656
 
18566
18657
  > **onFormHashChange**(`taskId`, `formId`, `value`, `data`): `void` \| `Promise`\<`void`\>
18567
18658
 
18568
- Defined in: [lib/form.ts:858](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L858)
18659
+ Defined in: [lib/form.ts:862](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L862)
18569
18660
 
18570
18661
  窗体的 formHash 改变事件
18571
18662
 
@@ -18597,7 +18688,7 @@ Defined in: [lib/form.ts:858](https://github.com/maiyun/clickgo/blob/master/dist
18597
18688
 
18598
18689
  > **onFormIconChanged**(`taskId`, `formId`, `icon`): `void` \| `Promise`\<`void`\>
18599
18690
 
18600
- Defined in: [lib/form.ts:810](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L810)
18691
+ Defined in: [lib/form.ts:814](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L814)
18601
18692
 
18602
18693
  窗体图标改变事件
18603
18694
 
@@ -18625,7 +18716,7 @@ Defined in: [lib/form.ts:810](https://github.com/maiyun/clickgo/blob/master/dist
18625
18716
 
18626
18717
  > **onFormRemoved**(`taskId`, `formId`, `title`, `icon`): `void` \| `Promise`\<`void`\>
18627
18718
 
18628
- Defined in: [lib/form.ts:798](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L798)
18719
+ Defined in: [lib/form.ts:802](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L802)
18629
18720
 
18630
18721
  窗体销毁事件
18631
18722
 
@@ -18657,7 +18748,7 @@ Defined in: [lib/form.ts:798](https://github.com/maiyun/clickgo/blob/master/dist
18657
18748
 
18658
18749
  > **onFormShowChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
18659
18750
 
18660
- Defined in: [lib/form.ts:828](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L828)
18751
+ Defined in: [lib/form.ts:832](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L832)
18661
18752
 
18662
18753
  窗体显示状态改变事件
18663
18754
 
@@ -18685,7 +18776,7 @@ Defined in: [lib/form.ts:828](https://github.com/maiyun/clickgo/blob/master/dist
18685
18776
 
18686
18777
  > **onFormShowInSystemTaskChange**(`taskId`, `formId`, `value`): `void` \| `Promise`\<`void`\>
18687
18778
 
18688
- Defined in: [lib/form.ts:852](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L852)
18779
+ Defined in: [lib/form.ts:856](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L856)
18689
18780
 
18690
18781
  窗体是否显示在任务栏属性改变事件
18691
18782
 
@@ -18713,7 +18804,7 @@ Defined in: [lib/form.ts:852](https://github.com/maiyun/clickgo/blob/master/dist
18713
18804
 
18714
18805
  > **onFormStateMaxChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
18715
18806
 
18716
- Defined in: [lib/form.ts:822](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L822)
18807
+ Defined in: [lib/form.ts:826](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L826)
18717
18808
 
18718
18809
  窗体最大化状态改变事件
18719
18810
 
@@ -18741,7 +18832,7 @@ Defined in: [lib/form.ts:822](https://github.com/maiyun/clickgo/blob/master/dist
18741
18832
 
18742
18833
  > **onFormStateMinChanged**(`taskId`, `formId`, `state`): `void` \| `Promise`\<`void`\>
18743
18834
 
18744
- Defined in: [lib/form.ts:816](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L816)
18835
+ Defined in: [lib/form.ts:820](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L820)
18745
18836
 
18746
18837
  窗体最小化状态改变事件
18747
18838
 
@@ -18769,7 +18860,7 @@ Defined in: [lib/form.ts:816](https://github.com/maiyun/clickgo/blob/master/dist
18769
18860
 
18770
18861
  > **onFormTitleChanged**(`taskId`, `formId`, `title`): `void` \| `Promise`\<`void`\>
18771
18862
 
18772
- Defined in: [lib/form.ts:804](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L804)
18863
+ Defined in: [lib/form.ts:808](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L808)
18773
18864
 
18774
18865
  窗体标题改变事件
18775
18866
 
@@ -18797,7 +18888,7 @@ Defined in: [lib/form.ts:804](https://github.com/maiyun/clickgo/blob/master/dist
18797
18888
 
18798
18889
  > **onHashChanged**(`hash`): `void` \| `Promise`\<`void`\>
18799
18890
 
18800
- Defined in: [lib/form.ts:884](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L884)
18891
+ Defined in: [lib/form.ts:888](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L888)
18801
18892
 
18802
18893
  location hash 改变事件
18803
18894
 
@@ -18817,7 +18908,7 @@ location hash 改变事件
18817
18908
 
18818
18909
  > **onKeydown**(`e`): `void` \| `Promise`\<`void`\>
18819
18910
 
18820
- Defined in: [lib/form.ts:890](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L890)
18911
+ Defined in: [lib/form.ts:894](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L894)
18821
18912
 
18822
18913
  键盘按下事件
18823
18914
 
@@ -18837,7 +18928,7 @@ Defined in: [lib/form.ts:890](https://github.com/maiyun/clickgo/blob/master/dist
18837
18928
 
18838
18929
  > **onKeyup**(`e`): `void` \| `Promise`\<`void`\>
18839
18930
 
18840
- Defined in: [lib/form.ts:896](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L896)
18931
+ Defined in: [lib/form.ts:900](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L900)
18841
18932
 
18842
18933
  键盘弹起事件
18843
18934
 
@@ -18857,7 +18948,7 @@ Defined in: [lib/form.ts:896](https://github.com/maiyun/clickgo/blob/master/dist
18857
18948
 
18858
18949
  > **onLauncherFolderNameChanged**(`id`, `name`): `void` \| `Promise`\<`void`\>
18859
18950
 
18860
- Defined in: [lib/form.ts:878](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L878)
18951
+ Defined in: [lib/form.ts:882](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L882)
18861
18952
 
18862
18953
  launcher 文件夹名称修改事件
18863
18954
 
@@ -18881,7 +18972,7 @@ launcher 文件夹名称修改事件
18881
18972
 
18882
18973
  > **onMounted**(`data`): `void` \| `Promise`\<`void`\>
18883
18974
 
18884
- Defined in: [lib/form.ts:766](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L766)
18975
+ Defined in: [lib/form.ts:770](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L770)
18885
18976
 
18886
18977
  #### Parameters
18887
18978
 
@@ -18899,7 +18990,7 @@ Defined in: [lib/form.ts:766](https://github.com/maiyun/clickgo/blob/master/dist
18899
18990
 
18900
18991
  > **onReceive**(`data`): `void` \| `Promise`\<`void`\>
18901
18992
 
18902
- Defined in: [lib/form.ts:772](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L772)
18993
+ Defined in: [lib/form.ts:776](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L776)
18903
18994
 
18904
18995
  接收 send 传递过来的 data 数据
18905
18996
 
@@ -18919,7 +19010,7 @@ Defined in: [lib/form.ts:772](https://github.com/maiyun/clickgo/blob/master/dist
18919
19010
 
18920
19011
  > **onScreenResize**(): `void` \| `Promise`\<`void`\>
18921
19012
 
18922
- Defined in: [lib/form.ts:778](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L778)
19013
+ Defined in: [lib/form.ts:782](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L782)
18923
19014
 
18924
19015
  屏幕大小改变事件
18925
19016
 
@@ -18933,7 +19024,7 @@ Defined in: [lib/form.ts:778](https://github.com/maiyun/clickgo/blob/master/dist
18933
19024
 
18934
19025
  > **onTaskEnded**(`taskId`): `void` \| `Promise`\<`void`\>
18935
19026
 
18936
- Defined in: [lib/form.ts:872](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L872)
19027
+ Defined in: [lib/form.ts:876](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L876)
18937
19028
 
18938
19029
  任务结束事件
18939
19030
 
@@ -18953,7 +19044,7 @@ Defined in: [lib/form.ts:872](https://github.com/maiyun/clickgo/blob/master/dist
18953
19044
 
18954
19045
  > **onTaskStarted**(`taskId`): `void` \| `Promise`\<`void`\>
18955
19046
 
18956
- Defined in: [lib/form.ts:866](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L866)
19047
+ Defined in: [lib/form.ts:870](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L870)
18957
19048
 
18958
19049
  任务开始事件
18959
19050
 
@@ -19005,7 +19096,7 @@ Defined in: [lib/form.ts:345](https://github.com/maiyun/clickgo/blob/master/dist
19005
19096
 
19006
19097
  > **ready**(`cb`): `void`
19007
19098
 
19008
- Defined in: [lib/form.ts:564](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L564)
19099
+ Defined in: [lib/form.ts:568](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L568)
19009
19100
 
19010
19101
  将在 form 完全装载完后执行,如果已经装载完则立即执行
19011
19102
 
@@ -19057,7 +19148,7 @@ formId 要接收对象的 form id
19057
19148
 
19058
19149
  > **sendToPanel**(`panel`, `data`): `void`
19059
19150
 
19060
- Defined in: [lib/form.ts:613](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L613)
19151
+ Defined in: [lib/form.ts:617](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L617)
19061
19152
 
19062
19153
  发送一段数据到 panel 控件,本质上也是调用的 panel 控件的 send 方法
19063
19154
 
@@ -19081,7 +19172,7 @@ Defined in: [lib/form.ts:613](https://github.com/maiyun/clickgo/blob/master/dist
19081
19172
 
19082
19173
  > **show**(): `Promise`\<`void`\>
19083
19174
 
19084
- Defined in: [lib/form.ts:701](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L701)
19175
+ Defined in: [lib/form.ts:705](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L705)
19085
19176
 
19086
19177
  显示窗体
19087
19178
 
@@ -19095,7 +19186,7 @@ Defined in: [lib/form.ts:701](https://github.com/maiyun/clickgo/blob/master/dist
19095
19186
 
19096
19187
  > **showDialog**(): `Promise`\<`string`\>
19097
19188
 
19098
- Defined in: [lib/form.ts:726](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L726)
19189
+ Defined in: [lib/form.ts:730](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L730)
19099
19190
 
19100
19191
  显示独占的窗体
19101
19192
 
@@ -19147,7 +19238,7 @@ Defined in: [lib/form.ts:309](https://github.com/maiyun/clickgo/blob/master/dist
19147
19238
 
19148
19239
  > **updateStep**(`index`, `value`): `boolean`
19149
19240
 
19150
- Defined in: [lib/form.ts:675](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L675)
19241
+ Defined in: [lib/form.ts:679](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L679)
19151
19242
 
19152
19243
  更新步进条,用于动态改变某个项的 hash 值时使用
19153
19244
 
@@ -20167,7 +20258,7 @@ lib/form/functions/alert.md
20167
20258
 
20168
20259
  > **alert**(`content`, `type?`): `number`
20169
20260
 
20170
- Defined in: [lib/form.ts:2178](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2178)
20261
+ Defined in: [lib/form.ts:2182](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2182)
20171
20262
 
20172
20263
  从下方弹出 alert
20173
20264
 
@@ -20202,7 +20293,7 @@ lib/form/functions/appendToPop.md
20202
20293
 
20203
20294
  > **appendToPop**(`el`): `void`
20204
20295
 
20205
- Defined in: [lib/form.ts:2427](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2427)
20296
+ Defined in: [lib/form.ts:2431](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2431)
20206
20297
 
20207
20298
  将标签追加到 pop 层
20208
20299
 
@@ -20231,7 +20322,7 @@ lib/form/functions/bindDrag.md
20231
20322
 
20232
20323
  > **bindDrag**(`e`): `void`
20233
20324
 
20234
- Defined in: [lib/form.ts:1547](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1547)
20325
+ Defined in: [lib/form.ts:1551](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1551)
20235
20326
 
20236
20327
  绑定窗体拖动事件,在 pointerdown 中绑定
20237
20328
 
@@ -20260,7 +20351,7 @@ lib/form/functions/bindResize.md
20260
20351
 
20261
20352
  > **bindResize**(`e`, `border`): `void`
20262
20353
 
20263
- Defined in: [lib/form.ts:1526](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1526)
20354
+ Defined in: [lib/form.ts:1530](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1530)
20264
20355
 
20265
20356
  绑定窗体拖动大小事件,在 pointerdown 中绑定
20266
20357
 
@@ -20295,7 +20386,7 @@ lib/form/functions/captcha.md
20295
20386
 
20296
20387
  > **captcha**(`current`, `opt`): `Promise`\<`false` \| [`ICaptchaResultEvent`](../../control/interfaces/ICaptchaResultEvent.md)\>
20297
20388
 
20298
- Defined in: [lib/form.ts:3925](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3925)
20389
+ Defined in: [lib/form.ts:3939](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3939)
20299
20390
 
20300
20391
  显示一个验证码窗口
20301
20392
 
@@ -20332,7 +20423,7 @@ lib/form/functions/changeFocus.md
20332
20423
 
20333
20424
  > **changeFocus**(`formId?`): `Promise`\<`void`\>
20334
20425
 
20335
- Defined in: [lib/form.ts:1834](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1834)
20426
+ Defined in: [lib/form.ts:1838](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1838)
20336
20427
 
20337
20428
  改变 form 的焦点 class
20338
20429
 
@@ -20361,7 +20452,7 @@ lib/form/functions/changeFocusMaxZIndex.md
20361
20452
 
20362
20453
  > **changeFocusMaxZIndex**(): `Promise`\<`void`\>
20363
20454
 
20364
- Defined in: [lib/form.ts:1989](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1989)
20455
+ Defined in: [lib/form.ts:1993](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1993)
20365
20456
 
20366
20457
  让最大的 z index 窗体获取焦点(不含 top 和最小化的)
20367
20458
 
@@ -20382,7 +20473,7 @@ lib/form/functions/close.md
20382
20473
 
20383
20474
  > **close**(`formId`): `boolean`
20384
20475
 
20385
- Defined in: [lib/form.ts:1517](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1517)
20476
+ Defined in: [lib/form.ts:1521](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1521)
20386
20477
 
20387
20478
  关闭一个窗体
20388
20479
 
@@ -20411,7 +20502,7 @@ lib/form/functions/confirm.md
20411
20502
 
20412
20503
  > **confirm**(`current`, `opt`): `Promise`\<`number` \| `boolean`\>
20413
20504
 
20414
- Defined in: [lib/form.ts:3996](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3996)
20505
+ Defined in: [lib/form.ts:4010](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4010)
20415
20506
 
20416
20507
  显示一个 confirm
20417
20508
 
@@ -20446,7 +20537,7 @@ lib/form/functions/create.md
20446
20537
 
20447
20538
  > **create**\<`T`\>(`current`, `cls`, `data?`, `opt?`): `Promise`\<`T`\>
20448
20539
 
20449
- Defined in: [lib/form.ts:3341](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3341)
20540
+ Defined in: [lib/form.ts:3345](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3345)
20450
20541
 
20451
20542
  创建一个窗体
20452
20543
 
@@ -20511,7 +20602,7 @@ lib/form/functions/createPanel.md
20511
20602
 
20512
20603
  > **createPanel**\<`T`\>(`rootPanel`, `cls`, `opt?`): `Promise`\<\{ `id`: `string`; `vapp`: [`IVApp`](../../core/interfaces/IVApp.md); `vroot`: `T`; \}\>
20513
20604
 
20514
- Defined in: [lib/form.ts:2961](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2961)
20605
+ Defined in: [lib/form.ts:2965](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2965)
20515
20606
 
20516
20607
  创建 panel 对象,一般情况下无需使用
20517
20608
 
@@ -20574,7 +20665,7 @@ lib/form/functions/dialog.md
20574
20665
 
20575
20666
  > **dialog**(`current`, `opt`): `Promise`\<`string`\>
20576
20667
 
20577
- Defined in: [lib/form.ts:3845](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3845)
20668
+ Defined in: [lib/form.ts:3849](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L3849)
20578
20669
 
20579
20670
  显示一个 dialog
20580
20671
 
@@ -20609,7 +20700,7 @@ lib/form/functions/doFocusAndPopEvent.md
20609
20700
 
20610
20701
  > **doFocusAndPopEvent**(`e`): `Promise`\<`void`\>
20611
20702
 
20612
- Defined in: [lib/form.ts:2763](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2763)
20703
+ Defined in: [lib/form.ts:2767](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2767)
20613
20704
 
20614
20705
  点下 pointerdown 屏幕任意一位置时根据点击处处理隐藏 pop 和焦点丢失事件,鼠标和 touch 只会响应一个
20615
20706
 
@@ -20638,7 +20729,7 @@ lib/form/functions/flash.md
20638
20729
 
20639
20730
  > **flash**(`current`, `formId`): `Promise`\<`void`\>
20640
20731
 
20641
- Defined in: [lib/form.ts:4093](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4093)
20732
+ Defined in: [lib/form.ts:4107](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4107)
20642
20733
 
20643
20734
  让窗体闪烁
20644
20735
 
@@ -20673,7 +20764,7 @@ lib/form/functions/get.md
20673
20764
 
20674
20765
  > **get**(`formId`): [`IFormInfo`](../interfaces/IFormInfo.md) \| `null`
20675
20766
 
20676
- Defined in: [lib/form.ts:1618](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1618)
20767
+ Defined in: [lib/form.ts:1622](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1622)
20677
20768
 
20678
20769
  获取窗体信息
20679
20770
 
@@ -20702,7 +20793,7 @@ lib/form/functions/getActivePanel.md
20702
20793
 
20703
20794
  > **getActivePanel**(`formId`): `string`[]
20704
20795
 
20705
- Defined in: [lib/form.ts:1706](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1706)
20796
+ Defined in: [lib/form.ts:1710](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1710)
20706
20797
 
20707
20798
  获取窗体当前活跃中的 panelId 列表
20708
20799
 
@@ -20731,7 +20822,7 @@ lib/form/functions/getFocus.md
20731
20822
 
20732
20823
  > **getFocus**(): `string` \| `null`
20733
20824
 
20734
- Defined in: [lib/form.ts:1693](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1693)
20825
+ Defined in: [lib/form.ts:1697](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1697)
20735
20826
 
20736
20827
  获取当前有焦点的窗体 form id
20737
20828
 
@@ -20752,7 +20843,7 @@ lib/form/functions/getHash.md
20752
20843
 
20753
20844
  > **getHash**(`formId`): `string`
20754
20845
 
20755
- Defined in: [lib/form.ts:1794](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1794)
20846
+ Defined in: [lib/form.ts:1798](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1798)
20756
20847
 
20757
20848
  获取窗体的 hash
20758
20849
 
@@ -20779,7 +20870,7 @@ lib/form/functions/getList.md
20779
20870
 
20780
20871
  > **getList**(`taskId`): `Record`\<`string`, [`IFormInfo`](../interfaces/IFormInfo.md)\>
20781
20872
 
20782
- Defined in: [lib/form.ts:1665](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1665)
20873
+ Defined in: [lib/form.ts:1669](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1669)
20783
20874
 
20784
20875
  获取 form list 的简略情况
20785
20876
 
@@ -20808,7 +20899,7 @@ lib/form/functions/getMaxZIndexID.md
20808
20899
 
20809
20900
  > **getMaxZIndexID**(`current`, `out?`): `Promise`\<`string` \| `null`\>
20810
20901
 
20811
- Defined in: [lib/form.ts:1937](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1937)
20902
+ Defined in: [lib/form.ts:1941](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1941)
20812
20903
 
20813
20904
  获取当前 z-index 值最大的 form id(除了 top 模式的窗体和最小化的窗体)
20814
20905
 
@@ -20849,7 +20940,7 @@ lib/form/functions/getRectByBorder.md
20849
20940
 
20850
20941
  > **getRectByBorder**(`border`): `object`
20851
20942
 
20852
- Defined in: [lib/form.ts:2001](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2001)
20943
+ Defined in: [lib/form.ts:2005](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2005)
20853
20944
 
20854
20945
  根据 border 方向 获取理论窗体大小
20855
20946
 
@@ -20894,7 +20985,7 @@ lib/form/functions/getTaskId.md
20894
20985
 
20895
20986
  > **getTaskId**(`formId`): `string`
20896
20987
 
20897
- Defined in: [lib/form.ts:1601](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1601)
20988
+ Defined in: [lib/form.ts:1605](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1605)
20898
20989
 
20899
20990
  根据窗体 id 获取 task id
20900
20991
 
@@ -20923,7 +21014,7 @@ lib/form/functions/hash.md
20923
21014
 
20924
21015
  > **hash**(`formId`, `hash`): `boolean`
20925
21016
 
20926
- Defined in: [lib/form.ts:1774](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1774)
21017
+ Defined in: [lib/form.ts:1778](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1778)
20927
21018
 
20928
21019
  修改窗体 hash
20929
21020
 
@@ -20958,7 +21049,7 @@ lib/form/functions/hashBack.md
20958
21049
 
20959
21050
  > **hashBack**(`formId`): `Promise`\<`boolean`\>
20960
21051
 
20961
- Defined in: [lib/form.ts:1813](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1813)
21052
+ Defined in: [lib/form.ts:1817](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1817)
20962
21053
 
20963
21054
  将窗体的 hash 退回上一个
20964
21055
 
@@ -20985,7 +21076,7 @@ lib/form/functions/hideKeyboard.md
20985
21076
 
20986
21077
  > **hideKeyboard**(): `void`
20987
21078
 
20988
- Defined in: [lib/form.ts:1461](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1461)
21079
+ Defined in: [lib/form.ts:1465](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1465)
20989
21080
 
20990
21081
  隐藏系统级虚拟键盘
20991
21082
 
@@ -21006,7 +21097,7 @@ lib/form/functions/hideLauncher.md
21006
21097
 
21007
21098
  > **hideLauncher**(): `void`
21008
21099
 
21009
- Defined in: [lib/form.ts:4130](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4130)
21100
+ Defined in: [lib/form.ts:4144](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4144)
21010
21101
 
21011
21102
  隐藏 launcher 界面
21012
21103
 
@@ -21027,7 +21118,7 @@ lib/form/functions/hideNotify.md
21027
21118
 
21028
21119
  > **hideNotify**(`notifyId`): `void`
21029
21120
 
21030
- Defined in: [lib/form.ts:2393](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2393)
21121
+ Defined in: [lib/form.ts:2397](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2397)
21031
21122
 
21032
21123
  隐藏 notify
21033
21124
 
@@ -21056,7 +21147,7 @@ lib/form/functions/hidePop.md
21056
21147
 
21057
21148
  > **hidePop**(`pop?`): `void`
21058
21149
 
21059
- Defined in: [lib/form.ts:2662](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2662)
21150
+ Defined in: [lib/form.ts:2666](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2666)
21060
21151
 
21061
21152
  隐藏正在显示中的所有 pop,或指定 pop/el
21062
21153
 
@@ -21083,7 +21174,7 @@ lib/form/functions/hideRectangle.md
21083
21174
 
21084
21175
  > **hideRectangle**(): `void`
21085
21176
 
21086
- Defined in: [lib/form.ts:2164](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2164)
21177
+ Defined in: [lib/form.ts:2168](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2168)
21087
21178
 
21088
21179
  结束时请隐藏矩形
21089
21180
 
@@ -21104,7 +21195,7 @@ lib/form/functions/init.md
21104
21195
 
21105
21196
  > **init**(): `void`
21106
21197
 
21107
- Defined in: [lib/form.ts:4144](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4144)
21198
+ Defined in: [lib/form.ts:4158](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4158)
21108
21199
 
21109
21200
  ## Returns
21110
21201
 
@@ -21152,7 +21243,7 @@ lib/form/functions/isJustPop.md
21152
21243
 
21153
21244
  > **isJustPop**(`el`): `boolean`
21154
21245
 
21155
- Defined in: [lib/form.ts:2744](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2744)
21246
+ Defined in: [lib/form.ts:2748](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2748)
21156
21247
 
21157
21248
  检测 pop 是不是刚刚显示的
21158
21249
 
@@ -21179,7 +21270,7 @@ lib/form/functions/max.md
21179
21270
 
21180
21271
  > **max**(`formId`): `boolean`
21181
21272
 
21182
- Defined in: [lib/form.ts:1509](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1509)
21273
+ Defined in: [lib/form.ts:1513](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1513)
21183
21274
 
21184
21275
  最大化某个窗体
21185
21276
 
@@ -21208,7 +21299,7 @@ lib/form/functions/min.md
21208
21299
 
21209
21300
  > **min**(`formId`): `boolean`
21210
21301
 
21211
- Defined in: [lib/form.ts:1501](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1501)
21302
+ Defined in: [lib/form.ts:1505](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1505)
21212
21303
 
21213
21304
  最小化某个窗体
21214
21305
 
@@ -21237,7 +21328,7 @@ lib/form/functions/moveRectangle.md
21237
21328
 
21238
21329
  > **moveRectangle**(`border`): `void`
21239
21330
 
21240
- Defined in: [lib/form.ts:2111](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2111)
21331
+ Defined in: [lib/form.ts:2115](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2115)
21241
21332
 
21242
21333
  移动矩形到新位置
21243
21334
 
@@ -21266,7 +21357,7 @@ lib/form/functions/notify.md
21266
21357
 
21267
21358
  > **notify**(`opt`): `number`
21268
21359
 
21269
- Defined in: [lib/form.ts:2239](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2239)
21360
+ Defined in: [lib/form.ts:2243](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2243)
21270
21361
 
21271
21362
  弹出右下角信息框
21272
21363
 
@@ -21297,7 +21388,7 @@ lib/form/functions/notifyContent.md
21297
21388
 
21298
21389
  > **notifyContent**(`notifyId`, `opt`): `void`
21299
21390
 
21300
- Defined in: [lib/form.ts:2353](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2353)
21391
+ Defined in: [lib/form.ts:2357](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2357)
21301
21392
 
21302
21393
  修改 notify 的提示信息
21303
21394
 
@@ -21332,7 +21423,7 @@ lib/form/functions/notifyProgress.md
21332
21423
 
21333
21424
  > **notifyProgress**(`notifyId`, `per`): `void`
21334
21425
 
21335
- Defined in: [lib/form.ts:2322](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2322)
21426
+ Defined in: [lib/form.ts:2326](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2326)
21336
21427
 
21337
21428
  修改 notify 的进度条进度
21338
21429
 
@@ -21367,7 +21458,7 @@ lib/form/functions/prompt.md
21367
21458
 
21368
21459
  > **prompt**(`current`, `opt`): `Promise`\<`string`\>
21369
21460
 
21370
- Defined in: [lib/form.ts:4033](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4033)
21461
+ Defined in: [lib/form.ts:4047](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4047)
21371
21462
 
21372
21463
  显示一个输入框 dialog
21373
21464
 
@@ -21402,7 +21493,7 @@ lib/form/functions/refreshMaxPosition.md
21402
21493
 
21403
21494
  > **refreshMaxPosition**(): `void`
21404
21495
 
21405
- Defined in: [lib/form.ts:1567](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1567)
21496
+ Defined in: [lib/form.ts:1571](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1571)
21406
21497
 
21407
21498
  重置所有已经最大化的窗体大小和位置
21408
21499
 
@@ -21423,7 +21514,7 @@ lib/form/functions/remove.md
21423
21514
 
21424
21515
  > **remove**(`formId`): `boolean`
21425
21516
 
21426
- Defined in: [lib/form.ts:2832](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2832)
21517
+ Defined in: [lib/form.ts:2836](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2836)
21427
21518
 
21428
21519
  移除一个 form(关闭窗口)
21429
21520
 
@@ -21452,7 +21543,7 @@ lib/form/functions/removeActivePanel.md
21452
21543
 
21453
21544
  > **removeActivePanel**(`current`, `formId`, `panelId`): `boolean`
21454
21545
 
21455
- Defined in: [lib/form.ts:1716](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1716)
21546
+ Defined in: [lib/form.ts:1720](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1720)
21456
21547
 
21457
21548
  移除 form 中正在活跃中的 panel id (panel 本身被置于隐藏时)
21458
21549
 
@@ -21493,7 +21584,7 @@ lib/form/functions/removeFromPop.md
21493
21584
 
21494
21585
  > **removeFromPop**(`el`): `void`
21495
21586
 
21496
- Defined in: [lib/form.ts:2435](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2435)
21587
+ Defined in: [lib/form.ts:2439](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2439)
21497
21588
 
21498
21589
  将标签从 pop 层移除
21499
21590
 
@@ -21522,7 +21613,7 @@ lib/form/functions/removePanel.md
21522
21613
 
21523
21614
  > **removePanel**(`id`, `vapp`, `el`): `boolean`
21524
21615
 
21525
- Defined in: [lib/form.ts:2904](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2904)
21616
+ Defined in: [lib/form.ts:2908](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2908)
21526
21617
 
21527
21618
  移除 panel 挂载,通常发生在 panel 控件的 onBeforeUnmount 中
21528
21619
 
@@ -21563,7 +21654,7 @@ lib/form/functions/send.md
21563
21654
 
21564
21655
  > **send**(`formId`, `obj`): `void`
21565
21656
 
21566
- Defined in: [lib/form.ts:1648](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1648)
21657
+ Defined in: [lib/form.ts:1652](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1652)
21567
21658
 
21568
21659
  给一个窗体发送一个对象,不会知道成功与失败状态,用 this.send 替代
21569
21660
 
@@ -21598,7 +21689,7 @@ lib/form/functions/setActivePanel.md
21598
21689
 
21599
21690
  > **setActivePanel**(`current`, `formId`, `panelId`): `boolean`
21600
21691
 
21601
- Defined in: [lib/form.ts:1747](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1747)
21692
+ Defined in: [lib/form.ts:1751](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1751)
21602
21693
 
21603
21694
  将 form 中某个 panel 设置为活动的
21604
21695
 
@@ -21639,7 +21730,7 @@ lib/form/functions/showCircular.md
21639
21730
 
21640
21731
  > **showCircular**(`x`, `y`): `void`
21641
21732
 
21642
- Defined in: [lib/form.ts:2086](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2086)
21733
+ Defined in: [lib/form.ts:2090](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2090)
21643
21734
 
21644
21735
  显示从小到大的圆圈动画特效对象
21645
21736
 
@@ -21674,7 +21765,7 @@ lib/form/functions/showKeyboard.md
21674
21765
 
21675
21766
  > **showKeyboard**(): `void`
21676
21767
 
21677
- Defined in: [lib/form.ts:1444](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1444)
21768
+ Defined in: [lib/form.ts:1448](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1448)
21678
21769
 
21679
21770
  显示系统级虚拟键盘
21680
21771
 
@@ -21695,7 +21786,7 @@ lib/form/functions/showLauncher.md
21695
21786
 
21696
21787
  > **showLauncher**(): `void`
21697
21788
 
21698
- Defined in: [lib/form.ts:4120](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4120)
21789
+ Defined in: [lib/form.ts:4134](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4134)
21699
21790
 
21700
21791
  显示 launcher 界面
21701
21792
 
@@ -21716,7 +21807,7 @@ lib/form/functions/showPop.md
21716
21807
 
21717
21808
  > **showPop**(`el`, `pop`, `direction`, `opt?`): `void`
21718
21809
 
21719
- Defined in: [lib/form.ts:2548](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2548)
21810
+ Defined in: [lib/form.ts:2552](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2552)
21720
21811
 
21721
21812
  获取 pop 显示出来的坐标并报系统全局记录
21722
21813
 
@@ -21795,7 +21886,7 @@ lib/form/functions/showRectangle.md
21795
21886
 
21796
21887
  > **showRectangle**(`x`, `y`, `border`): `void`
21797
21888
 
21798
- Defined in: [lib/form.ts:2141](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2141)
21889
+ Defined in: [lib/form.ts:2145](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L2145)
21799
21890
 
21800
21891
  显示从小到大的矩形动画特效对象
21801
21892
 
@@ -21836,7 +21927,7 @@ lib/form/functions/superConfirm.md
21836
21927
 
21837
21928
  > **superConfirm**(`current`, `html`): `Promise`\<`boolean`\>
21838
21929
 
21839
- Defined in: [lib/form.ts:1423](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1423)
21930
+ Defined in: [lib/form.ts:1427](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1427)
21840
21931
 
21841
21932
  显示系统级询问框
21842
21933
 
@@ -21959,7 +22050,7 @@ lib/form/interfaces/IAbstractPanelQsChangeShowEvent.md
21959
22050
 
21960
22051
  # Interface: IAbstractPanelQsChangeShowEvent
21961
22052
 
21962
- Defined in: [lib/form.ts:4170](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4170)
22053
+ Defined in: [lib/form.ts:4184](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4184)
21963
22054
 
21964
22055
  AbstractPanel qsChange 显示事件
21965
22056
 
@@ -21969,7 +22060,7 @@ AbstractPanel qsChange 显示事件
21969
22060
 
21970
22061
  > **detail**: `object`
21971
22062
 
21972
- Defined in: [lib/form.ts:4171](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4171)
22063
+ Defined in: [lib/form.ts:4185](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4185)
21973
22064
 
21974
22065
  #### action
21975
22066
 
@@ -22010,7 +22101,7 @@ lib/form/interfaces/IAbstractPanelShowEvent.md
22010
22101
 
22011
22102
  # Interface: IAbstractPanelShowEvent
22012
22103
 
22013
- Defined in: [lib/form.ts:4155](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4155)
22104
+ Defined in: [lib/form.ts:4169](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4169)
22014
22105
 
22015
22106
  AbstractPanel 显示事件
22016
22107
 
@@ -22020,7 +22111,7 @@ AbstractPanel 显示事件
22020
22111
 
22021
22112
  > **detail**: `object`
22022
22113
 
22023
- Defined in: [lib/form.ts:4156](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4156)
22114
+ Defined in: [lib/form.ts:4170](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4170)
22024
22115
 
22025
22116
  #### action
22026
22117
 
@@ -22061,7 +22152,7 @@ lib/form/interfaces/IForm.md
22061
22152
 
22062
22153
  # Interface: IForm
22063
22154
 
22064
- Defined in: [lib/form.ts:4185](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4185)
22155
+ Defined in: [lib/form.ts:4199](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4199)
22065
22156
 
22066
22157
  运行时 task 中的 form 对象
22067
22158
 
@@ -22071,7 +22162,7 @@ Defined in: [lib/form.ts:4185](https://github.com/maiyun/clickgo/blob/master/dis
22071
22162
 
22072
22163
  > **closed**: `boolean`
22073
22164
 
22074
- Defined in: [lib/form.ts:4190](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4190)
22165
+ Defined in: [lib/form.ts:4204](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4204)
22075
22166
 
22076
22167
  是否已经执行过了关闭窗体方法,此处加判断为了防止重复执行 close 导致的 bug
22077
22168
 
@@ -22081,7 +22172,7 @@ Defined in: [lib/form.ts:4190](https://github.com/maiyun/clickgo/blob/master/dis
22081
22172
 
22082
22173
  > **id**: `string`
22083
22174
 
22084
- Defined in: [lib/form.ts:4186](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4186)
22175
+ Defined in: [lib/form.ts:4200](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4200)
22085
22176
 
22086
22177
  ***
22087
22178
 
@@ -22089,7 +22180,7 @@ Defined in: [lib/form.ts:4186](https://github.com/maiyun/clickgo/blob/master/dis
22089
22180
 
22090
22181
  > **vapp**: [`IVApp`](../../core/interfaces/IVApp.md)
22091
22182
 
22092
- Defined in: [lib/form.ts:4187](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4187)
22183
+ Defined in: [lib/form.ts:4201](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4201)
22093
22184
 
22094
22185
  ***
22095
22186
 
@@ -22097,7 +22188,7 @@ Defined in: [lib/form.ts:4187](https://github.com/maiyun/clickgo/blob/master/dis
22097
22188
 
22098
22189
  > **vroot**: [`IVue`](../../core/interfaces/IVue.md)
22099
22190
 
22100
- Defined in: [lib/form.ts:4188](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4188)
22191
+ Defined in: [lib/form.ts:4202](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4202)
22101
22192
 
22102
22193
  lib/form/interfaces/IFormCaptchaOptions.md
22103
22194
  ---
@@ -22110,7 +22201,7 @@ lib/form/interfaces/IFormCaptchaOptions.md
22110
22201
 
22111
22202
  # Interface: IFormCaptchaOptions
22112
22203
 
22113
- Defined in: [lib/form.ts:4288](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4288)
22204
+ Defined in: [lib/form.ts:4302](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4302)
22114
22205
 
22115
22206
  显示验证码选项
22116
22207
 
@@ -22120,7 +22211,7 @@ Defined in: [lib/form.ts:4288](https://github.com/maiyun/clickgo/blob/master/dis
22120
22211
 
22121
22212
  > **akey**: `string`
22122
22213
 
22123
- Defined in: [lib/form.ts:4292](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4292)
22214
+ Defined in: [lib/form.ts:4306](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4306)
22124
22215
 
22125
22216
  验证码 key
22126
22217
 
@@ -22130,7 +22221,7 @@ Defined in: [lib/form.ts:4292](https://github.com/maiyun/clickgo/blob/master/dis
22130
22221
 
22131
22222
  > **factory**: `"tc"` \| `"cf"`
22132
22223
 
22133
- Defined in: [lib/form.ts:4290](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4290)
22224
+ Defined in: [lib/form.ts:4304](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4304)
22134
22225
 
22135
22226
  验证码服务商
22136
22227
 
@@ -22145,7 +22236,7 @@ lib/form/interfaces/IFormConfirmOptions.md
22145
22236
 
22146
22237
  # Interface: IFormConfirmOptions
22147
22238
 
22148
- Defined in: [lib/form.ts:4281](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4281)
22239
+ Defined in: [lib/form.ts:4295](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4295)
22149
22240
 
22150
22241
  Confirm 选项
22151
22242
 
@@ -22155,7 +22246,7 @@ Confirm 选项
22155
22246
 
22156
22247
  > `optional` **cancel**: `boolean`
22157
22248
 
22158
- Defined in: [lib/form.ts:4284](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4284)
22249
+ Defined in: [lib/form.ts:4298](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4298)
22159
22250
 
22160
22251
  ***
22161
22252
 
@@ -22163,7 +22254,7 @@ Defined in: [lib/form.ts:4284](https://github.com/maiyun/clickgo/blob/master/dis
22163
22254
 
22164
22255
  > **content**: `string`
22165
22256
 
22166
- Defined in: [lib/form.ts:4283](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4283)
22257
+ Defined in: [lib/form.ts:4297](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4297)
22167
22258
 
22168
22259
  ***
22169
22260
 
@@ -22171,7 +22262,7 @@ Defined in: [lib/form.ts:4283](https://github.com/maiyun/clickgo/blob/master/dis
22171
22262
 
22172
22263
  > `optional` **title**: `string`
22173
22264
 
22174
- Defined in: [lib/form.ts:4282](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4282)
22265
+ Defined in: [lib/form.ts:4296](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4296)
22175
22266
 
22176
22267
  lib/form/interfaces/IFormDialogOptions.md
22177
22268
  ---
@@ -22184,7 +22275,7 @@ lib/form/interfaces/IFormDialogOptions.md
22184
22275
 
22185
22276
  # Interface: IFormDialogOptions
22186
22277
 
22187
- Defined in: [lib/form.ts:4239](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4239)
22278
+ Defined in: [lib/form.ts:4253](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4253)
22188
22279
 
22189
22280
  Dialog 选项
22190
22281
 
@@ -22194,7 +22285,7 @@ Dialog 选项
22194
22285
 
22195
22286
  > `optional` **autoDialogResult**: `boolean`
22196
22287
 
22197
- Defined in: [lib/form.ts:4243](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4243)
22288
+ Defined in: [lib/form.ts:4257](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4257)
22198
22289
 
22199
22290
  ***
22200
22291
 
@@ -22202,7 +22293,7 @@ Defined in: [lib/form.ts:4243](https://github.com/maiyun/clickgo/blob/master/dis
22202
22293
 
22203
22294
  > `optional` **buttons**: `string`[]
22204
22295
 
22205
- Defined in: [lib/form.ts:4242](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4242)
22296
+ Defined in: [lib/form.ts:4256](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4256)
22206
22297
 
22207
22298
  ***
22208
22299
 
@@ -22210,7 +22301,7 @@ Defined in: [lib/form.ts:4242](https://github.com/maiyun/clickgo/blob/master/dis
22210
22301
 
22211
22302
  > **content**: `string`
22212
22303
 
22213
- Defined in: [lib/form.ts:4241](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4241)
22304
+ Defined in: [lib/form.ts:4255](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4255)
22214
22305
 
22215
22306
  ***
22216
22307
 
@@ -22218,7 +22309,7 @@ Defined in: [lib/form.ts:4241](https://github.com/maiyun/clickgo/blob/master/dis
22218
22309
 
22219
22310
  > `optional` **data**: `Record`\<`string`, `any`\>
22220
22311
 
22221
- Defined in: [lib/form.ts:4249](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4249)
22312
+ Defined in: [lib/form.ts:4263](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4263)
22222
22313
 
22223
22314
  传值,需要用 data.x 读取
22224
22315
 
@@ -22228,7 +22319,7 @@ Defined in: [lib/form.ts:4249](https://github.com/maiyun/clickgo/blob/master/dis
22228
22319
 
22229
22320
  > `optional` **direction**: `"v"` \| `"h"`
22230
22321
 
22231
- Defined in: [lib/form.ts:4245](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4245)
22322
+ Defined in: [lib/form.ts:4259](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4259)
22232
22323
 
22233
22324
  ***
22234
22325
 
@@ -22236,7 +22327,7 @@ Defined in: [lib/form.ts:4245](https://github.com/maiyun/clickgo/blob/master/dis
22236
22327
 
22237
22328
  > `optional` **gutter**: `string` \| `number`
22238
22329
 
22239
- Defined in: [lib/form.ts:4246](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4246)
22330
+ Defined in: [lib/form.ts:4260](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4260)
22240
22331
 
22241
22332
  ***
22242
22333
 
@@ -22244,7 +22335,7 @@ Defined in: [lib/form.ts:4246](https://github.com/maiyun/clickgo/blob/master/dis
22244
22335
 
22245
22336
  > `optional` **methods**: `Record`\<`string`, (...`param`) => `any`\>
22246
22337
 
22247
- Defined in: [lib/form.ts:4251](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4251)
22338
+ Defined in: [lib/form.ts:4265](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4265)
22248
22339
 
22249
22340
  传值,需要用 methods.x 读取
22250
22341
 
@@ -22254,7 +22345,7 @@ Defined in: [lib/form.ts:4251](https://github.com/maiyun/clickgo/blob/master/dis
22254
22345
 
22255
22346
  > `optional` **onMounted**: () => `void` \| `Promise`\<`void`\>
22256
22347
 
22257
- Defined in: [lib/form.ts:4271](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4271)
22348
+ Defined in: [lib/form.ts:4285](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4285)
22258
22349
 
22259
22350
  窗体挂载完成事件
22260
22351
 
@@ -22268,7 +22359,7 @@ Defined in: [lib/form.ts:4271](https://github.com/maiyun/clickgo/blob/master/dis
22268
22359
 
22269
22360
  > `optional` **path**: `string`
22270
22361
 
22271
- Defined in: [lib/form.ts:4255](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4255)
22362
+ Defined in: [lib/form.ts:4269](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4269)
22272
22363
 
22273
22364
  路径基,以 / 结束或文件路径则以文件的基路径为准,可留空
22274
22365
 
@@ -22278,7 +22369,7 @@ Defined in: [lib/form.ts:4255](https://github.com/maiyun/clickgo/blob/master/dis
22278
22369
 
22279
22370
  > `optional` **select**: (`this`, `e`, `button`) => `void`
22280
22371
 
22281
- Defined in: [lib/form.ts:4262](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4262)
22372
+ Defined in: [lib/form.ts:4276](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4276)
22282
22373
 
22283
22374
  点击按钮触发事件
22284
22375
 
@@ -22310,7 +22401,7 @@ Defined in: [lib/form.ts:4262](https://github.com/maiyun/clickgo/blob/master/dis
22310
22401
 
22311
22402
  > `optional` **style**: `string`
22312
22403
 
22313
- Defined in: [lib/form.ts:4253](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4253)
22404
+ Defined in: [lib/form.ts:4267](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4267)
22314
22405
 
22315
22406
  样式表
22316
22407
 
@@ -22320,7 +22411,7 @@ Defined in: [lib/form.ts:4253](https://github.com/maiyun/clickgo/blob/master/dis
22320
22411
 
22321
22412
  > `optional` **title**: `string`
22322
22413
 
22323
- Defined in: [lib/form.ts:4240](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4240)
22414
+ Defined in: [lib/form.ts:4254](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4254)
22324
22415
 
22325
22416
  lib/form/interfaces/IFormDialogSelectEvent.md
22326
22417
  ---
@@ -22333,7 +22424,7 @@ lib/form/interfaces/IFormDialogSelectEvent.md
22333
22424
 
22334
22425
  # Interface: IFormDialogSelectEvent
22335
22426
 
22336
- Defined in: [lib/form.ts:4274](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4274)
22427
+ Defined in: [lib/form.ts:4288](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4288)
22337
22428
 
22338
22429
  Custom Event
22339
22430
 
@@ -22347,7 +22438,7 @@ Custom Event
22347
22438
 
22348
22439
  > **detail**: `object`
22349
22440
 
22350
- Defined in: [lib/form.ts:4275](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4275)
22441
+ Defined in: [lib/form.ts:4289](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4289)
22351
22442
 
22352
22443
  #### button
22353
22444
 
@@ -22392,7 +22483,7 @@ lib/form/interfaces/IFormInfo.md
22392
22483
 
22393
22484
  # Interface: IFormInfo
22394
22485
 
22395
- Defined in: [lib/form.ts:4194](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4194)
22486
+ Defined in: [lib/form.ts:4208](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4208)
22396
22487
 
22397
22488
  Form 的简略情况,通常在 list 当中
22398
22489
 
@@ -22402,7 +22493,7 @@ Form 的简略情况,通常在 list 当中
22402
22493
 
22403
22494
  > **focus**: `boolean`
22404
22495
 
22405
- Defined in: [lib/form.ts:4201](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4201)
22496
+ Defined in: [lib/form.ts:4215](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4215)
22406
22497
 
22407
22498
  ***
22408
22499
 
@@ -22410,7 +22501,7 @@ Defined in: [lib/form.ts:4201](https://github.com/maiyun/clickgo/blob/master/dis
22410
22501
 
22411
22502
  > **icon**: `string`
22412
22503
 
22413
- Defined in: [lib/form.ts:4197](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4197)
22504
+ Defined in: [lib/form.ts:4211](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4211)
22414
22505
 
22415
22506
  ***
22416
22507
 
@@ -22418,7 +22509,7 @@ Defined in: [lib/form.ts:4197](https://github.com/maiyun/clickgo/blob/master/dis
22418
22509
 
22419
22510
  > **show**: `boolean`
22420
22511
 
22421
- Defined in: [lib/form.ts:4200](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4200)
22512
+ Defined in: [lib/form.ts:4214](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4214)
22422
22513
 
22423
22514
  ***
22424
22515
 
@@ -22426,7 +22517,7 @@ Defined in: [lib/form.ts:4200](https://github.com/maiyun/clickgo/blob/master/dis
22426
22517
 
22427
22518
  > **showInSystemTask**: `boolean`
22428
22519
 
22429
- Defined in: [lib/form.ts:4202](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4202)
22520
+ Defined in: [lib/form.ts:4216](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4216)
22430
22521
 
22431
22522
  ***
22432
22523
 
@@ -22434,7 +22525,7 @@ Defined in: [lib/form.ts:4202](https://github.com/maiyun/clickgo/blob/master/dis
22434
22525
 
22435
22526
  > **stateMax**: `boolean`
22436
22527
 
22437
- Defined in: [lib/form.ts:4198](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4198)
22528
+ Defined in: [lib/form.ts:4212](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4212)
22438
22529
 
22439
22530
  ***
22440
22531
 
@@ -22442,7 +22533,7 @@ Defined in: [lib/form.ts:4198](https://github.com/maiyun/clickgo/blob/master/dis
22442
22533
 
22443
22534
  > **stateMin**: `boolean`
22444
22535
 
22445
- Defined in: [lib/form.ts:4199](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4199)
22536
+ Defined in: [lib/form.ts:4213](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4213)
22446
22537
 
22447
22538
  ***
22448
22539
 
@@ -22450,7 +22541,7 @@ Defined in: [lib/form.ts:4199](https://github.com/maiyun/clickgo/blob/master/dis
22450
22541
 
22451
22542
  > **taskId**: `string`
22452
22543
 
22453
- Defined in: [lib/form.ts:4195](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4195)
22544
+ Defined in: [lib/form.ts:4209](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4209)
22454
22545
 
22455
22546
  ***
22456
22547
 
@@ -22458,7 +22549,7 @@ Defined in: [lib/form.ts:4195](https://github.com/maiyun/clickgo/blob/master/dis
22458
22549
 
22459
22550
  > **title**: `string`
22460
22551
 
22461
- Defined in: [lib/form.ts:4196](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4196)
22552
+ Defined in: [lib/form.ts:4210](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4210)
22462
22553
 
22463
22554
  lib/form/interfaces/IFormPromptOptions.md
22464
22555
  ---
@@ -22471,7 +22562,7 @@ lib/form/interfaces/IFormPromptOptions.md
22471
22562
 
22472
22563
  # Interface: IFormPromptOptions
22473
22564
 
22474
- Defined in: [lib/form.ts:4296](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4296)
22565
+ Defined in: [lib/form.ts:4310](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4310)
22475
22566
 
22476
22567
  Prompt 选项
22477
22568
 
@@ -22481,7 +22572,7 @@ Prompt 选项
22481
22572
 
22482
22573
  > `optional` **cancel**: `boolean`
22483
22574
 
22484
- Defined in: [lib/form.ts:4304](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4304)
22575
+ Defined in: [lib/form.ts:4318](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4318)
22485
22576
 
22486
22577
  是否显示取消按钮,默认显示
22487
22578
 
@@ -22491,7 +22582,7 @@ Defined in: [lib/form.ts:4304](https://github.com/maiyun/clickgo/blob/master/dis
22491
22582
 
22492
22583
  > **content**: `string`
22493
22584
 
22494
- Defined in: [lib/form.ts:4300](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4300)
22585
+ Defined in: [lib/form.ts:4314](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4314)
22495
22586
 
22496
22587
  内容说明
22497
22588
 
@@ -22501,7 +22592,7 @@ Defined in: [lib/form.ts:4300](https://github.com/maiyun/clickgo/blob/master/dis
22501
22592
 
22502
22593
  > `optional` **select**: (`this`, `e`, `button`) => `void`
22503
22594
 
22504
- Defined in: [lib/form.ts:4311](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4311)
22595
+ Defined in: [lib/form.ts:4325](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4325)
22505
22596
 
22506
22597
  点击按钮触发事件
22507
22598
 
@@ -22533,7 +22624,7 @@ true 代表确定,false 代表取消
22533
22624
 
22534
22625
  > `optional` **text**: `string`
22535
22626
 
22536
- Defined in: [lib/form.ts:4302](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4302)
22627
+ Defined in: [lib/form.ts:4316](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4316)
22537
22628
 
22538
22629
  文本默认值
22539
22630
 
@@ -22543,7 +22634,7 @@ Defined in: [lib/form.ts:4302](https://github.com/maiyun/clickgo/blob/master/dis
22543
22634
 
22544
22635
  > `optional` **title**: `string`
22545
22636
 
22546
- Defined in: [lib/form.ts:4298](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4298)
22637
+ Defined in: [lib/form.ts:4312](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4312)
22547
22638
 
22548
22639
  标题
22549
22640
 
@@ -22558,7 +22649,7 @@ lib/form/interfaces/IFormPromptSelectEvent.md
22558
22649
 
22559
22650
  # Interface: IFormPromptSelectEvent
22560
22651
 
22561
- Defined in: [lib/form.ts:4318](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4318)
22652
+ Defined in: [lib/form.ts:4332](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4332)
22562
22653
 
22563
22654
  Custom Event
22564
22655
 
@@ -22572,7 +22663,7 @@ Custom Event
22572
22663
 
22573
22664
  > **detail**: `object`
22574
22665
 
22575
- Defined in: [lib/form.ts:4319](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4319)
22666
+ Defined in: [lib/form.ts:4333](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4333)
22576
22667
 
22577
22668
  #### button
22578
22669
 
@@ -22623,7 +22714,7 @@ lib/form/interfaces/IMoveDragOptions.md
22623
22714
 
22624
22715
  # Interface: IMoveDragOptions
22625
22716
 
22626
- Defined in: [lib/form.ts:4206](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4206)
22717
+ Defined in: [lib/form.ts:4220](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4220)
22627
22718
 
22628
22719
  移动 drag 到新位置函数的选项
22629
22720
 
@@ -22633,7 +22724,7 @@ Defined in: [lib/form.ts:4206](https://github.com/maiyun/clickgo/blob/master/dis
22633
22724
 
22634
22725
  > `optional` **height**: `number`
22635
22726
 
22636
- Defined in: [lib/form.ts:4210](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4210)
22727
+ Defined in: [lib/form.ts:4224](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4224)
22637
22728
 
22638
22729
  ***
22639
22730
 
@@ -22641,7 +22732,7 @@ Defined in: [lib/form.ts:4210](https://github.com/maiyun/clickgo/blob/master/dis
22641
22732
 
22642
22733
  > `optional` **icon**: `boolean`
22643
22734
 
22644
- Defined in: [lib/form.ts:4211](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4211)
22735
+ Defined in: [lib/form.ts:4225](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4225)
22645
22736
 
22646
22737
  ***
22647
22738
 
@@ -22649,7 +22740,7 @@ Defined in: [lib/form.ts:4211](https://github.com/maiyun/clickgo/blob/master/dis
22649
22740
 
22650
22741
  > `optional` **left**: `number`
22651
22742
 
22652
- Defined in: [lib/form.ts:4208](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4208)
22743
+ Defined in: [lib/form.ts:4222](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4222)
22653
22744
 
22654
22745
  ***
22655
22746
 
@@ -22657,7 +22748,7 @@ Defined in: [lib/form.ts:4208](https://github.com/maiyun/clickgo/blob/master/dis
22657
22748
 
22658
22749
  > `optional` **top**: `number`
22659
22750
 
22660
- Defined in: [lib/form.ts:4207](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4207)
22751
+ Defined in: [lib/form.ts:4221](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4221)
22661
22752
 
22662
22753
  ***
22663
22754
 
@@ -22665,7 +22756,7 @@ Defined in: [lib/form.ts:4207](https://github.com/maiyun/clickgo/blob/master/dis
22665
22756
 
22666
22757
  > `optional` **width**: `number`
22667
22758
 
22668
- Defined in: [lib/form.ts:4209](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4209)
22759
+ Defined in: [lib/form.ts:4223](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4223)
22669
22760
 
22670
22761
  lib/form/interfaces/INotifyContentOptions.md
22671
22762
  ---
@@ -22678,7 +22769,7 @@ lib/form/interfaces/INotifyContentOptions.md
22678
22769
 
22679
22770
  # Interface: INotifyContentOptions
22680
22771
 
22681
- Defined in: [lib/form.ts:4228](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4228)
22772
+ Defined in: [lib/form.ts:4242](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4242)
22682
22773
 
22683
22774
  notify 信息框的修改选项
22684
22775
 
@@ -22688,7 +22779,7 @@ notify 信息框的修改选项
22688
22779
 
22689
22780
  > `optional` **content**: `string`
22690
22781
 
22691
- Defined in: [lib/form.ts:4230](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4230)
22782
+ Defined in: [lib/form.ts:4244](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4244)
22692
22783
 
22693
22784
  ***
22694
22785
 
@@ -22696,7 +22787,7 @@ Defined in: [lib/form.ts:4230](https://github.com/maiyun/clickgo/blob/master/dis
22696
22787
 
22697
22788
  > `optional` **note**: `string`
22698
22789
 
22699
- Defined in: [lib/form.ts:4231](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4231)
22790
+ Defined in: [lib/form.ts:4245](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4245)
22700
22791
 
22701
22792
  ***
22702
22793
 
@@ -22704,7 +22795,7 @@ Defined in: [lib/form.ts:4231](https://github.com/maiyun/clickgo/blob/master/dis
22704
22795
 
22705
22796
  > `optional` **progress**: `number`
22706
22797
 
22707
- Defined in: [lib/form.ts:4233](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4233)
22798
+ Defined in: [lib/form.ts:4247](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4247)
22708
22799
 
22709
22800
  可顺便修改进度
22710
22801
 
@@ -22714,7 +22805,7 @@ Defined in: [lib/form.ts:4233](https://github.com/maiyun/clickgo/blob/master/dis
22714
22805
 
22715
22806
  > `optional` **timeout**: `number`
22716
22807
 
22717
- Defined in: [lib/form.ts:4235](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4235)
22808
+ Defined in: [lib/form.ts:4249](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4249)
22718
22809
 
22719
22810
  设置后将在 x 毫秒后隐藏,这不会大于创建时的设置的总时长
22720
22811
 
@@ -22724,7 +22815,7 @@ Defined in: [lib/form.ts:4235](https://github.com/maiyun/clickgo/blob/master/dis
22724
22815
 
22725
22816
  > `optional` **title**: `string`
22726
22817
 
22727
- Defined in: [lib/form.ts:4229](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4229)
22818
+ Defined in: [lib/form.ts:4243](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4243)
22728
22819
 
22729
22820
  lib/form/interfaces/INotifyOptions.md
22730
22821
  ---
@@ -22737,7 +22828,7 @@ lib/form/interfaces/INotifyOptions.md
22737
22828
 
22738
22829
  # Interface: INotifyOptions
22739
22830
 
22740
- Defined in: [lib/form.ts:4215](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4215)
22831
+ Defined in: [lib/form.ts:4229](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4229)
22741
22832
 
22742
22833
  弹出 notify 信息框的选项
22743
22834
 
@@ -22747,7 +22838,7 @@ Defined in: [lib/form.ts:4215](https://github.com/maiyun/clickgo/blob/master/dis
22747
22838
 
22748
22839
  > `optional` **content**: `string`
22749
22840
 
22750
- Defined in: [lib/form.ts:4218](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4218)
22841
+ Defined in: [lib/form.ts:4232](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4232)
22751
22842
 
22752
22843
  正文
22753
22844
 
@@ -22757,7 +22848,7 @@ Defined in: [lib/form.ts:4218](https://github.com/maiyun/clickgo/blob/master/dis
22757
22848
 
22758
22849
  > `optional` **icon**: `string` \| `null`
22759
22850
 
22760
- Defined in: [lib/form.ts:4221](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4221)
22851
+ Defined in: [lib/form.ts:4235](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4235)
22761
22852
 
22762
22853
  ***
22763
22854
 
@@ -22765,7 +22856,7 @@ Defined in: [lib/form.ts:4221](https://github.com/maiyun/clickgo/blob/master/dis
22765
22856
 
22766
22857
  > `optional` **note**: `string`
22767
22858
 
22768
- Defined in: [lib/form.ts:4220](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4220)
22859
+ Defined in: [lib/form.ts:4234](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4234)
22769
22860
 
22770
22861
  浅色描述
22771
22862
 
@@ -22775,7 +22866,7 @@ Defined in: [lib/form.ts:4220](https://github.com/maiyun/clickgo/blob/master/dis
22775
22866
 
22776
22867
  > `optional` **progress**: `boolean`
22777
22868
 
22778
- Defined in: [lib/form.ts:4224](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4224)
22869
+ Defined in: [lib/form.ts:4238](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4238)
22779
22870
 
22780
22871
  ***
22781
22872
 
@@ -22783,7 +22874,7 @@ Defined in: [lib/form.ts:4224](https://github.com/maiyun/clickgo/blob/master/dis
22783
22874
 
22784
22875
  > `optional` **timeout**: `number`
22785
22876
 
22786
- Defined in: [lib/form.ts:4222](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4222)
22877
+ Defined in: [lib/form.ts:4236](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4236)
22787
22878
 
22788
22879
  ***
22789
22880
 
@@ -22791,7 +22882,7 @@ Defined in: [lib/form.ts:4222](https://github.com/maiyun/clickgo/blob/master/dis
22791
22882
 
22792
22883
  > `optional` **title**: `string`
22793
22884
 
22794
- Defined in: [lib/form.ts:4216](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4216)
22885
+ Defined in: [lib/form.ts:4230](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4230)
22795
22886
 
22796
22887
  ***
22797
22888
 
@@ -22799,7 +22890,7 @@ Defined in: [lib/form.ts:4216](https://github.com/maiyun/clickgo/blob/master/dis
22799
22890
 
22800
22891
  > `optional` **type**: `"progress"` \| `"info"` \| `"warning"` \| `"danger"` \| `"primary"`
22801
22892
 
22802
- Defined in: [lib/form.ts:4223](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4223)
22893
+ Defined in: [lib/form.ts:4237](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L4237)
22803
22894
 
22804
22895
  lib/form/variables/activePanels.md
22805
22896
  ---
@@ -22814,7 +22905,7 @@ lib/form/variables/activePanels.md
22814
22905
 
22815
22906
  > `const` **activePanels**: `Record`\<`string`, `string`[]\> = `{}`
22816
22907
 
22817
- Defined in: [lib/form.ts:1700](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1700)
22908
+ Defined in: [lib/form.ts:1704](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L1704)
22818
22909
 
22819
22910
  当前活跃中的 panelId 列表
22820
22911
 
@@ -22831,7 +22922,7 @@ lib/form/variables/elements.md
22831
22922
 
22832
22923
  > `const` **elements**: `object`
22833
22924
 
22834
- Defined in: [lib/form.ts:929](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L929)
22925
+ Defined in: [lib/form.ts:933](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L933)
22835
22926
 
22836
22927
  ## Type Declaration
22837
22928
 
@@ -22900,7 +22991,7 @@ lib/form/variables/launcherRoot.md
22900
22991
 
22901
22992
  > **launcherRoot**: [`IVue`](../../core/interfaces/IVue.md)
22902
22993
 
22903
- Defined in: [lib/form.ts:924](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L924)
22994
+ Defined in: [lib/form.ts:928](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L928)
22904
22995
 
22905
22996
  lib/form/variables/simpleSystemTaskRoot.md
22906
22997
  ---
@@ -22915,7 +23006,7 @@ lib/form/variables/simpleSystemTaskRoot.md
22915
23006
 
22916
23007
  > **simpleSystemTaskRoot**: [`IVue`](../../core/interfaces/IVue.md)
22917
23008
 
22918
- Defined in: [lib/form.ts:923](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L923)
23009
+ Defined in: [lib/form.ts:927](https://github.com/maiyun/clickgo/blob/master/dist/lib/form.ts#L927)
22919
23010
 
22920
23011
  lib/fs/functions/chmod.md
22921
23012
  ---
@@ -25288,7 +25379,7 @@ lib/task/classes/AbstractThread.md
25288
25379
 
25289
25380
  # Abstract Class: AbstractThread
25290
25381
 
25291
- Defined in: [lib/task.ts:1513](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1513)
25382
+ Defined in: [lib/task.ts:1514](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1514)
25292
25383
 
25293
25384
  线程抽象类
25294
25385
 
@@ -25308,7 +25399,7 @@ Defined in: [lib/task.ts:1513](https://github.com/maiyun/clickgo/blob/master/dis
25308
25399
 
25309
25400
  > **taskId**: `string` = `''`
25310
25401
 
25311
- Defined in: [lib/task.ts:1522](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1522)
25402
+ Defined in: [lib/task.ts:1523](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1523)
25312
25403
 
25313
25404
  系统会自动设置本项
25314
25405
 
@@ -25320,7 +25411,7 @@ Defined in: [lib/task.ts:1522](https://github.com/maiyun/clickgo/blob/master/dis
25320
25411
 
25321
25412
  > **get** **filename**(): `string`
25322
25413
 
25323
- Defined in: [lib/task.ts:1516](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1516)
25414
+ Defined in: [lib/task.ts:1517](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1517)
25324
25415
 
25325
25416
  当前文件在包内的路径
25326
25417
 
@@ -25334,7 +25425,7 @@ Defined in: [lib/task.ts:1516](https://github.com/maiyun/clickgo/blob/master/dis
25334
25425
 
25335
25426
  > **close**(): `void`
25336
25427
 
25337
- Defined in: [lib/task.ts:1551](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1551)
25428
+ Defined in: [lib/task.ts:1552](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1552)
25338
25429
 
25339
25430
  关闭线程
25340
25431
 
@@ -25348,7 +25439,7 @@ Defined in: [lib/task.ts:1551](https://github.com/maiyun/clickgo/blob/master/dis
25348
25439
 
25349
25440
  > `abstract` **main**(`data`): `void` \| `Promise`\<`void`\>
25350
25441
 
25351
- Defined in: [lib/task.ts:1525](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1525)
25442
+ Defined in: [lib/task.ts:1526](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1526)
25352
25443
 
25353
25444
  线程入口
25354
25445
 
@@ -25368,7 +25459,7 @@ Defined in: [lib/task.ts:1525](https://github.com/maiyun/clickgo/blob/master/dis
25368
25459
 
25369
25460
  > **onEnded**(): `void` \| `Promise`\<`void`\>
25370
25461
 
25371
- Defined in: [lib/task.ts:1534](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1534)
25462
+ Defined in: [lib/task.ts:1535](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1535)
25372
25463
 
25373
25464
  线程结束事件
25374
25465
 
@@ -25382,7 +25473,7 @@ Defined in: [lib/task.ts:1534](https://github.com/maiyun/clickgo/blob/master/dis
25382
25473
 
25383
25474
  > **onError**(`e`): `void` \| `Promise`\<`void`\>
25384
25475
 
25385
- Defined in: [lib/task.ts:1540](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1540)
25476
+ Defined in: [lib/task.ts:1541](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1541)
25386
25477
 
25387
25478
  报错
25388
25479
 
@@ -25402,7 +25493,7 @@ Defined in: [lib/task.ts:1540](https://github.com/maiyun/clickgo/blob/master/dis
25402
25493
 
25403
25494
  > **onMessage**(`e`): `void` \| `Promise`\<`void`\>
25404
25495
 
25405
- Defined in: [lib/task.ts:1528](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1528)
25496
+ Defined in: [lib/task.ts:1529](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1529)
25406
25497
 
25407
25498
  线程接收事件
25408
25499
 
@@ -25422,7 +25513,7 @@ Defined in: [lib/task.ts:1528](https://github.com/maiyun/clickgo/blob/master/dis
25422
25513
 
25423
25514
  > **send**(`data`): `void`
25424
25515
 
25425
- Defined in: [lib/task.ts:1546](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1546)
25516
+ Defined in: [lib/task.ts:1547](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1547)
25426
25517
 
25427
25518
  发送数据
25428
25519
 
@@ -25528,7 +25619,7 @@ lib/task/functions/checkPermission.md
25528
25619
 
25529
25620
  > **checkPermission**(`taskId`, `vals`, `apply?`, `applyHandler?`): `Promise`\<`boolean`[]\>
25530
25621
 
25531
- Defined in: [lib/task.ts:912](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L912)
25622
+ Defined in: [lib/task.ts:913](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L913)
25532
25623
 
25533
25624
  检测应用是否有相应的权限(如果 taskId 是 sysId 则直接成功)
25534
25625
 
@@ -25575,7 +25666,7 @@ lib/task/functions/clearLocale.md
25575
25666
 
25576
25667
  > **clearLocale**(`taskId`): `void`
25577
25668
 
25578
- Defined in: [lib/task.ts:1166](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1166)
25669
+ Defined in: [lib/task.ts:1167](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1167)
25579
25670
 
25580
25671
  清除任务的所有加载的语言包
25581
25672
 
@@ -25604,7 +25695,7 @@ lib/task/functions/clearLocaleLang.md
25604
25695
 
25605
25696
  > **clearLocaleLang**(`current`): `void`
25606
25697
 
25607
- Defined in: [lib/task.ts:1208](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1208)
25698
+ Defined in: [lib/task.ts:1209](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1209)
25608
25699
 
25609
25700
  清除 task 的语言设置
25610
25701
 
@@ -25633,7 +25724,7 @@ lib/task/functions/clearSystem.md
25633
25724
 
25634
25725
  > **clearSystem**(`taskId`): `Promise`\<`boolean`\>
25635
25726
 
25636
- Defined in: [lib/task.ts:1375](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1375)
25727
+ Defined in: [lib/task.ts:1376](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1376)
25637
25728
 
25638
25729
  清除系统任务设定
25639
25730
 
@@ -25662,7 +25753,7 @@ lib/task/functions/createTimer.md
25662
25753
 
25663
25754
  > **createTimer**(`current`, `fun`, `delay`, `opt?`): `number`
25664
25755
 
25665
- Defined in: [lib/task.ts:1226](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1226)
25756
+ Defined in: [lib/task.ts:1227](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1227)
25666
25757
 
25667
25758
  创建 timer
25668
25759
 
@@ -25709,7 +25800,7 @@ lib/task/functions/end.md
25709
25800
 
25710
25801
  > **end**(`taskId`): `Promise`\<`boolean`\>
25711
25802
 
25712
- Defined in: [lib/task.ts:1027](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1027)
25803
+ Defined in: [lib/task.ts:1028](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1028)
25713
25804
 
25714
25805
  完全结束任务
25715
25806
 
@@ -25935,7 +26026,7 @@ lib/task/functions/init.md
25935
26026
 
25936
26027
  > **init**(): `void`
25937
26028
 
25938
- Defined in: [lib/task.ts:1463](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1463)
26029
+ Defined in: [lib/task.ts:1464](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1464)
25939
26030
 
25940
26031
  ## Returns
25941
26032
 
@@ -25983,7 +26074,7 @@ lib/task/functions/loadLocale.md
25983
26074
 
25984
26075
  > **loadLocale**(`taskId`, `lang`, `path`): `Promise`\<`boolean`\>
25985
26076
 
25986
- Defined in: [lib/task.ts:1137](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1137)
26077
+ Defined in: [lib/task.ts:1138](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1138)
25987
26078
 
25988
26079
  加载 locale 文件 json
25989
26080
 
@@ -26024,7 +26115,7 @@ lib/task/functions/loadLocaleData.md
26024
26115
 
26025
26116
  > **loadLocaleData**(`taskId`, `lang`, `data`, `pre?`): `void`
26026
26117
 
26027
- Defined in: [lib/task.ts:1110](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1110)
26118
+ Defined in: [lib/task.ts:1111](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1111)
26028
26119
 
26029
26120
  加载 locale data 对象到 task
26030
26121
 
@@ -26153,7 +26244,7 @@ lib/task/functions/refreshSystemPosition.md
26153
26244
 
26154
26245
  > **refreshSystemPosition**(): `void`
26155
26246
 
26156
- Defined in: [lib/task.ts:1407](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1407)
26247
+ Defined in: [lib/task.ts:1408](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1408)
26157
26248
 
26158
26249
  刷新系统任务的 form 的位置以及 length
26159
26250
 
@@ -26174,7 +26265,7 @@ lib/task/functions/removeTimer.md
26174
26265
 
26175
26266
  > **removeTimer**(`current`, `timer`): `void`
26176
26267
 
26177
- Defined in: [lib/task.ts:1293](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1293)
26268
+ Defined in: [lib/task.ts:1294](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1294)
26178
26269
 
26179
26270
  移除 timer
26180
26271
 
@@ -26252,7 +26343,7 @@ lib/task/functions/runThread.md
26252
26343
 
26253
26344
  > **runThread**(`current`, `cls`, `data?`): [`IThread`](../interfaces/IThread.md)
26254
26345
 
26255
- Defined in: [lib/task.ts:1565](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1565)
26346
+ Defined in: [lib/task.ts:1566](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1566)
26256
26347
 
26257
26348
  运行线程(同一个线程文件只能运行一个)
26258
26349
 
@@ -26322,7 +26413,7 @@ lib/task/functions/setLocale.md
26322
26413
 
26323
26414
  > **setLocale**(`taskId`, `lang`, `path`): `Promise`\<`boolean`\>
26324
26415
 
26325
- Defined in: [lib/task.ts:1183](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1183)
26416
+ Defined in: [lib/task.ts:1184](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1184)
26326
26417
 
26327
26418
  加载全新 locale(老 locale 的所有语言的缓存会被卸载)
26328
26419
 
@@ -26363,7 +26454,7 @@ lib/task/functions/setLocaleLang.md
26363
26454
 
26364
26455
  > **setLocaleLang**(`current`, `lang`): `void`
26365
26456
 
26366
- Defined in: [lib/task.ts:1193](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1193)
26457
+ Defined in: [lib/task.ts:1194](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1194)
26367
26458
 
26368
26459
  设置本 task 的语言 name
26369
26460
 
@@ -26398,7 +26489,7 @@ lib/task/functions/setSystem.md
26398
26489
 
26399
26490
  > **setSystem**(`taskId`, `formId`): `boolean`
26400
26491
 
26401
- Defined in: [lib/task.ts:1337](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1337)
26492
+ Defined in: [lib/task.ts:1338](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1338)
26402
26493
 
26403
26494
  将任务注册为系统 task
26404
26495
 
@@ -26433,7 +26524,7 @@ lib/task/functions/sleep.md
26433
26524
 
26434
26525
  > **sleep**(`current`, `fun`, `delay`): `number`
26435
26526
 
26436
- Defined in: [lib/task.ts:1316](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1316)
26527
+ Defined in: [lib/task.ts:1317](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1317)
26437
26528
 
26438
26529
  暂停一小段时间
26439
26530
 
@@ -26536,7 +26627,7 @@ lib/task/interfaces/ICreateTimerOptions.md
26536
26627
 
26537
26628
  # Interface: ICreateTimerOptions
26538
26629
 
26539
- Defined in: [lib/task.ts:1760](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1760)
26630
+ Defined in: [lib/task.ts:1763](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1763)
26540
26631
 
26541
26632
  ## Properties
26542
26633
 
@@ -26544,7 +26635,7 @@ Defined in: [lib/task.ts:1760](https://github.com/maiyun/clickgo/blob/master/dis
26544
26635
 
26545
26636
  > `optional` **count**: `number`
26546
26637
 
26547
- Defined in: [lib/task.ts:1764](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1764)
26638
+ Defined in: [lib/task.ts:1767](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1767)
26548
26639
 
26549
26640
  ***
26550
26641
 
@@ -26552,7 +26643,7 @@ Defined in: [lib/task.ts:1764](https://github.com/maiyun/clickgo/blob/master/dis
26552
26643
 
26553
26644
  > `optional` **formId**: `string`
26554
26645
 
26555
- Defined in: [lib/task.ts:1761](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1761)
26646
+ Defined in: [lib/task.ts:1764](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1764)
26556
26647
 
26557
26648
  ***
26558
26649
 
@@ -26560,7 +26651,7 @@ Defined in: [lib/task.ts:1761](https://github.com/maiyun/clickgo/blob/master/dis
26560
26651
 
26561
26652
  > `optional` **immediate**: `boolean`
26562
26653
 
26563
- Defined in: [lib/task.ts:1763](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1763)
26654
+ Defined in: [lib/task.ts:1766](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1766)
26564
26655
 
26565
26656
  lib/task/interfaces/IRuntime.md
26566
26657
  ---
@@ -26573,15 +26664,25 @@ lib/task/interfaces/IRuntime.md
26573
26664
 
26574
26665
  # Interface: IRuntime
26575
26666
 
26576
- Defined in: [lib/task.ts:1727](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1727)
26667
+ Defined in: [lib/task.ts:1728](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1728)
26577
26668
 
26578
26669
  ## Properties
26579
26670
 
26671
+ ### dialogCreating
26672
+
26673
+ > **dialogCreating**: `number`
26674
+
26675
+ Defined in: [lib/task.ts:1731](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1731)
26676
+
26677
+ 正在异步创建 dialog 的数量,用于防止快速重复调用产生多个 dialog
26678
+
26679
+ ***
26680
+
26580
26681
  ### dialogFormIds
26581
26682
 
26582
26683
  > **dialogFormIds**: `string`[]
26583
26684
 
26584
- Defined in: [lib/task.ts:1728](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1728)
26685
+ Defined in: [lib/task.ts:1729](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1729)
26585
26686
 
26586
26687
  ***
26587
26688
 
@@ -26589,7 +26690,7 @@ Defined in: [lib/task.ts:1728](https://github.com/maiyun/clickgo/blob/master/dis
26589
26690
 
26590
26691
  > **index**: `number`
26591
26692
 
26592
- Defined in: [lib/task.ts:1730](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1730)
26693
+ Defined in: [lib/task.ts:1733](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1733)
26593
26694
 
26594
26695
  ***
26595
26696
 
@@ -26597,7 +26698,7 @@ Defined in: [lib/task.ts:1730](https://github.com/maiyun/clickgo/blob/master/dis
26597
26698
 
26598
26699
  > **permissions**: `string`[]
26599
26700
 
26600
- Defined in: [lib/task.ts:1729](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1729)
26701
+ Defined in: [lib/task.ts:1732](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1732)
26601
26702
 
26602
26703
  lib/task/interfaces/ISystemTaskInfo.md
26603
26704
  ---
@@ -26610,7 +26711,7 @@ lib/task/interfaces/ISystemTaskInfo.md
26610
26711
 
26611
26712
  # Interface: ISystemTaskInfo
26612
26713
 
26613
- Defined in: [lib/task.ts:1734](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1734)
26714
+ Defined in: [lib/task.ts:1737](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1737)
26614
26715
 
26615
26716
  系统任务信息
26616
26717
 
@@ -26620,7 +26721,7 @@ Defined in: [lib/task.ts:1734](https://github.com/maiyun/clickgo/blob/master/dis
26620
26721
 
26621
26722
  > **formId**: `string`
26622
26723
 
26623
- Defined in: [lib/task.ts:1736](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1736)
26724
+ Defined in: [lib/task.ts:1739](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1739)
26624
26725
 
26625
26726
  ***
26626
26727
 
@@ -26628,7 +26729,7 @@ Defined in: [lib/task.ts:1736](https://github.com/maiyun/clickgo/blob/master/dis
26628
26729
 
26629
26730
  > **length**: `number`
26630
26731
 
26631
- Defined in: [lib/task.ts:1737](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1737)
26732
+ Defined in: [lib/task.ts:1740](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1740)
26632
26733
 
26633
26734
  ***
26634
26735
 
@@ -26636,7 +26737,7 @@ Defined in: [lib/task.ts:1737](https://github.com/maiyun/clickgo/blob/master/dis
26636
26737
 
26637
26738
  > **taskId**: `string`
26638
26739
 
26639
- Defined in: [lib/task.ts:1735](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1735)
26740
+ Defined in: [lib/task.ts:1738](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1738)
26640
26741
 
26641
26742
  lib/task/interfaces/ITask.md
26642
26743
  ---
@@ -26649,7 +26750,7 @@ lib/task/interfaces/ITask.md
26649
26750
 
26650
26751
  # Interface: ITask
26651
26752
 
26652
- Defined in: [lib/task.ts:1690](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1690)
26753
+ Defined in: [lib/task.ts:1691](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1691)
26653
26754
 
26654
26755
  运行中的任务对象
26655
26756
 
@@ -26659,7 +26760,7 @@ Defined in: [lib/task.ts:1690](https://github.com/maiyun/clickgo/blob/master/dis
26659
26760
 
26660
26761
  > **app**: [`IApp`](../../core/interfaces/IApp.md)
26661
26762
 
26662
- Defined in: [lib/task.ts:1692](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1692)
26763
+ Defined in: [lib/task.ts:1693](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1693)
26663
26764
 
26664
26765
  ***
26665
26766
 
@@ -26667,7 +26768,7 @@ Defined in: [lib/task.ts:1692](https://github.com/maiyun/clickgo/blob/master/dis
26667
26768
 
26668
26769
  > **class**: [`AbstractApp`](../../core/classes/AbstractApp.md)
26669
26770
 
26670
- Defined in: [lib/task.ts:1693](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1693)
26771
+ Defined in: [lib/task.ts:1694](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1694)
26671
26772
 
26672
26773
  ***
26673
26774
 
@@ -26675,7 +26776,7 @@ Defined in: [lib/task.ts:1693](https://github.com/maiyun/clickgo/blob/master/dis
26675
26776
 
26676
26777
  > **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`\>; \}\>
26677
26778
 
26678
- Defined in: [lib/task.ts:1707](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1707)
26779
+ Defined in: [lib/task.ts:1708](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1708)
26679
26780
 
26680
26781
  已解析的控件处理后的对象,任务启动时解析,窗体创建时部分复用
26681
26782
 
@@ -26685,7 +26786,7 @@ Defined in: [lib/task.ts:1707](https://github.com/maiyun/clickgo/blob/master/dis
26685
26786
 
26686
26787
  > **current**: `string`
26687
26788
 
26688
- Defined in: [lib/task.ts:1702](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1702)
26789
+ Defined in: [lib/task.ts:1703](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1703)
26689
26790
 
26690
26791
  当前 app 运行路径,末尾不含 /
26691
26792
 
@@ -26695,7 +26796,7 @@ Defined in: [lib/task.ts:1702](https://github.com/maiyun/clickgo/blob/master/dis
26695
26796
 
26696
26797
  > **customTheme**: `boolean`
26697
26798
 
26698
- Defined in: [lib/task.ts:1694](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1694)
26799
+ Defined in: [lib/task.ts:1695](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1695)
26699
26800
 
26700
26801
  ***
26701
26802
 
@@ -26703,7 +26804,7 @@ Defined in: [lib/task.ts:1694](https://github.com/maiyun/clickgo/blob/master/dis
26703
26804
 
26704
26805
  > **forms**: `Record`\<`string`, [`IForm`](../../form/interfaces/IForm.md)\>
26705
26806
 
26706
- Defined in: [lib/task.ts:1705](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1705)
26807
+ Defined in: [lib/task.ts:1706](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1706)
26707
26808
 
26708
26809
  窗体对象列表
26709
26810
 
@@ -26713,7 +26814,7 @@ Defined in: [lib/task.ts:1705](https://github.com/maiyun/clickgo/blob/master/dis
26713
26814
 
26714
26815
  > **id**: `string`
26715
26816
 
26716
- Defined in: [lib/task.ts:1691](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1691)
26817
+ Defined in: [lib/task.ts:1692](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1692)
26717
26818
 
26718
26819
  ***
26719
26820
 
@@ -26721,7 +26822,7 @@ Defined in: [lib/task.ts:1691](https://github.com/maiyun/clickgo/blob/master/dis
26721
26822
 
26722
26823
  > **locale**: `object`
26723
26824
 
26724
- Defined in: [lib/task.ts:1695](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1695)
26825
+ Defined in: [lib/task.ts:1696](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1696)
26725
26826
 
26726
26827
  #### data
26727
26828
 
@@ -26737,7 +26838,7 @@ Defined in: [lib/task.ts:1695](https://github.com/maiyun/clickgo/blob/master/dis
26737
26838
 
26738
26839
  > **path**: `string`
26739
26840
 
26740
- Defined in: [lib/task.ts:1700](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1700)
26841
+ Defined in: [lib/task.ts:1701](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1701)
26741
26842
 
26742
26843
  当前 app 自己的完整路径,如 /x/xx.cga,或 /x/x,末尾不含 /
26743
26844
 
@@ -26747,7 +26848,7 @@ Defined in: [lib/task.ts:1700](https://github.com/maiyun/clickgo/blob/master/dis
26747
26848
 
26748
26849
  > **threads**: `Record`\<`string`, [`IThread`](IThread.md)\>
26749
26850
 
26750
- Defined in: [lib/task.ts:1724](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1724)
26851
+ Defined in: [lib/task.ts:1725](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1725)
26751
26852
 
26752
26853
  文件名 -> thread 控制对象
26753
26854
 
@@ -26757,7 +26858,7 @@ Defined in: [lib/task.ts:1724](https://github.com/maiyun/clickgo/blob/master/dis
26757
26858
 
26758
26859
  > **timers**: `Record`\<`string`, `string`\>
26759
26860
 
26760
- Defined in: [lib/task.ts:1722](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1722)
26861
+ Defined in: [lib/task.ts:1723](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1723)
26761
26862
 
26762
26863
  任务中的 timer 列表
26763
26864
 
@@ -26772,7 +26873,7 @@ lib/task/interfaces/ITaskInfo.md
26772
26873
 
26773
26874
  # Interface: ITaskInfo
26774
26875
 
26775
- Defined in: [lib/task.ts:1768](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1768)
26876
+ Defined in: [lib/task.ts:1771](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1771)
26776
26877
 
26777
26878
  Task 的简略情况,通常在 list 当中
26778
26879
 
@@ -26782,7 +26883,7 @@ Task 的简略情况,通常在 list 当中
26782
26883
 
26783
26884
  > **current**: `string`
26784
26885
 
26785
- Defined in: [lib/task.ts:1775](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1775)
26886
+ Defined in: [lib/task.ts:1778](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1778)
26786
26887
 
26787
26888
  ***
26788
26889
 
@@ -26790,7 +26891,7 @@ Defined in: [lib/task.ts:1775](https://github.com/maiyun/clickgo/blob/master/dis
26790
26891
 
26791
26892
  > **customTheme**: `boolean`
26792
26893
 
26793
- Defined in: [lib/task.ts:1771](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1771)
26894
+ Defined in: [lib/task.ts:1774](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1774)
26794
26895
 
26795
26896
  ***
26796
26897
 
@@ -26798,7 +26899,7 @@ Defined in: [lib/task.ts:1771](https://github.com/maiyun/clickgo/blob/master/dis
26798
26899
 
26799
26900
  > **formCount**: `number`
26800
26901
 
26801
- Defined in: [lib/task.ts:1772](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1772)
26902
+ Defined in: [lib/task.ts:1775](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1775)
26802
26903
 
26803
26904
  ***
26804
26905
 
@@ -26806,7 +26907,7 @@ Defined in: [lib/task.ts:1772](https://github.com/maiyun/clickgo/blob/master/dis
26806
26907
 
26807
26908
  > **icon**: `string`
26808
26909
 
26809
- Defined in: [lib/task.ts:1773](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1773)
26910
+ Defined in: [lib/task.ts:1776](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1776)
26810
26911
 
26811
26912
  ***
26812
26913
 
@@ -26814,7 +26915,7 @@ Defined in: [lib/task.ts:1773](https://github.com/maiyun/clickgo/blob/master/dis
26814
26915
 
26815
26916
  > **locale**: `string`
26816
26917
 
26817
- Defined in: [lib/task.ts:1770](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1770)
26918
+ Defined in: [lib/task.ts:1773](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1773)
26818
26919
 
26819
26920
  ***
26820
26921
 
@@ -26822,7 +26923,7 @@ Defined in: [lib/task.ts:1770](https://github.com/maiyun/clickgo/blob/master/dis
26822
26923
 
26823
26924
  > **name**: `string`
26824
26925
 
26825
- Defined in: [lib/task.ts:1769](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1769)
26926
+ Defined in: [lib/task.ts:1772](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1772)
26826
26927
 
26827
26928
  ***
26828
26929
 
@@ -26830,7 +26931,7 @@ Defined in: [lib/task.ts:1769](https://github.com/maiyun/clickgo/blob/master/dis
26830
26931
 
26831
26932
  > **path**: `string`
26832
26933
 
26833
- Defined in: [lib/task.ts:1774](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1774)
26934
+ Defined in: [lib/task.ts:1777](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1777)
26834
26935
 
26835
26936
  lib/task/interfaces/ITaskRunOptions.md
26836
26937
  ---
@@ -26843,7 +26944,7 @@ lib/task/interfaces/ITaskRunOptions.md
26843
26944
 
26844
26945
  # Interface: ITaskRunOptions
26845
26946
 
26846
- Defined in: [lib/task.ts:1740](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1740)
26947
+ Defined in: [lib/task.ts:1743](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1743)
26847
26948
 
26848
26949
  ## Properties
26849
26950
 
@@ -26851,7 +26952,7 @@ Defined in: [lib/task.ts:1740](https://github.com/maiyun/clickgo/blob/master/dis
26851
26952
 
26852
26953
  > `optional` **after**: `string`
26853
26954
 
26854
- Defined in: [lib/task.ts:1753](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1753)
26955
+ Defined in: [lib/task.ts:1756](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1756)
26855
26956
 
26856
26957
  如果是网络加载 cga,则网址后面会附带,如 ?123
26857
26958
 
@@ -26861,7 +26962,7 @@ Defined in: [lib/task.ts:1753](https://github.com/maiyun/clickgo/blob/master/dis
26861
26962
 
26862
26963
  > `optional` **data**: `Record`\<`string`, `any`\>
26863
26964
 
26864
- Defined in: [lib/task.ts:1755](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1755)
26965
+ Defined in: [lib/task.ts:1758](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1758)
26865
26966
 
26866
26967
  给 task 传值
26867
26968
 
@@ -26871,7 +26972,7 @@ Defined in: [lib/task.ts:1755](https://github.com/maiyun/clickgo/blob/master/dis
26871
26972
 
26872
26973
  > `optional` **icon**: `string`
26873
26974
 
26874
- Defined in: [lib/task.ts:1741](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1741)
26975
+ Defined in: [lib/task.ts:1744](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1744)
26875
26976
 
26876
26977
  ***
26877
26978
 
@@ -26879,7 +26980,7 @@ Defined in: [lib/task.ts:1741](https://github.com/maiyun/clickgo/blob/master/dis
26879
26980
 
26880
26981
  > `optional` **initProgress**: (`loaded`, `total`, `type`, `msg`) => `void` \| `Promise`\<`void`\>
26881
26982
 
26882
- Defined in: [lib/task.ts:1743](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1743)
26983
+ Defined in: [lib/task.ts:1746](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1746)
26883
26984
 
26884
26985
  初始化进度回调
26885
26986
 
@@ -26911,7 +27012,7 @@ Defined in: [lib/task.ts:1743](https://github.com/maiyun/clickgo/blob/master/dis
26911
27012
 
26912
27013
  > `optional` **notify**: `boolean`
26913
27014
 
26914
- Defined in: [lib/task.ts:1749](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1749)
27015
+ Defined in: [lib/task.ts:1752](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1752)
26915
27016
 
26916
27017
  显示 notify 窗口
26917
27018
 
@@ -26921,7 +27022,7 @@ Defined in: [lib/task.ts:1749](https://github.com/maiyun/clickgo/blob/master/dis
26921
27022
 
26922
27023
  > `optional` **path**: `string`
26923
27024
 
26924
- Defined in: [lib/task.ts:1757](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1757)
27025
+ Defined in: [lib/task.ts:1760](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1760)
26925
27026
 
26926
27027
  执行文件的基路径,一般在传入 APP 包时使用,以 .cga 结尾
26927
27028
 
@@ -26931,7 +27032,7 @@ Defined in: [lib/task.ts:1757](https://github.com/maiyun/clickgo/blob/master/dis
26931
27032
 
26932
27033
  > `optional` **permissions**: `string`[]
26933
27034
 
26934
- Defined in: [lib/task.ts:1751](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1751)
27035
+ Defined in: [lib/task.ts:1754](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1754)
26935
27036
 
26936
27037
  直接赋予此任务相应权限,有 "root" 权限的应用才能设置
26937
27038
 
@@ -26941,7 +27042,7 @@ Defined in: [lib/task.ts:1751](https://github.com/maiyun/clickgo/blob/master/dis
26941
27042
 
26942
27043
  > `optional` **perProgress**: (`per`) => `void` \| `Promise`\<`void`\>
26943
27044
 
26944
- Defined in: [lib/task.ts:1747](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1747)
27045
+ Defined in: [lib/task.ts:1750](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1750)
26945
27046
 
26946
27047
  返回总加载进度百分比(0 - 1)
26947
27048
 
@@ -26961,7 +27062,7 @@ Defined in: [lib/task.ts:1747](https://github.com/maiyun/clickgo/blob/master/dis
26961
27062
 
26962
27063
  > `optional` **progress**: (`loaded`, `total`, `type`, `path`) => `void` \| `Promise`\<`void`\>
26963
27064
 
26964
- Defined in: [lib/task.ts:1745](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1745)
27065
+ Defined in: [lib/task.ts:1748](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1748)
26965
27066
 
26966
27067
  加载进度回调(根据 type 分为不同阶段)
26967
27068
 
@@ -26998,7 +27099,7 @@ lib/task/interfaces/IThread.md
26998
27099
 
26999
27100
  # Interface: IThread
27000
27101
 
27001
- Defined in: [lib/task.ts:1678](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1678)
27102
+ Defined in: [lib/task.ts:1679](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1679)
27002
27103
 
27003
27104
  ## Properties
27004
27105
 
@@ -27006,7 +27107,7 @@ Defined in: [lib/task.ts:1678](https://github.com/maiyun/clickgo/blob/master/dis
27006
27107
 
27007
27108
  > **end**: () => `Promise`\<`void`\>
27008
27109
 
27009
- Defined in: [lib/task.ts:1686](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1686)
27110
+ Defined in: [lib/task.ts:1687](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1687)
27010
27111
 
27011
27112
  结束线程
27012
27113
 
@@ -27020,7 +27121,7 @@ Defined in: [lib/task.ts:1686](https://github.com/maiyun/clickgo/blob/master/dis
27020
27121
 
27021
27122
  > **off**: (`name`, `handler`) => `void`
27022
27123
 
27023
- Defined in: [lib/task.ts:1682](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1682)
27124
+ Defined in: [lib/task.ts:1683](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1683)
27024
27125
 
27025
27126
  移除事件
27026
27127
 
@@ -27044,7 +27145,7 @@ Defined in: [lib/task.ts:1682](https://github.com/maiyun/clickgo/blob/master/dis
27044
27145
 
27045
27146
  > **on**: (`name`, `handler`) => `void`
27046
27147
 
27047
- Defined in: [lib/task.ts:1680](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1680)
27148
+ Defined in: [lib/task.ts:1681](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1681)
27048
27149
 
27049
27150
  绑定事件
27050
27151
 
@@ -27068,7 +27169,7 @@ Defined in: [lib/task.ts:1680](https://github.com/maiyun/clickgo/blob/master/dis
27068
27169
 
27069
27170
  > **send**: (`data`) => `void`
27070
27171
 
27071
- Defined in: [lib/task.ts:1684](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1684)
27172
+ Defined in: [lib/task.ts:1685](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1685)
27072
27173
 
27073
27174
  发送数据
27074
27175
 
@@ -27095,7 +27196,7 @@ lib/task/variables/systemTaskInfo.md
27095
27196
 
27096
27197
  > **systemTaskInfo**: [`ISystemTaskInfo`](../interfaces/ISystemTaskInfo.md)
27097
27198
 
27098
- Defined in: [lib/task.ts:1330](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1330)
27199
+ Defined in: [lib/task.ts:1331](https://github.com/maiyun/clickgo/blob/master/dist/lib/task.ts#L1331)
27099
27200
 
27100
27201
  task 的信息
27101
27202