Commit 3ae06245 authored by zhengke's avatar zhengke

共享空间调整

parent 1e835746
......@@ -31,7 +31,7 @@ const ALL_MEMBER_RIGHTS:MemberRights[]=[
{name:'VIP模板',value:'no',range:['F']},
{name:'创建行程数量',value:'无限制',range:['E','P']},
{name:'云盘空间',value:'10GB',range:['P']},
{name:'企业共享空间',value:'500GB',range:['E']},
{name:'企业共享空间',value:'50GB',range:['E']},
{name:'POI图库',value:'无限制',range:['E','P']},
{name:'PDF水印',value:'可去除',range:['E','P']},
{name:'图片水印',value:'可去除',range:['E','P']},
......
......@@ -109,7 +109,7 @@ import router from "@/router";
const loading = ref(false);
const products = ref<any[]>();
const space = ref<string[]>(["20G", "100G", "定制"]);
const space = ref<string[]>(["10G", "50G", "定制"]);
const choosenVersion = ref<any>(null);
const creating = ref(false)
const showPay = ref(true)
......
......@@ -123,6 +123,10 @@ const countValue = ref(Date.now() + 1000 * 60 * 30)
if(userInfo.value.it) activeVersion.value=2
rights.value = activeVersion.value==1?PersonMemberRight:EntMemberRight
products.value = activeVersion.value==1?psnProducts.value:entProducts.value
if(products.value && products.value.length>0) currentProduct.value = products.value[0]
const changeVersionHandler = (v:number)=>{
activeVersion.value=v
currentProduct.value = null
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment