st-comp 0.0.103 → 0.0.105
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 +174 -146
- package/es/VarietySearch.cjs +1 -1
- package/es/VarietySearch.js +975 -789
- package/es/style.css +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.umd.cjs +122 -122
- package/lib/{index-03c4eb8b.js → index-38c2d1b4.js} +7234 -7020
- package/lib/{python-d247bec1.js → python-3ba5a0ac.js} +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/packages/FactorWarning/index.vue +62 -30
- package/packages/VarietySearch/components/FactorScreen/index.vue +222 -75
- package/packages/VarietySearch/index.vue +50 -21
- package/src/pages/FactorWarning/index.vue +5 -749
- package/src/pages/VarietySearch/index.vue +4 -4
|
@@ -57,13 +57,13 @@ const varietySearchConfig = ref({
|
|
|
57
57
|
sqlShow: true,
|
|
58
58
|
// 周期下拉框数据源
|
|
59
59
|
cycleOptions: [
|
|
60
|
-
{ label: "
|
|
61
|
-
{ label: "
|
|
60
|
+
{ label: "周期一", value: 1 },
|
|
61
|
+
{ label: "周期二", value: 2 },
|
|
62
62
|
],
|
|
63
63
|
// 因子下拉框数据源
|
|
64
64
|
factorOptions: [
|
|
65
|
-
{ label: "
|
|
66
|
-
{ label: "
|
|
65
|
+
{ label: "因子一", value: 1 },
|
|
66
|
+
{ label: "因子二", value: 2 },
|
|
67
67
|
],
|
|
68
68
|
// 因子使用说明数据源
|
|
69
69
|
factorDescriptions: [],
|