st-comp 0.0.152 → 0.0.153
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/User.cjs +1 -1
- package/es/User.js +4 -4
- package/es/VarietySearch.cjs +1 -1
- package/es/VarietySearch.js +7 -7
- package/es/style.css +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.umd.cjs +1 -1
- package/lib/{index-0ffc2521.js → index-ca7be205.js} +8 -8
- package/lib/{python-1f89356b.js → python-696761bd.js} +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/packages/VarietySearch/components/CommonIndicator/index.vue +5 -5
package/package.json
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
import { ref, watch, computed } from "vue";
|
|
4
4
|
|
|
5
5
|
const perVolumnRadioOptions = [
|
|
6
|
-
{ label: '近2周', value: '
|
|
7
|
-
{ label: '近1个月', value: '
|
|
8
|
-
{ label: '近3个月', value: '
|
|
9
|
-
{ label: '近6个月', value: '
|
|
10
|
-
{ label: '近1年', value: '
|
|
6
|
+
{ label: '近2周', value: '1' },
|
|
7
|
+
{ label: '近1个月', value: '2' },
|
|
8
|
+
{ label: '近3个月', value: '3' },
|
|
9
|
+
{ label: '近6个月', value: '4' },
|
|
10
|
+
{ label: '近1年', value: '5' },
|
|
11
11
|
]
|
|
12
12
|
|
|
13
13
|
const data = defineModel("data", { default: [] });
|