From 3bc690331548ef221c37d03637e0618e1d55352b Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Fri, 15 Aug 2025 18:07:45 +0800
Subject: [PATCH] 1

---
 src/views/account/components/Withdraw.vue |    8 ++++++--
 1 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/views/account/components/Withdraw.vue b/src/views/account/components/Withdraw.vue
index f99f234..f31a520 100644
--- a/src/views/account/components/Withdraw.vue
+++ b/src/views/account/components/Withdraw.vue
@@ -12,7 +12,7 @@
             v-for="item in options"
             :key="item.value"
             :label="item.name"
-            :value="item.value"
+            :value="item.name"
           >
           </el-option>
         </el-select>
@@ -93,7 +93,7 @@
         ],
         amt: [{ required: true, message: this.$t("请输入") }],
       },
-      options: [{ name: "USD", value: "USD" }],
+      options: [{ name: "US", value: "USD" },{ name: "HK", value: "HKD" },{ name: "IN", value: "INR" },{ name: "TW", value: "TWD" }],
       actions: [{ name: this.$t("hj215"), value: "YHK" }],
       yhkactions: [],
     };
@@ -149,6 +149,10 @@
 </script>
 
 <style lang="scss" scoped>
+	::v-deep .el-select-dropdown__list{
+		display: flex;
+		flex-direction: column;
+	}
 ::v-deep .el-radio__input.is-checked .el-radio__inner {
   border-color: #c4d600;
   background: #c4d600;

--
Gitblit v1.9.3