st-comp 0.0.139 → 0.0.140
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/FactorWarning.cjs +1 -1
- package/es/FactorWarning.js +76 -69
- package/es/style.css +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.umd.cjs +1 -1
- package/lib/{index-0bb1da59.js → index-3f4eb3e2.js} +11 -4
- package/lib/{python-b6bbad6e.js → python-a856b259.js} +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/packages/FactorWarning/index.vue +11 -1
package/package.json
CHANGED
|
@@ -204,6 +204,7 @@ watch(
|
|
|
204
204
|
</div>
|
|
205
205
|
<el-segmented
|
|
206
206
|
v-model="segmentedValue"
|
|
207
|
+
size="default"
|
|
207
208
|
:options="[
|
|
208
209
|
{ label: '添加', value: 'ruleForm', disabled: !allowOperation },
|
|
209
210
|
{ label: '管理', value: 'table', disabled: false },
|
|
@@ -218,6 +219,7 @@ watch(
|
|
|
218
219
|
ref="ruleFormRef"
|
|
219
220
|
:model="ruleForm"
|
|
220
221
|
:rules="rules"
|
|
222
|
+
size="default"
|
|
221
223
|
label-width="90px"
|
|
222
224
|
>
|
|
223
225
|
<!-- 交易类型 -->
|
|
@@ -490,6 +492,7 @@ watch(
|
|
|
490
492
|
v-for="item in shortcutData"
|
|
491
493
|
:key="item.id"
|
|
492
494
|
type="primary"
|
|
495
|
+
size="default"
|
|
493
496
|
closable
|
|
494
497
|
@click="handleClickShortcut(item)"
|
|
495
498
|
@close="handleDeleteShortcut(item)"
|
|
@@ -518,6 +521,7 @@ watch(
|
|
|
518
521
|
:model="shortcut_ruleForm"
|
|
519
522
|
:rules="shortcut_rules"
|
|
520
523
|
label-width="90px"
|
|
524
|
+
size="default"
|
|
521
525
|
>
|
|
522
526
|
<!-- 配置名称 -->
|
|
523
527
|
<el-form-item
|
|
@@ -609,9 +613,14 @@ watch(
|
|
|
609
613
|
<!-- 底部 -->
|
|
610
614
|
<template #footer>
|
|
611
615
|
<div class="custom-footer">
|
|
612
|
-
<el-button
|
|
616
|
+
<el-button
|
|
617
|
+
size="default"
|
|
618
|
+
@click="visible = false"
|
|
619
|
+
>关闭</el-button
|
|
620
|
+
>
|
|
613
621
|
<el-button
|
|
614
622
|
v-if="segmentedValue === 'ruleForm'"
|
|
623
|
+
size="default"
|
|
615
624
|
type="primary"
|
|
616
625
|
@click="handleSubmit(ruleFormRef)"
|
|
617
626
|
>
|
|
@@ -619,6 +628,7 @@ watch(
|
|
|
619
628
|
</el-button>
|
|
620
629
|
<el-button
|
|
621
630
|
v-if="segmentedValue === 'shortcut'"
|
|
631
|
+
size="default"
|
|
622
632
|
type="primary"
|
|
623
633
|
@click="handleSaveShortcut(shortcut_ruleFormRef)"
|
|
624
634
|
>
|