22 lines
700 B
Vue
22 lines
700 B
Vue
<template>
|
|
<SectionStub
|
|
title="会员服务"
|
|
description="提供会员资格说明、会员申请与资料下载等服务,支持在线审核与权限化内容访问。"
|
|
:links="links"
|
|
/>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import SectionStub from '@/components/SectionStub.vue'
|
|
import { usePageSeo } from '@/composables/usePageSeo'
|
|
|
|
usePageSeo({ title: '会员服务', description: '会员服务栏目入口。', path: '/member' })
|
|
|
|
const links = [
|
|
{ label: '会员资格', to: '/member/qualification' },
|
|
{ label: '会员申请', to: '/member/apply', desc: '企业会员 / 个人会员在线申请与资料上传' },
|
|
{ label: '资料下载', to: '/downloads' }
|
|
]
|
|
</script>
|
|
|