2024-01-29 17:42:38 +08:00
|
|
|
<!--pages/login/index.wxml-->
|
|
|
|
|
<image class="bg-img" src="/images/bg.png" mode="aspectFill" />
|
2024-03-20 17:09:58 +08:00
|
|
|
<view class="top">
|
|
|
|
|
<text class="nh">您好!</text>
|
|
|
|
|
<text class="des">欢迎来到鲜水镇“智慧鲜水”数字化平台</text>
|
|
|
|
|
</view>
|
2024-01-29 17:42:38 +08:00
|
|
|
<view class="v-div v-center form">
|
2024-03-20 17:09:58 +08:00
|
|
|
<!-- 登录 -->
|
|
|
|
|
<view wx:if="{{showLogin}}" class="item v-div v-center">
|
|
|
|
|
<text class="title">手机号登录</text>
|
2024-01-29 17:42:38 +08:00
|
|
|
<view class="h-div v-center in-bg">
|
|
|
|
|
<image src="/images/user_icon.png"></image>
|
|
|
|
|
<input type="text" value="{{username}}" placeholder="请输入用户名" bindinput="inputMethed" data-type="username" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="h-div v-center in-bg">
|
|
|
|
|
<image src="/images/pws-icon.png"></image>
|
|
|
|
|
<input password type="text" value="{{password}}" placeholder="请输入密码" bindinput="inputMethed" data-type="password" />
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view catchtap="login" class="btn" data-type="{{1}}">登录</view>
|
2024-03-20 17:09:58 +08:00
|
|
|
<view class="h-div v-center bot">
|
|
|
|
|
<text class="tag" catchtap="changeWay" data-type="{{false}}">还没有账号?立即注册</text>
|
|
|
|
|
<view class="forget-pwd">忘记密码</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<!-- 注册 -->
|
|
|
|
|
<view wx:else class="item v-div v-center">
|
|
|
|
|
<text class="title">注册</text>
|
|
|
|
|
<view class="h-div v-center in-bg">
|
|
|
|
|
<text class="lab">姓名</text>
|
|
|
|
|
<input type="text" value="{{form.name}}" placeholder="请输入姓名" bindinput="inputMethed" data-type="name" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="h-div v-center in-bg">
|
|
|
|
|
<text class="lab">手机号码</text>
|
|
|
|
|
<input type="text" value="{{form.phone}}" placeholder="请输入手机号码" bindinput="inputMethed" data-type="phone" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="h-div v-center in-bg">
|
|
|
|
|
<text class="lab">登录密码</text>
|
|
|
|
|
<input type="text" value="{{form.password}}" placeholder="请输入登录密码" bindinput="inputMethed" data-type="password" />
|
|
|
|
|
</view>
|
|
|
|
|
<view class="h-div v-center in-bg">
|
|
|
|
|
<text class="lab">所属社区</text>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<view catchtap="login" class="btn" data-type="{{1}}">立即注册</view>
|
|
|
|
|
<view class="h-div v-center" style="margin-top: 30rpx;">
|
|
|
|
|
<text class="tag" catchtap="changeWay" data-type="{{true}}">已有账号?立即登录</text>
|
|
|
|
|
</view>
|
2024-01-29 17:42:38 +08:00
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
|
|
|
|
<!-- 绑定微信 -->
|
|
|
|
|
<view class="cu-modal {{showPop?'show':''}}">
|
|
|
|
|
<view class="cu-dialog pop">
|
|
|
|
|
<view class="cu-bar justify-end pop-header">
|
|
|
|
|
<view class="content text-black" style="font-weight: bold;">绑定微信</view>
|
|
|
|
|
<view class="action" bindtap="handlePop">
|
|
|
|
|
<text class="cuIcon-close text-black"></text>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="pop-content">绑定之后可使用微信登录</view>
|
|
|
|
|
<view catchtap="login" class="btn" data-type="{{2}}">一 键 绑 定</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|