st-comp 0.0.255 → 0.0.257
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/MonacoEditor.cjs +1 -1
- package/es/MonacoEditor.js +1 -1
- package/es/VarietyAiHelper.cjs +5 -5
- package/es/VarietyAiHelper.js +323 -279
- package/es/VarietySearch.cjs +2 -2
- package/es/VarietySearch.js +6 -6
- package/es/{index-5befc414.cjs → index-40f05e2c.cjs} +2 -2
- package/es/{index-8f9d0d17.js → index-8a54ceeb.js} +2 -2
- package/es/{python-27ece6fa.cjs → python-02c3937a.cjs} +1 -1
- package/es/{python-656db04f.js → python-99011a53.js} +1 -1
- package/es/style.css +1 -1
- package/lib/bundle.js +1 -1
- package/lib/bundle.umd.cjs +123 -123
- package/lib/{index-73a5aa87.js → index-845576f9.js} +3378 -3334
- package/lib/{python-8821365d.js → python-9f6f8113.js} +1 -1
- package/lib/style.css +1 -1
- package/package.json +1 -1
- package/packages/VarietyAiHelper/index.vue +354 -331
- package/packages/VarietySearch/components/CompositeOrder/index.vue +3 -3
|
@@ -63,7 +63,7 @@ const handleAction = (action, index) => {
|
|
|
63
63
|
const { id, name, value } = compositeOrderForm.value;
|
|
64
64
|
if (!name) return ElMessage.warning("请选择需要排序的条件");
|
|
65
65
|
const { label } = compositeOrderOptions.value.find((item) => item.key === name);
|
|
66
|
-
const tagText = `${label}-${value === "asc" ? "
|
|
66
|
+
const tagText = `${label}-${value === "asc" ? "升序↑" : "降序↓"}`;
|
|
67
67
|
|
|
68
68
|
// 新增确认逻辑
|
|
69
69
|
if (id === null) {
|
|
@@ -187,11 +187,11 @@ watch(
|
|
|
187
187
|
<el-form-item label="排序方式: ">
|
|
188
188
|
<el-radio-group v-model="compositeOrderForm.value">
|
|
189
189
|
<el-radio
|
|
190
|
-
label="
|
|
190
|
+
label="升序"
|
|
191
191
|
value="asc"
|
|
192
192
|
/>
|
|
193
193
|
<el-radio
|
|
194
|
-
label="
|
|
194
|
+
label="降序"
|
|
195
195
|
value="desc"
|
|
196
196
|
/>
|
|
197
197
|
</el-radio-group>
|