From 410baea0e0e5a74350adc5291cf23cb79ad30daa Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Thu, 10 Jul 2025 14:36:06 +0800
Subject: [PATCH] 11

---
 src/page/kline/index.vue |   22 +++++++++++-----------
 1 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/src/page/kline/index.vue b/src/page/kline/index.vue
index 1d0ecc9..0d4597e 100644
--- a/src/page/kline/index.vue
+++ b/src/page/kline/index.vue
@@ -25,7 +25,7 @@
                 </div>
                 <div class="right">
                   <span v-if="$store.state.userInfo.userAmt == undefined"
-                    >₹0.00</span
+                    >¥0.00</span
                   >
                   <span
                     v-if="
@@ -44,7 +44,7 @@
                           (
                             Number($store.state.userInfo.userIndexAmt) / 0.9
                           ).toFixed(2)
-                        : "₹" + $store.state.userInfo.userIndexAmt
+                        : "¥" + $store.state.userInfo.userIndexAmt
                     }}
                   </span>
                   <span
@@ -55,7 +55,7 @@
                     style="white-space: nowarp"
                   >
                     {{
-                      "₹ " +
+                      "¥ " +
                       parseFloat(
                         $store.state.userInfo.enableAmt.toFixed(2)
                       ).toLocaleString()
@@ -82,7 +82,7 @@
               }}</span> -->
               <span
                 :class="singDetails.hcrate > 0 ? 'price green' : 'price red'"
-                >₹{{ singDetails.nowPrice  }}</span
+                >¥{{ singDetails.nowPrice  }}</span
               >
             </div>
             <div class="bottom_now">
@@ -92,7 +92,7 @@
                     ? '+' : ''
                 }}{{ (singDetails.nowPrice - singDetails.preclose_px).toFixed(2) }}</span> -->
                 <span v-else>
-                  ₹{{
+                  ¥{{
                     (singDetails.nowPrice - singDetails.preclose_px).toFixed(2)
                   }}</span
                 >
@@ -121,7 +121,7 @@
                   :class="
                     singDetails.hcrate > 0 ? 'number green' : 'number red'
                   "
-                  >₹{{ singDetails.open_px   }}</span
+                  >¥{{ singDetails.open_px   }}</span
                 >
               </div>
               <div class="rights topes">
@@ -133,7 +133,7 @@
                   :class="
                     singDetails.hcrate > 0 ? 'number green' : 'number red'
                   "
-                  >₹{{ singDetails.today_max   }}</span
+                  >¥{{ singDetails.today_max   }}</span
                 >
               </div>
             </div>
@@ -147,7 +147,7 @@
                   :class="
                     singDetails.hcrate > 0 ? 'number green' : 'number red'
                   "
-                  >₹{{ singDetails.preclose_px   }}</span
+                  >¥{{ singDetails.preclose_px   }}</span
                 >
               </div>
                <div class="rights bots">
@@ -159,7 +159,7 @@
                   :class="
                     singDetails.hcrate > 0 ? 'number green' : 'number red'
                   "
-                  >₹{{ singDetails.today_min  }}</span
+                  >¥{{ singDetails.today_min  }}</span
                 >
               </div>
             </div>
@@ -433,7 +433,7 @@
             <span>{{ $t("hj84") }}</span>
           </div>
           <div class="bottom_buy">
-            <span>₹{{ singDetails.nowPrice  }}</span>
+            <span>¥{{ singDetails.nowPrice  }}</span>
           </div>
         </div>
         <div class="sell_btn" @click="goBuy(1)">
@@ -441,7 +441,7 @@
             <span>{{ $t("hj85") }}</span>
           </div>
           <div class="bottom_sell">
-            <span>₹{{ singDetails.nowPrice  }}</span>
+            <span>¥{{ singDetails.nowPrice  }}</span>
           </div>
         </div>
       </div>

--
Gitblit v1.9.3