index.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <!--pages/us/index.wxml-->
  2. <scroll-view class="scrollarea" scroll-y type="list">
  3. <view class="index_main">
  4. <button class="user" open-type="chooseAvatar" bindchooseavatar="chooseavatar">
  5. <image style="width: 202rpx;height:202rpx;" src="{{ userUrl || '../../images/user.png'}}" />
  6. </button>
  7. <Container wx:if="{{phone}}">
  8. <van-cell is-link url="/pages/userData/index">
  9. <view slot="title" class="title">
  10. <image src="../../images/application.png" class="icon" />
  11. 报名信息
  12. </view>
  13. </van-cell>
  14. <van-cell is-link url="/pages/downZS/index">
  15. <view slot="title" class="title">
  16. <image src="../../images/certificate.png" class="icon" />
  17. 证书下载
  18. </view>
  19. </van-cell>
  20. <van-cell is-link url="/pages/expert/index">
  21. <view slot="title" class="title">
  22. <image src="../../images/expert.png" class="icon" />
  23. 专家评审
  24. </view>
  25. </van-cell>
  26. <van-cell is-link url="/pages/admin/index">
  27. <view slot="title" class="title">
  28. <image src="../../images/shgl.png" class="icon" />
  29. 管理员审核
  30. </view>
  31. </van-cell>
  32. </Container>
  33. <Container wx:if="{{!phone}}">
  34. <van-button bind:getphonenumber="getphone" openType="getPhoneNumber" block>获取手机号</van-button>
  35. </Container>
  36. <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" />
  37. </view>
  38. </scroll-view>