语言适配加部分布局修改
This commit is contained in:
@@ -1,21 +1,17 @@
|
||||
<template>
|
||||
<div class="signUp" v-if="signUp">
|
||||
<div class="signUp">
|
||||
<div class="selectSignUp" v-show="!isSelectSignUp">
|
||||
<div class="back" @click="close">
|
||||
< BACK
|
||||
</div>
|
||||
<div class="title">Our Advantages</div>
|
||||
<div class="introduce"><span @click="()=>isSelectSignUp=true">LEARN MORE ALL OUR PRODUCT FEATURES</span></div>
|
||||
<div class="gallery_list product_list">
|
||||
<div class="gallery_item" v-for="item in productList" :key="item">
|
||||
<div class="product_signUp_box">
|
||||
<div class="title">{{ item.title }}</div>
|
||||
<div class="info" v-if="item.title != '------------------'">{{ item.info }}</div>
|
||||
<div class="info" v-else>-----</div>
|
||||
<div class="info">{{ item.info }}</div>
|
||||
<div class="detail">{{ item.detail }}</div>
|
||||
<div class="highlight" v-if="item.highlight">{{ item.highlight }}</div>
|
||||
<div class="gallery_btn gallery_btn_radius" v-if="item.title != '------------------'" :class="{active:item.title == '------------------'}" @click="createAccount">Create account</div>
|
||||
<div class="gallery_btn gallery_btn_radius" v-else :class="{active:item.title == '------------------'}" @click="createAccount">Contact us</div>
|
||||
<div class="gallery_btn gallery_btn_radius" v-if="item.info != '/'" @click="createAccount">Create account</div>
|
||||
<a class="gallery_btn gallery_btn_radius" v-else href="mailto:info@code-create.com.hk">Contact us</a>
|
||||
</div>
|
||||
<ul class="product_detail">
|
||||
<li v-for="detailItem in item.detailList">{{ detailItem }}</li>
|
||||
@@ -35,6 +31,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="gallery_btn" style="width: 20rem;" @click="()=>isSelectSignUp=false">Create account</div>
|
||||
<!-- <div class="gallery_btn" v-else style="width: 20rem;" @click="()=>isSelectSignUp=false">Contact us</div> -->
|
||||
</div>
|
||||
<registerModel ref="registerModel"></registerModel>
|
||||
</div>
|
||||
@@ -54,7 +51,6 @@
|
||||
registerModel:null
|
||||
})
|
||||
let data = reactive({
|
||||
signUp:false,
|
||||
isSelectSignUp:false,
|
||||
productList:[
|
||||
{
|
||||
@@ -70,59 +66,33 @@
|
||||
'Support monthly/annual payment options',
|
||||
'Suitable for individual creators and freelance designers to use'
|
||||
]
|
||||
},
|
||||
{
|
||||
title:"------------------",
|
||||
info:"--- / Year",
|
||||
detail:"---------------------------------------------",
|
||||
// highlight:"---------------",
|
||||
},{
|
||||
title:"Education Edition",
|
||||
info:"/",
|
||||
detail:"Multi user management system for universities",
|
||||
highlight:"",
|
||||
detailList:[
|
||||
'---------------------------------------',
|
||||
'---------------------------------------',
|
||||
'---------------------------------------',
|
||||
'---------------------------------------',
|
||||
'---------------------------------------',
|
||||
'Multi user management system for universities',
|
||||
'Credit limits are shared across the entire school',
|
||||
'AI assisted design teaching function',
|
||||
'Support sketch creativity and design inspiration teaching',
|
||||
'Basic 3D design functions',
|
||||
]
|
||||
},{
|
||||
title:"------------------",
|
||||
info:"--- / Year",
|
||||
detail:"---------------------------------------------",
|
||||
// highlight:"---------------",
|
||||
title:"Enterprise Edition",
|
||||
info:"/",
|
||||
detail:"Enterprise level multi person collaboration system",
|
||||
highlight:"",
|
||||
detailList:[
|
||||
'---------------------------------------',
|
||||
'---------------------------------------',
|
||||
'---------------------------------------',
|
||||
'---------------------------------------',
|
||||
'---------------------------------------',
|
||||
'Enterprise level multi person collaboration system',
|
||||
'Internal Credit Sharing within Enterprises',
|
||||
'Brand DNA management system, customizable brand Exclusive design preferences',
|
||||
'Cloud based design generation and management',
|
||||
'Complete 3D design function, supporting high-definition printing output, professional plate making, and 3D rendering of renderings',
|
||||
'Enterprise level data security assurance',
|
||||
'Suitable for fashion design teams and brands to use',
|
||||
]
|
||||
},
|
||||
// {
|
||||
// title:"Education Edition",
|
||||
// info:"XXX / Year",
|
||||
// detail:"Multi user management system for universities",
|
||||
// highlight:"Free 5-day trial",
|
||||
// detailList:[
|
||||
// 'Multi user management system for universities',
|
||||
// 'Credit limits are shared across the entire school',
|
||||
// 'AI assisted design teaching function',
|
||||
// 'Support sketch creativity and design inspiration teaching',
|
||||
// 'Basic 3D design functions',
|
||||
// ]
|
||||
// },{
|
||||
// title:"Enterprise Edition",
|
||||
// info:"XXX / Year",
|
||||
// detail:"Enterprise level multi person collaboration system",
|
||||
// highlight:"Free 5-day trial",
|
||||
// detailList:[
|
||||
// 'Enterprise level multi person collaboration system',
|
||||
// 'Internal Credit Sharing within Enterprises',
|
||||
// 'Brand DNA management system, customizable brand Exclusive design preferences',
|
||||
// 'Cloud based design generation and management',
|
||||
// 'Complete 3D design function, supporting high-definition printing output, professional plate making, and 3D rendering of renderings',
|
||||
// 'Enterprise level data security assurance',
|
||||
// 'Suitable for fashion design teams and brands to use',
|
||||
// ]
|
||||
// },
|
||||
],
|
||||
introductList:[
|
||||
{
|
||||
@@ -152,12 +122,7 @@
|
||||
},
|
||||
]
|
||||
})
|
||||
const init = ()=>{
|
||||
data.signUp = true
|
||||
}
|
||||
const close = ()=>{
|
||||
data.signUp = false
|
||||
emit('close')
|
||||
}
|
||||
const createAccount = ()=>{
|
||||
if(window.innerWidth < 768){
|
||||
@@ -171,7 +136,6 @@
|
||||
return {
|
||||
...toRefs(dom),
|
||||
...toRefs(data),
|
||||
init,
|
||||
close,
|
||||
createAccount,
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user