|
@@ -1,10 +1,14 @@
|
|
<!-- 中国嘉宾 -->
|
|
<!-- 中国嘉宾 -->
|
|
<template>
|
|
<template>
|
|
- <van-nav-bar :title="lang[langType].signUpZH" left-arrow @click-left="onClickLeft" />
|
|
|
|
|
|
+ <van-nav-bar fixed>
|
|
|
|
+ <template #left>
|
|
|
|
+ <van-icon name="arrow-left" color="#3D3D3D" @click="onClickLeft" />
|
|
|
|
+ </template>
|
|
|
|
+ <template #title>
|
|
|
|
+ <p style="padding-left: 3em;" v-text="lang[langType].signUpZH"></p>
|
|
|
|
+ </template>
|
|
|
|
+ </van-nav-bar>
|
|
<div class="form">
|
|
<div class="form">
|
|
- <div>
|
|
|
|
- <span style="font-size: 1rem;margin-left: 10px;" v-text="lang[langType].signUpZH"></span>
|
|
|
|
- </div>
|
|
|
|
<van-form ref="form" @submit="onSubmit" label-width="8em">
|
|
<van-form ref="form" @submit="onSubmit" label-width="8em">
|
|
<!-- 姓名 -->
|
|
<!-- 姓名 -->
|
|
<van-field size=“large” input-align="right"
|
|
<van-field size=“large” input-align="right"
|
|
@@ -263,17 +267,20 @@
|
|
<van-checkbox-group checked-color="#3F5AC8" v-model="activitiesAttended">
|
|
<van-checkbox-group checked-color="#3F5AC8" v-model="activitiesAttended">
|
|
<van-cell clickable :title="lang[langType].active4" @click="checkboxRefs[0].toggle()">
|
|
<van-cell clickable :title="lang[langType].active4" @click="checkboxRefs[0].toggle()">
|
|
<template #icon>
|
|
<template #icon>
|
|
- <van-checkbox :ref="el => checkboxRefs[0] = el" style="margin-right: 5px;" name="active4" @click.stop shape="square" />
|
|
|
|
|
|
+ <van-checkbox :ref="el => checkboxRefs[0] = el" style="margin-right: 5px;"
|
|
|
|
+ name="active4" @click.stop shape="square" />
|
|
</template>
|
|
</template>
|
|
</van-cell>
|
|
</van-cell>
|
|
<van-cell clickable :title="lang[langType].active5" @click="checkboxRefs[1].toggle()">
|
|
<van-cell clickable :title="lang[langType].active5" @click="checkboxRefs[1].toggle()">
|
|
<template #icon>
|
|
<template #icon>
|
|
- <van-checkbox :ref="el => checkboxRefs[1] = el" style="margin-right: 5px;" name="active5" @click.stop shape="square" />
|
|
|
|
|
|
+ <van-checkbox :ref="el => checkboxRefs[1] = el" style="margin-right: 5px;"
|
|
|
|
+ name="active5" @click.stop shape="square" />
|
|
</template>
|
|
</template>
|
|
</van-cell>
|
|
</van-cell>
|
|
<van-cell clickable :title="lang[langType].active6" @click="checkboxRefs[2].toggle()">
|
|
<van-cell clickable :title="lang[langType].active6" @click="checkboxRefs[2].toggle()">
|
|
<template #icon>
|
|
<template #icon>
|
|
- <van-checkbox :ref="el => checkboxRefs[2] = el" style="margin-right: 5px;" name="active6" @click.stop shape="square" />
|
|
|
|
|
|
+ <van-checkbox :ref="el => checkboxRefs[2] = el" style="margin-right: 5px;"
|
|
|
|
+ name="active6" @click.stop shape="square" />
|
|
</template>
|
|
</template>
|
|
</van-cell>
|
|
</van-cell>
|
|
</van-checkbox-group>
|
|
</van-checkbox-group>
|