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.
37 lines
1.3 KiB
37 lines
1.3 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>
|
|
<input placeholder="请输入账号/手机号" type="text" bindinput="accountInput" />
|
|
</view>
|
|
<!-- 密码 -->
|
|
<view class=passwordCs">
|
|
<image src="/images/pass.png" class="pass"></image>
|
|
<input placeholder="请输入密码" type="password" bindinput="passwordInput" />
|
|
</view>
|
|
<!-- <button open-type="getPhoneNumber" hidden="{{false}}" lang="zh_CN" bindgetphonenumber="bindPhoneNumber">微信一键登录</button> -->
|
|
<view class="loginView" bindtap="login">登录</view>
|
|
</view>
|
|
|
|
|
|
<!--验证码登录-->
|
|
|
|
|
|
<!-- <view class="ather_login">
|
|
<view>—— 其他登录方式 ——</view>
|
|
<view>
|
|
<image :src="wx"></image>
|
|
</view>
|
|
</view> -->
|
|
|
|
</view>
|