Commit dfbd2572 authored by zhengke's avatar zhengke

no message

parent 337f2dbb
......@@ -123,10 +123,6 @@ 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
......@@ -141,6 +137,8 @@ const formatProductHandler = (data: any[]) => {
psnProducts.value = data.filter((x) => x.viptype == VipType.PERSON);
products.value = activeVersion.value ==1 ?psnProducts.value:entProducts.value
if(products.value && products.value.length>0) currentProduct.value = products.value[0]
rights.value = activeVersion.value ==1 ? PersonMemberRight:EntMemberRight
setPaymentQrCode()
}
}
......
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