From 33f72994ec445ea6c82813cca6b6780a765c14bc Mon Sep 17 00:00:00 2001
From: lxf <1371462558@qq.com>
Date: Wed, 30 Apr 2025 01:14:04 +0800
Subject: [PATCH] 平仓和卖出逻辑添加
---
src/page/list/tradingList/data.list.vue | 10 ++++++----
1 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/src/page/list/tradingList/data.list.vue b/src/page/list/tradingList/data.list.vue
index 74668c9..53547c6 100644
--- a/src/page/list/tradingList/data.list.vue
+++ b/src/page/list/tradingList/data.list.vue
@@ -31,7 +31,7 @@
@select="onSelect"
>
<template #reference>
- <van-button type="primary">الترتيب</van-button>
+ <van-button type="primary">{{ $t("排序") }}</van-button>
</template>
</van-popover>
</van-col>
@@ -201,9 +201,9 @@
orderBy: "",
refreshing: false,
actions: [
- { text: "ترتيب", zh: "升序", val: "asc" },
- { text: "التخفيض", zh: "降序", val: "desc" },
- { text: "طبيعي", zh: "正常", val: "" }
+ { text: this.$t("升序"), zh: "升序", val: "asc" },
+ { text: this.$t("降序"), zh: "降序", val: "desc" },
+ { text: this.$t("正常"), zh: "正常", val: "" }
]
};
},
@@ -327,6 +327,8 @@
//大宗
opt.stockType = "";
data = await api.stockgetDzList(opt);
+ this.loadings = false;
+ this.finished = true;
}
} else {
// 自选
--
Gitblit v1.9.3