|
@@ -1,19 +1,22 @@
|
|
|
-<!-- -->
|
|
|
+<!-- 购买套餐 -->
|
|
|
<template>
|
|
|
- <v-card class="card-box pa-5">
|
|
|
- <div class="d-flex align-center " style="color: orange">
|
|
|
- <div class="mdi mdi-alert font-20"></div>
|
|
|
- <div class="font-13 ml-1">您还未购买任何会员!购买会员可享受VIP待遇!</div>
|
|
|
+ <v-card class="card-box pa-10">
|
|
|
+ <div class="d-flex justify-center">
|
|
|
+ <div class="d-flex align-center " style="color: orange">
|
|
|
+ <div class="mdi mdi-alert font-20"></div>
|
|
|
+ <div class="font-15 ml-1">您还未购买任何会员!购买会员可享受VIP待遇!</div>
|
|
|
+ </div>
|
|
|
+ <!-- <v-btn color="primary" @click="router.push({ path: '/enterprise/purchasePackage' })">{{ $t('vipPackage.buyNow') }}</v-btn> -->
|
|
|
+ <v-btn color="primary" variant="text" @click="router.push({ path: '/enterprise/purchasePackage' })">{{ $t('vipPackage.buyNow') }}</v-btn>
|
|
|
</div>
|
|
|
- <purchasePackage />
|
|
|
</v-card>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import purchasePackage from '@/views/enterprise/purchasePackage/index.vue'
|
|
|
defineOptions({name: 'enterprise-memberCenter-myAccount'})
|
|
|
</script>
|
|
|
<style lang="scss" scoped>
|
|
|
.font-13 { font-size: 13px; }
|
|
|
+.font-15 { font-size: 15px; }
|
|
|
.font-20 { font-size: 20px; }
|
|
|
</style>
|