微信小程序
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

57 linhas
3.1 KiB

  1. <import src="/templates/global/global"/>
  2. <template is="toast" data="{{...toastData}}"></template>
  3. <view class="container" style="background: url('https://www.nongshen.net/static/wechat/container_bg.jpg') center center no-repeat; background-size: 100% 100%;">
  4. <view style="position: absolute;left:2.5%;top:{{isIPX?'57px':'32px'}};display: flex;align-items: center;background-color:rgba(127,191,105,0.8);padding: 5px 10px;border-radius: 50px;" bindtap="goRegion">
  5. <image src="/image/icon/loc2.png" style="width: 13px;height: 15px;"></image>
  6. <text style="color:#fff;font-size: 14px;line-height: 15px;margin-left: 5px;">{{nowDress == '' ? '暂未选择':nowDress}}</text>
  7. </view>
  8. <view class="header" style="text-align: center;" >
  9. <!-- <view class="principal">农村事项审批与记账</view>
  10. <view class="instructions">报账简单,操作便捷</view> -->
  11. <image src="/image/login/login_text.png" style="width: 80%;margin: 0 auto;" mode="widthFix"></image>
  12. </view>
  13. <view class="quick-login" style="bottom:{{isIPhoneX?'6vh':'4vh'}}">
  14. <button
  15. wx:if="{{showPhoneBtn}}"
  16. disabled="{{showPhoneBtnDisabled}}"
  17. class="key-login"
  18. type='primary'
  19. open-type='getPhoneNumber'
  20. bindgetphonenumber="getPhoneNumber"
  21. style="background-color: {{showPhoneBtnDisabled?'#dddddd':'#ffffff'}};"
  22. >{{showPhoneBtnDisabled?'未查询到用户,请勿重复验证':'一键快捷登录'}}</button>
  23. <button wx:if="{{!showPhoneBtn}}" class="key-login" type='primary' bind:tap="goIndex">一键登录</button>
  24. <view class="authorization" style="margin-top:{{isIPhoneX?'2vh':'2vh'}}">
  25. <checkbox-group bindchange="checkboxChange">
  26. <label>
  27. <checkbox value="privacy" checked="{{privacyCheck}}" class="changeSize" />
  28. </label>
  29. <text bindtap="openDialog">我已阅读并同意用户协议和隐私政策</text>
  30. </checkbox-group>
  31. </view>
  32. <text bindtap="goPhoneLogin" style="display: block;text-align: center;color: #fff;margin-top: 3vh;">北京中农融信科技股份有限公司</text>
  33. </view>
  34. </view>
  35. <van-dialog
  36. use-slot
  37. title="用户协议和隐私政策"
  38. show="{{ showDialog }}"
  39. bind:close="onClose"
  40. confirmButtonText="同意"
  41. data-type="1"
  42. bind:confirm="agree"
  43. before-close="{{beforeClose }}"
  44. closeOnClickOverlay="{{ true }}"
  45. showCancelButton="{{true}}"
  46. >
  47. <scroll-view scroll-y="true" style="height: 300px;padding: 0 15px;margin-top: 15px;" bindscrolltoupper="upper" bindscrolltolower="lower" bindscroll="scroll">
  48. <text>关于”融信云e三资+“的小程序服务(以下简称“本服务”)的说明:</text>
  49. <text>1.本服务是已线下签约客户的内部办公移动端工具,不统一对外开放!</text>
  50. <text>2.本服务不设用户注册功能,不采集用户信息!</text>
  51. <text>3.”微信一键登录“是通过该微信手机号验证系统后台用户中心是否存在此用户,存在则授权登录令牌!</text>
  52. </scroll-view>
  53. </van-dialog>