initial crm web

This commit is contained in:
zchengo
2022-11-28 16:38:45 +08:00
parent af7cd0c44c
commit 2e0208bf9d
29 changed files with 21927 additions and 0 deletions
+31
View File
@@ -0,0 +1,31 @@
<template>
<div style="margin-top: 50px;">
<a-result status="403" sub-title="您需要订阅个人版才能使用该功能哦">
<template #extra>
<a-button type="primary" @click="onBuy">立即订阅</a-button>
</template>
</a-result>
</div>
</template>
<script>
import { useRouter } from 'vue-router'
export default {
setup() {
const router = useRouter()
const onBuy = () => {
router.push('/subscribe')
}
return {
onBuy
}
}
}
</script>
<style>
</style>