yangyin
2024-07-23 46b0d9969dd4b6e6cae02e7868bffa8d164c3cde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!--index.wxml-->
<view class="container">
  <view style="width: {{imageWidth}}px; height: {{imageHeight}}px;" class="login-log">
    <!-- <image style="width: {{imageWidth}}px; height: {{imageHeight}}px;" src="http://www.beng35.com/assets/miniProgram/loginLog.png"></image> -->
    <view style="width: {{imageWidth}}px; height: {{imageHeight}}px;background:url({{BackgroupImageUrl}})" class="loginBac">
      <view>
        <image src="{{LogoUrl}}" class="imgStyle"></image>
      </view>
      <view class="textStyle" style="color: #ffffff;text-align: center;font-size: x-large;font-weight: 900;margin-top: 50rpx;">
        <text>金庭智慧水务平台</text>
      </view>
    </view>
  </view>
  <view style="width: 100%; min-height: 90px;" class="inputBg">
    <view class="cu-form-group">
      <view class="title" style="width: 25%;"><i class="cuIcon-profile margin-right-sm"></i>账号</view>
      <input placeholder="请输入账号" name="input" bindinput="phoneInput" value='{{phone}}'></input>
      <icon wx:if="{{phone.length>0}}" class="cuIcon-roundclose" bindtap="clearnAccount" style="font-size: 30rpx;line-height: 2;"></icon>
    </view>
    <view class="cu-form-group">
      <view class="title" style="width: 25%;"><i class="cuIcon-lock margin-right-sm"></i>密码</view>
      <input placeholder="请输入密码" name="input" password="{{!isShowPwd}}" bindinput="passwordInput" value='{{password}}'></input>
      <icon wx:if="{{!isShowPwd}}" class="cuIcon-attention" bindtap="changePwdView" style="font-size: 30rpx;line-height: 2;"></icon>
      <icon wx:else class="cuIcon-attentionforbid" bindtap="changePwdView" style="font-size: 30rpx;line-height: 2;"></icon>
    </view>
    <view class="psdBox">
      <checkbox-group bindchange="rememberPwd">
      <checkbox value="1" checked="{{checked}}" />
      <label for="check">记住密码</label>
    </checkbox-group>
    </view>
  </view>
  <view class="loginBtnView">
    <button class="loginBtnReal" type="primary" bindtap="tapBindUserReal" style="background-color: #39b5de;">登录</button>
    <!-- <button class="loginBtnDemo" type="primary"  bindtap="tapBindUserDemo"
      style="background-color: #B9D3EE;">演示</button> -->
  </view>
  <view class="explain call_style" style="display: flex; justify-content: center; align-items: center; flex-direction: column;">
    <label bindtap="call">当前版本:
      <text class="call" bindtap="call">{{m_SoftWareVersion}}</text>
    </label>
    <label bindtap="call">技术支持:
      <text class="call" bindtap="call">苏州市吴中区金庭自来水厂</text>
    </label>
  </view>
</view>