You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
|
<template>
|
|
|
|
|
|
<div class="main">
|
|
|
|
|
|
<el-card class="box-card">
|
|
|
|
|
|
<template #header>
|
|
|
|
|
|
<div class="card-header">
|
|
|
|
|
|
<span>联系方式</span>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
<el-space direction="vertical" alignment="start" :size="30">
|
|
|
|
|
|
<div class="info">
|
|
|
|
|
|
微信客服请添加:
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="info">
|
|
|
|
|
|
TG群组:https://t.me/api2gpt
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="info">
|
|
|
|
|
|
充值订单问题请发送邮件至客服邮箱: service@api2gpt.com
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</el-space>
|
|
|
|
|
|
|
|
|
|
|
|
</el-card>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
|
|
<script setup name="support">
|
|
|
|
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
|
.main {
|
|
|
|
|
|
padding: 20px;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.info {
|
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
|
color: #606266;
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|