Handy_Cao 1 vuosi sitten
vanhempi
commit
c7bdcc8319

+ 1 - 0
public/locales/en-US.json

@@ -297,6 +297,7 @@
             "SubscriptionPrice": "SubscriptionPrice",
             "avaiableMoney": "Avaiable Funds",
             "SubscriptionQty": "SubscriptionQty",
+            "ended": "Ended",
             "tips1": "Please input quantity",
             "tips2": "Please enter the price"
         },

+ 1 - 0
public/locales/th-TH.json

@@ -298,6 +298,7 @@
             "SubscriptionPrice": "ซื้อขาย",
             "avaiableMoney": "เงิน ที่มีอยู่",
             "SubscriptionQty": "จำนวนผู้เข้าซื้อ",
+            "ended": "มันจบแล้ว",
             "tips1": "กรุณาใส่จำนวน",
             "tips2": "กรุณาใส่ราคา"
         },

+ 1 - 0
public/locales/zh-CN.json

@@ -298,6 +298,7 @@
             "SubscriptionPrice": "认购价",
             "avaiableMoney": "可用资金",
             "SubscriptionQty": "认购量",
+            "ended": "已结束",
             "tips1": "请输入数量",
             "tips2": "请输入价格"
         },

+ 1 - 0
public/locales/zh-TW.json

@@ -298,6 +298,7 @@
             "SubscriptionPrice": "認購價",
             "avaiableMoney": "可用資金",
             "SubscriptionQty": "認購量",
+            "ended": "已結束",
             "tips1": "請輸入數量",
             "tips2": "請輸入價格"
         },

+ 2 - 2
src/packages/mobile/views/ballot/list/Index.vue

@@ -32,7 +32,7 @@
                     <div class="goods" @click="toDetail(item)">
                         <div class="goods-image">
                             <img :src="getFileUrl(item.attachmenturl)" />
-                            <span class="goods-image__mask">已结束</span>
+                            <span class="goods-image__mask">{{ $t('quote.presale.ended') }}</span>
                         </div>
                         <div class="goods-info">
                             <div class="goods-info__title">{{ item.goodsname }}</div>
@@ -69,7 +69,7 @@
                 <li class="list-item" v-for="(item, index) in endList" :key="index" @click="toDetail(item)">
                     <div class="img">
                         <img :src="getFirstImage(item.attachmenturl)" />
-                        <span class="img__mask">已结束</span>
+                        <span class="img__mask">{{ $t('quote.presale.ended') }}</span>
                     </div>
                     <div class="info">
                         <div class="title"><span>{{ item.goodscode }}/{{ item.goodsname }}</span></div>

+ 2 - 2
src/packages/mobile/views/presale/list/Index.vue

@@ -32,7 +32,7 @@
                     <div class="goods" @click="toDetail(item)">
                         <div class="goods-image">
                             <img :src="getFileUrl(item.attachmenturl)" />
-                            <span class="goods-image__mask">已结束</span>
+                            <span class="goods-image__mask">{{ $t('quote.presale.ended') }}</span>
                         </div>
                         <div class="goods-info">
                             <div class="goods-info__title">{{ item.goodsname }}</div>
@@ -69,7 +69,7 @@
                 <li class="list-item" v-for="(item, index) in endList" :key="index" @click="toDetail(item)">
                     <div class="img">
                         <img :src="getFirstImage(item.attachmenturl)" />
-                        <span class="img__mask">已结束</span>
+                        <span class="img__mask">{{ $t('quote.presale.ended') }}</span>
                     </div>
                     <div class="info">
                         <div class="title">{{ item.goodscode }}/{{ item.goodsname }}</div>