微信小程序
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.

53 line
3.0 KiB

  1. <import src="/templates/global/global"/>
  2. <template is="toast" data="{{...toastData}}"></template>
  3. <image src="/image/login/login_bg.png" style="width: 100%;position: absolute;z-index: -1;" mode="widthFix" bindtap='goLogin'></image>
  4. <view class="container">
  5. <view style="position: absolute;left:2.5%;top:{{isIPX?'57px':'32px'}};display: flex;align-items: center;background-color:#ffffff;padding: 5px 20px 5px 10px;border-radius: 50px;" bindtap="goRegion">
  6. <image src="/image/login/loc2.png" style="width: 25px;height: 25px;"></image>
  7. <text style="color:#00B268;font-size: 14px;line-height: 15px;margin-left: 5px;">{{nowDress == '' ? '暂未选择':nowDress}}</text>
  8. </view>
  9. <view class="header" style="text-align: center;" >
  10. <view class="principal">您好,</view>
  11. <view class="instructions">欢迎登录<text>e报账</text></view>
  12. <image src="/image/login/login_icon.png" style="width: 100%;" mode="widthFix"></image>
  13. </view>
  14. <view class="quick-login" style="bottom:{{isIPhoneX?'6vh':'4vh'}}">
  15. <button wx:if="{{showPhoneBtn}}" class="key-login" type='primary' open-type='getPhoneNumber' bindgetphonenumber="getPhoneNumber">一键快捷登录</button>
  16. <button wx:if="{{!showPhoneBtn}}" class="key-login" type='primary' bind:tap="goIndex">一键登录</button>
  17. <button class="key-login2" type='primary' bindtap="goPhoneLogin">账号密码登录</button >
  18. <view class="authorization" style="margin-top:{{isIPhoneX?'2vh':'2vh'}}">
  19. <checkbox-group bindchange="checkboxChange">
  20. <label>
  21. <checkbox value="privacy" checked="{{privacyCheck}}" class="changeSize" />
  22. </label>
  23. <text bindtap="openDialog">我已查看并同意<text style="color: #00A65E;margin: 0 5px;text-decoration: underline;">服务须知</text>相关内容</text>
  24. </checkbox-group>
  25. </view>
  26. <!-- <text style="display: block;text-align: center;color: #fff;margin-top: 3vh;" bindtap="goPhoneLogin">中农融信(北京)科技股份有限公司</text> -->
  27. </view>
  28. </view>
  29. <van-dialog
  30. use-slot
  31. title="服务须知"
  32. show="{{ showDialog }}"
  33. bind:close="onClose"
  34. confirmButtonText="同意"
  35. data-type="1"
  36. bind:confirm="agree"
  37. before-close="{{beforeClose }}"
  38. closeOnClickOverlay="{{ true }}"
  39. showCancelButton="{{true}}"
  40. >
  41. <scroll-view scroll-y="true" style="height: 300px;padding: 0 15px;margin-top: 15px;" bindscrolltoupper="upper" bindscrolltolower="lower" bindscroll="scroll">
  42. <text>关于”融信云e三资+“的小程序服务(以下简称“本服务”)的说明:</text>
  43. <text>1.本服务是已线下签约客户的内部办公移动端工具,不统一对外开放!</text>
  44. <text>2.本服务不设用户注册功能,不采集用户信息!</text>
  45. <text>3.”微信一键登录“是通过该微信手机号验证系统后台用户中心是否存在此用户,存在则授权登录令牌!</text>
  46. </scroll-view>
  47. </van-dialog>