feat: 添加服务模块,包含服务标题和我的客服文本

This commit is contained in:
2026-01-14 23:19:44 +07:00
parent 850682cc51
commit 8749dddd5b
6 changed files with 41 additions and 0 deletions

View File

@@ -1008,5 +1008,9 @@
"installSuccessMessage": "تم تثبيت التطبيق بنجاح",
"installSuccessButton": "موافق"
}
},
"services": {
"title": "الخدمات",
"myServices": "خدمة العملاء الخاصة بي"
}
}

View File

@@ -1008,5 +1008,9 @@
"installSuccessMessage": "App installed successfully",
"installSuccessButton": "OK"
}
},
"services": {
"title": "Services",
"myServices": "My Customer Service"
}
}

View File

@@ -1008,5 +1008,9 @@
"installSuccessMessage": "应用已成功安装到您的设备",
"installSuccessButton": "确定"
}
},
"services": {
"title": "服务",
"myServices": "我的客服"
}
}

View File

@@ -1008,5 +1008,9 @@
"installSuccessMessage": "應用已成功安裝到您的設備",
"installSuccessButton": "確定"
}
},
"services": {
"title": "服務",
"myServices": "我的客服"
}
}

View File

@@ -0,0 +1,23 @@
<script lang='ts' setup>
import { chatbubbleOutline } from "ionicons/icons";
const { t } = useI18n();
</script>
<template>
<div>
<ion-label class="text-md font-semibold">
{{ t('services.title') }}
</ion-label>
<div class="grid grid-cols-4 mt-5">
<div class="col-span-1 flex-col-center gap-2" @click="$router.push('/services')">
<ion-icon :icon="chatbubbleOutline" />
<div class="text-xs">
{{ t('services.myServices') }}
</div>
</div>
</div>
</div>
</template>
<style lang='css' scoped></style>

View File

@@ -3,6 +3,7 @@ import { closeOutline } from "ionicons/icons";
import UserInfo from "../user/components/user-info.vue";
import IssuingAsset from "./components/issuing-asset.vue";
import MyRevenue from "./components/my-revenue.vue";
import Other from "./components/other.vue";
import TradeSettings from "./components/trade-settings.vue";
</script>
@@ -24,6 +25,7 @@ import TradeSettings from "./components/trade-settings.vue";
<IssuingAsset />
<MyRevenue />
<TradeSettings />
<Other />
</div>
</ion-content>
</ion-page>