| | |
| | | <el-date-picker v-model="birthday" type="date" value-format="yyyy-MM-dd" size="small" @change="valChange()" placeholder="选择出生日期"></el-date-picker> |
| | | </div> |
| | | <div> |
| | | <el-radio v-model="member_type" label="personal">个人</el-radio> |
| | | <el-radio v-model="member_type" label="enterprise">企业</el-radio> |
| | | </div> |
| | | <div> |
| | | <el-button class="sub-button" type="primary" @click="submitLogin()" :disabled="subdisabled" :loading="subloading">注册</el-button> |
| | | </div> |
| | | </div> |
| | |
| | | <el-date-picker v-model="birthday" type="date" value-format="yyyy-MM-dd" @change="valChange()" size="small" placeholder="选择出生日期"></el-date-picker> |
| | | </div> |
| | | <div> |
| | | <el-radio v-model="member_type" label="personal">个人</el-radio> |
| | | <el-radio v-model="member_type" label="enterprise">企业</el-radio> |
| | | </div> |
| | | <div> |
| | | <el-button class="sub-button" type="primary" @click="submitLogin()" :disabled="subdisabled" :loading="subloading">注册</el-button> |
| | | </div> |
| | | </div> |
| | |
| | | birthday: '', |
| | | confirmPassword: '', |
| | | subdisabled: true, |
| | | subloading: false |
| | | subloading: false, |
| | | member_type: 'personal' |
| | | } |
| | | }, |
| | | methods: { |
| | |
| | | pwd: this.password, |
| | | birthday: this.birthday, |
| | | Type_reg: this.signtype !== 'email' ? 'mob' : 'email', |
| | | member_type: this.member_type, |
| | | timestamp: Utils.getCurrentTime() |
| | | } |
| | | |