You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hezhiying/pages/AssociatedmMailbox/AssociatedmMailbox.vue

43 lines
974 B

1 year ago
<template>
<view class="page">
<view class="code-get" v-if="!isSetting">
<view class="phone">
<text>请输入top123@163.com邮箱验证码</text>
</view>
<view class="code">
<input type="tel" maxlength="6" placeholder="请输入邮箱验证码">
<text>获取验证码</text>
</view>
<view class="btn" @click="isSetting = true">
<text>下一步</text>
</view>
</view>
<view class="code-get" v-else>
<view class="phone">
<input type="text" maxlength="6" placeholder="请输入邮箱号码">
</view>
<view class="code">
<input type="tel" maxlength="6" placeholder="请输入短信验证码">
<text>获取验证码</text>
</view>
<view class="btn" @click="isSetting = true">
<text>完成</text>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
isSetting: false,
};
}
}
</script>
<style scoped lang="scss">
@import 'AssociatedmMailbox.scss';
</style>