login.wxml 973 B

1234567891011121314151617181920212223
  1. <cu-custom bgColor="bg-lw-header" isCustom="{{true}}">
  2. <view slot="content">人才便捷出行</view>
  3. </cu-custom>
  4. <view class="solids-bottom padding-xs flex align-center">
  5. <view class="flex-sub text-center">
  6. <view class="solid-bottom text-xl padding">
  7. <text class="text-black text-bold">工作人员登录</text>
  8. </view>
  9. </view>
  10. </view>
  11. <form>
  12. <view class="cu-form-group margin-top">
  13. <view class="title"><text class="text-red">*</text> 账号</view>
  14. <input placeholder="请输入账号" value="" bindinput="vmodel" data-value="account"></input>
  15. </view>
  16. <view class="cu-form-group">
  17. <view class="title"><text class="text-red">*</text> 密码</view>
  18. <input password placeholder="请输入密码" value="" bindinput="vmodel" data-value="password"></input>
  19. </view>
  20. <view class="padding flex flex-direction">
  21. <button class="cu-btn lw-red margin-tb-sm lg" style="width:600rpx;" bindtap="submit">提交</button>
  22. </view>
  23. </form>