@@ -1721,6 +1721,7 @@
"benefits": "Benefits",
"malls": "About Malls",
"logistics": "Logistics",
+ "aftersale": "AfterSale",
"sellprice": "SellPrice",
"buyprice": "BuyPrice",
"preamount": "PreAmount",
"benefits": "สวัสดิการสำหลับผู้ใช้ใหม่",
"malls": "เกี่ยวกับช้อปออนไลน์",
"logistics": "บริการจัดส่งสินค้า",
+ "aftersale": "ส่งคืนสินค้า",
"sellprice": "ราคาขายสินค้า",
"buyprice": "ราคารับซื้อคืน",
"preamount": "เงินมัดจำ",
"benefits": "新人福利",
"malls": "了解商城",
"logistics": "物流服务",
+ "aftersale": "退换货",
"sellprice": "销售价格",
"buyprice": "回购价格",
"preamount": "预付款",
"malls": "瞭解商城",
"logistics": "物流服務",
+ "aftersale": "退換貨",
"sellprice": "銷售價格",
"buyprice": "回購價格",
"preamount": "預付款",
@@ -1,7 +1,21 @@
<!-- 交收提货-退换货 -->
<template>
- <span></span>
+ <app-view>
+ <template #header>
+ <app-navbar :title="$t('tss.aftersale')" />
+ </template>
+ <p style="padding: 15px" v-html="documentcontent"></p>
+ </app-view>
</template>
<script lang="ts" setup>
+import { useCommonStore } from '@/stores/modules/common';
+import { computed } from 'vue';
+
+const commonStore = useCommonStore()
+const documentcontent = computed(() => {
+ return commonStore.getDocumentById(104)?.documentcontent ?? ''
+})
</script>