Handy_Cao 5 月之前
父節點
當前提交
db5c180661

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

@@ -1770,7 +1770,8 @@
         "qty": "Qty",
         "pricemove": "Inspection fee",
         "expressfees": "Tax",
-        "spec": "Spec"
+        "spec": "Spec",
+        "czzn": "Operating Guide"
     },
     "enum": {
         "auth": {

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

@@ -1773,7 +1773,8 @@
         "qty": "จำนวน",
         "pricemove": "ตรวจสอบค่าใช้จ่าย",
         "expressfees": "ค่าภาษี",
-        "spec": "คุณลักษณะ"
+        "spec": "คุณลักษณะ",
+        "czzn": "คู่มือปฏิบัติการ"
     },
     "enum": {
         "auth": {

+ 2 - 1
public/locales/vi-VN.json

@@ -1770,7 +1770,8 @@
         "qty": "Số lượng",
         "pricemove": "Phí kiểm tra",
         "expressfees": "Thuế phí",
-        "spec": "Quy cách"
+        "spec": "Quy cách",
+        "czzn": "Hướng dẫn hoạt động"
     },
     "enum": {
         "auth": {

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

@@ -1773,7 +1773,8 @@
         "qty": "数量",
         "spec": "规格",
         "pricemove": "验收费",
-        "expressfees": "税费"
+        "expressfees": "税费",
+        "czzn": "操作指南"
     },
     "enum": {
         "auth": {

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

@@ -1773,7 +1773,8 @@
         "qty": "數量",
         "pricemove": "驗收費",
         "expressfees": "稅費",
-        "spec": "規格"
+        "spec": "規格",
+        "czzn": "操作指南"
     },
     "enum": {
         "auth": {

+ 1 - 1
src/packages/tss/views/home/main/index.vue

@@ -27,7 +27,7 @@
             <span>{{ $t('tss.malls') }}</span>
           </li>
           <li @click="$router.push({ name: 'rules-czzn' })">
-            <span>操作指南</span>
+            <span>{{ $t('tss.czzn') }}</span>
           </li>
         </ul>
       </app-block>

+ 1 - 1
src/packages/tss/views/rules/czzn/index.vue

@@ -2,7 +2,7 @@
 <template>
     <app-view>
         <template #header>
-            <app-navbar title="操作指南" />
+            <app-navbar :title="$t('rules.czzn')" />
         </template>
         <div v-html="formatHtmlString(commonStore.getDocumentById(104))" />
     </app-view>