index.wxml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <nav-bar navbar-data='{{nvabarData}}'></nav-bar>
  2. <view class="home">
  3. <view class="main">
  4. <view class="topBtn">
  5. <!-- <text class="title">需求状态查询</text> -->
  6. <view class="topCLick">
  7. <div catchtap="myFinanceBtn">
  8. <image src="/pages/images/icon01.png"></image>
  9. <button>我的融资</button>
  10. </div>
  11. <div catchtap="myloanprojuct">
  12. <image src="/pages/images/icon02.png"></image>
  13. <button>我的申请</button>
  14. </div>
  15. </view>
  16. </view>
  17. <view class="functBtn">
  18. <button bindtap="onattestation"> <image slot="icon" src="{{ icon.myicon1 }}" mode="aspectFit" style="width: 30px; height: 18px;margin-right:5px" />我的企业<span>></span></button>
  19. <button bindtap="onUpdatePass"><image slot="icon" src="{{ icon.myicon2 }}" mode="aspectFit" style="width: 30px; height: 18px;margin-right:5px" />密码修改<span>></span></button>
  20. <button bindtap="onAboutMe"><image slot="icon" src="{{ icon.myicon3 }}" mode="aspectFit" style="width: 30px; height: 18px;margin-right:5px" />关于我们<span>></span></button>
  21. <!-- <button bindtap="onGoout"><image slot="icon" src="{{ icon.myicon4 }}" mode="aspectFit" style="width: 30px; height: 18px;margin-right:5px" />退出登录<span>></span></button> -->
  22. </view>
  23. <button bindtap="onGoout" class="quitlogin">退出登录</button>
  24. </view>
  25. <view class="down">
  26. <van-tabbar active="{{ active }}" bind:change="onChange" class="tabber">
  27. <van-tabbar-item>
  28. <image slot="icon" src="{{ icon.normal }}" mode="aspectFit" style="width: 30px; height: 18px;" />
  29. <image slot="icon-active" src="{{ icon.active }}" mode="aspectFit" style="width: 30px; height: 18px;" />
  30. 首页
  31. </van-tabbar-item>
  32. <van-tabbar-item>
  33. <image slot="icon" src="{{ icon.bankNormal }}" mode="aspectFit" style="width: 30px; height: 18px;" />
  34. <image slot="icon-active" src="{{ icon.bankActive }}" mode="aspectFit" style="width: 30px; height: 18px;" />
  35. 我要融资
  36. </van-tabbar-item>
  37. <van-tabbar-item>
  38. <image slot="icon" src="{{ icon.marketNormal }}" mode="aspectFit" style="width: 30px; height: 18px;" />
  39. <image slot="icon-active" src="{{ icon.marketActive }}" mode="aspectFit" style="width: 30px; height: 18px;" />
  40. 金融超市
  41. </van-tabbar-item>
  42. <van-tabbar-item>
  43. <image slot="icon" src="{{ icon.policyNormal }}" mode="aspectFit" style="width: 30px; height: 18px;" />
  44. <image slot="icon-active" src="{{ icon.policyActive }}" mode="aspectFit" style="width: 30px; height: 18px;" />
  45. 政策解读</van-tabbar-item>
  46. <van-tabbar-item>
  47. <image slot="icon" src="{{ icon.myNormal }}" mode="aspectFit" style="width: 30px; height: 18px;" />
  48. <image slot="icon-active" src="{{ icon.myActive }}" mode="aspectFit" style="width: 30px; height: 18px;" />
  49. 我的</van-tabbar-item>
  50. </van-tabbar>
  51. </view>
  52. </view>