Newer
Older
smart_construction / miniprogram / pages / validNameKeyword / validNameKeyword.wxml
dutingting on 24 Jul 2023 1 KB bug修复
<!-- <view class="valid-name-keyword"> -->
    <!-- <view class="image">
        <image src="../../images/login.png" mode="" class="img"/>
    </view> -->
    <!-- 头像昵称 -->
    <!-- <button class="avatar-wrapper" open-type="chooseAvatar" bind:chooseavatar="onChooseAvatar"> -->
    <!-- <button class="avatar-wrapper" open-type="chooseAvatar" bind:chooseavatar="onChooseAvatar">
        <image class="avatar" src="{{avatarUrl}}"></image>
    </button>  -->
    <view class="image">
        <image src="../../images/login.png" mode="" class="img"/>
    </view>
    <input type="nickname" maxlength="12" class="weui-input" model:value="{{nickname}}" placeholder="请输入真实姓名或授权昵称(最大12个字符)"/>
    <view class="valid-name-keyword-form" >
        <van-cell-group>
            <van-field
                model:value="{{ phone }}"
                label="账号"
                placeholder="请输入手机号"
                error-message="{{telMessage}}"
                size="large"
                class="label-class"
                bind:change="telChange"
            />
            <van-field
                model:value="{{ password }}"
                label="密码"
                placeholder="请输入密码"
                size="large"
                error-message="{{keywordMessage}}"
                class="label-class"
            />
        </van-cell-group>
    </view>
    <van-button  style="margin:0 50rpx;" size="large" round type="primary"  color="#FFDB2D"   bind:tap="confirm">确认</van-button>
<!-- </view> -->