| 1234567891011121314151617181920212223 |
- <cu-custom bgColor="bg-lw-header" isCustom="{{true}}">
- <view slot="content">人才便捷出行</view>
- </cu-custom>
- <view class="solids-bottom padding-xs flex align-center">
- <view class="flex-sub text-center">
- <view class="solid-bottom text-xl padding">
- <text class="text-black text-bold">工作人员登录</text>
- </view>
- </view>
- </view>
- <form>
- <view class="cu-form-group margin-top">
- <view class="title"><text class="text-red">*</text> 账号</view>
- <input placeholder="请输入账号" value="" bindinput="vmodel" data-value="account"></input>
- </view>
- <view class="cu-form-group">
- <view class="title"><text class="text-red">*</text> 密码</view>
- <input password placeholder="请输入密码" value="" bindinput="vmodel" data-value="password"></input>
- </view>
- <view class="padding flex flex-direction">
- <button class="cu-btn lw-red margin-tb-sm lg" style="width:600rpx;" bindtap="submit">提交</button>
- </view>
- </form>
|