feat: 添加服务模块,包含服务标题和我的客服文本
This commit is contained in:
@@ -1008,5 +1008,9 @@
|
||||
"installSuccessMessage": "تم تثبيت التطبيق بنجاح",
|
||||
"installSuccessButton": "موافق"
|
||||
}
|
||||
},
|
||||
"services": {
|
||||
"title": "الخدمات",
|
||||
"myServices": "خدمة العملاء الخاصة بي"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1008,5 +1008,9 @@
|
||||
"installSuccessMessage": "App installed successfully",
|
||||
"installSuccessButton": "OK"
|
||||
}
|
||||
},
|
||||
"services": {
|
||||
"title": "Services",
|
||||
"myServices": "My Customer Service"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1008,5 +1008,9 @@
|
||||
"installSuccessMessage": "应用已成功安装到您的设备",
|
||||
"installSuccessButton": "确定"
|
||||
}
|
||||
},
|
||||
"services": {
|
||||
"title": "服务",
|
||||
"myServices": "我的客服"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1008,5 +1008,9 @@
|
||||
"installSuccessMessage": "應用已成功安裝到您的設備",
|
||||
"installSuccessButton": "確定"
|
||||
}
|
||||
},
|
||||
"services": {
|
||||
"title": "服務",
|
||||
"myServices": "我的客服"
|
||||
}
|
||||
}
|
||||
|
||||
23
src/views/global-menu/components/other.vue
Normal file
23
src/views/global-menu/components/other.vue
Normal 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>
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user