index.wxml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!--pages/us/index.wxml-->
  2. <scroll-view class="scrollarea" scroll-y type="list">
  3. <view class="index_main">
  4. <button wx:if="{{!userUrl}}" class="user" open-type="chooseAvatar" bindchooseavatar="chooseavatar">
  5. <image style="width: 202rpx;height:202rpx;" src="../../images/user.png" />
  6. </button>
  7. <image class="user" wx:else src="{{ userUrl }}" />
  8. <Container wx:if="{{phone}}">
  9. <van-cell is-link url="/pages/userData/index">
  10. <view slot="title" class="title">
  11. <image src="../../images/application.png" class="icon" />
  12. 报名信息
  13. </view>
  14. </van-cell>
  15. <van-cell is-link url="/pages/downZS/index">
  16. <view slot="title" class="title">
  17. <image src="../../images/certificate.png" class="icon" />
  18. 证书下载
  19. </view>
  20. </van-cell>
  21. <van-cell is-link url="/pages/expert/index">
  22. <view slot="title" class="title">
  23. <image src="../../images/expert.png" class="icon" />
  24. 专家评审
  25. </view>
  26. </van-cell>
  27. <van-cell is-link url="/pages/admin/index">
  28. <view slot="title" class="title">
  29. <image src="../../images/shgl.png" class="icon" />
  30. 管理员审核
  31. </view>
  32. </van-cell>
  33. </Container>
  34. <Container wx:if="{{!phone}}">
  35. <van-button bind:getphonenumber="getphone" openType="getPhoneNumber" block>获取手机号</van-button>
  36. </Container>
  37. <image class="zwh" src="https://cxzx.smcic.net/topic/tool/img/%E5%B0%91%E5%84%BF%E4%B9%A6%E7%94%BB%E5%A4%A7%E8%B5%9B/us-kf.png" show-menu-by-longpress="{{true}}" mode="aspectFit" />
  38. </view>
  39. </scroll-view>