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.
40 lines
1.7 KiB
40 lines
1.7 KiB
<!--pages/index/index.wxml-->
|
|
<view class="page">
|
|
|
|
<!-- <view class="top-tab">
|
|
<view class="top-tab-item{{currentIndex==idx?'Active':''}}" wx:key="key" wx:for="{{navTab}}" wx:for-index="idx" wx:for-item="item" data-idx='{{idx}}' data-item='{{item}}' bindtap="switchTab">{{item.type}}
|
|
<view class="top-tab-line{{currentIndex==idx?'Active':''}}"></view>
|
|
</view>
|
|
</view> -->
|
|
|
|
<!--密码登录-->
|
|
<view class='login'>
|
|
<!-- 用户名 -->
|
|
<view class="userCs">
|
|
<image src="/images/user.png" class="user"></image>
|
|
<view class="inputview">
|
|
<input placeholder="请输入账号/手机号" type="text" value="{{account}}" bindinput="accountInput" />
|
|
<!-- 在这个input框下面再重新加一个input框,并做相关的设置 -->
|
|
<input type='text' class="inptHideen"></input>
|
|
</view>
|
|
</view>
|
|
<!-- 密码 -->
|
|
<view class=passwordCs">
|
|
<image src="/images/pass.png" class="pass"></image>
|
|
<input placeholder="请输入密码" type="password" value="{{password}}" bindinput="passwordInput" />
|
|
</view>
|
|
<!-- <button open-type="getPhoneNumber" hidden="{{false}}" lang="zh_CN" bindgetphonenumber="bindPhoneNumber">微信一键登录</button> -->
|
|
<view class="forgetView" bindtap="forgetAct">忘记密码?</view>
|
|
<view class="loginView" bindtap="loginAct">登录</view>
|
|
<view class="registerView" bindtap="registerAct">注册</view>
|
|
</view>
|
|
|
|
<!-- <view class="other-content">
|
|
<text class="text3">其他登陆方式</text>
|
|
<button class="weixinBtn" open-type="getPhoneNumber" bindgetphonenumber="bindPhoneNumber">
|
|
<image src="/images/weixin.png" mode="aspectFill"></image>
|
|
</button>
|
|
<text class="text4">微信登录</text>
|
|
</view> -->
|
|
|
|
</view>
|