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.
@@ -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>