Handy_Cao 9 bulan lalu
induk
melakukan
6f1a7aa3c1

+ 3 - 0
oem/sjgj/locales/extras/en-US.json

@@ -10,6 +10,9 @@
             "registercode": "经纪编码"
         }
     },
+    "order": {
+        "deliverytime": "申请时间"
+    },
     "mine": {
         "cashin": "付款",
         "cashout": "提现",

+ 3 - 0
oem/sjgj/locales/extras/th-TH.json

@@ -10,6 +10,9 @@
             "registercode": "经纪编码"
         }
     },
+    "order": {
+        "deliverytime": "申请时间"
+    },
     "mine": {
         "cashin": "付款",
         "cashout": "提现",

+ 3 - 0
oem/sjgj/locales/extras/zh-CN.json

@@ -10,6 +10,9 @@
             "registercode": "经纪编码"
         }
     },
+    "order": {
+        "deliverytime": "申请时间"
+    },
     "mine": {
         "cashin": "付款",
         "cashout": "提现",

+ 3 - 0
oem/sjgj/locales/extras/zh-TW.json

@@ -15,6 +15,9 @@
         "cashout": "提现",
         "callAteFee": "服务费"
     },
+    "order": {
+        "deliverytime": "申请时间"
+    },
     "banksign": {
         "wallet": {
             "cashin": "付款",

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

@@ -483,6 +483,7 @@
         "plTotal": "Profit and loss:",
         "feeTotal": "Fee Total:",
         "qtyTotal": "Quantity:",
+        "deliverytime": "DeliveryTime",
         "goodsorder": {
             "title": "Order request form",
             "title2": "Historical order requests",

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

@@ -486,6 +486,7 @@
         "plTotal": "กำไรและขาดทุน:",
         "feeTotal": "ค่า:",
         "qtyTotal": "จำนวน:",
+        "deliverytime": "เวลายื่นคำขอ",
         "goodsorder": {
             "title": "ใบสั่งคำสั่งซื้อ",
             "title2": "ประวัติการสั่งคำสั่งซื้อ",

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

@@ -486,6 +486,7 @@
         "plTotal": "盈亏:",
         "feeTotal": "手续费:",
         "qtyTotal": "数量:",
+        "deliverytime": "交收时间",
         "goodsorder": {
             "title": "订单委托单",
             "title2": "历史订单委托",

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

@@ -486,6 +486,7 @@
         "plTotal": "盈虧:",
         "feeTotal": "手續費:",
         "qtyTotal": "數量:",
+        "deliverytime": "交收时间",
         "goodsorder": {
             "title": "訂單委託單",
             "title2": "歷史訂單委託",

+ 1 - 1
src/packages/sbyj/views/order/list/components/market-order-delivery/index.vue

@@ -31,7 +31,7 @@
                     </Field>
                 </CellGroup>
                 <CellGroup inset>
-                    <Cell title="交收时间" :value="param326 && param327 ? `${param326} - ${param327}` : '--'" />
+                    <Cell :title="$t('order.deliverytime')" :value="param326 && param327 ? `${param326} - ${param327}` : '--'" />
                 </CellGroup>
             </Form>
             <template #footer>

+ 1 - 1
src/packages/sbyj/views/order/list/index.vue

@@ -162,7 +162,7 @@ const enableqty = (item: Model.SBYJMyOrderRsp) => {
 
 // 获取标签名称
 const getTagName = (value: number) => {
-    return value === BuyOrSell.Buy ? t('enum.BuyOrSell.Buy') : t('enum.BuyOrSell.Sell')
+    return value === BuyOrSell.Buy ? '提料' : '交料'
 }
 
 const showComponent = (componentName: string, row: Model.SBYJMyOrderRsp) => {