|
|
@@ -1,18 +1,18 @@
|
|
|
<van-cell>
|
|
|
<text slot='icon' class="iconfont icon-a-biaoqianlanwodexuanzhong" />
|
|
|
- <input class="input" type="text" value='{{accountno}}' bindinput="inputChange" data-name="accountno" placeholder="请输入账户名" />
|
|
|
+ <input class="input" type="text" value='{{accountno}}' bindinput="inputChange" data-name="accountno" placeholder="{{(language['请输入']||'请输入') + (language['账户']?(' '+language['账户']):'账户名')}}" />
|
|
|
</van-cell>
|
|
|
<van-cell>
|
|
|
<text slot='icon' class="iconfont icon-a-wodemima" />
|
|
|
- <input class="input" wx:if="{{inputType=='text'}}" focus='{{focus}}' bindinput="inputChange" data-name="password" value="{{password}}" placeholder="请输入密码" />
|
|
|
- <input class="input" wx:else type="password" focus='{{focus}}' bindinput="inputChange" data-name="password" value="{{password}}" placeholder="请输入密码" />
|
|
|
- <view slot='right-icon' style="width: 90rpx;height: 22.4px; display: flex; justify-content: flex-end;" catchtap="changePasswordType">
|
|
|
+ <input class="input" wx:if="{{inputType=='text'}}" focus='{{focus}}' bindinput="inputChange" data-name="password" value="{{password}}" placeholder="{{(language['请输入']||'请输入') + (language['密码']?(' '+language['密码']):'密码')}}" />
|
|
|
+ <input class="input" wx:else type="password" focus='{{focus}}' bindinput="inputChange" data-name="password" value="{{password}}" placeholder="{{(language['请输入']||'请输入') + (language['密码']?(' '+language['密码']):'密码')}}" />
|
|
|
+ <view slot='right-icon' style=" width: 90rpx;height: 22.4px; display: flex; justify-content: flex-end;" catchtap="changePasswordType">
|
|
|
<image class="image" src="{{inputType=='password'?'/static/image/dp-none.svg':'/static/image/dp-show.svg'}}" />
|
|
|
</view>
|
|
|
</van-cell>
|
|
|
<view class="box">
|
|
|
<van-checkbox custom-class='checkbox' label-class='label' icon-size="28rpx" value="{{ memory }}" shape="square" bind:change="isMemory">
|
|
|
- 记住密码
|
|
|
+ {{language['记住密码']||'记住密码'}}
|
|
|
</van-checkbox>
|
|
|
- <navigator url="./retrievePassword" class="view">忘记密码?</navigator>
|
|
|
+ <navigator url="./retrievePassword" class="view">{{language['忘记密码']||'忘记密码'}}?</navigator>
|
|
|
</view>
|