about.wxml 980 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <view class="container">
  2. <view class="label">项目名称:</view>
  3. <view class="about-item">
  4. <view class="item-left">
  5. <text>{{name}}</text>
  6. </view>
  7. </view>
  8. <view class="label">项目地址:</view>
  9. <view class="about-item">
  10. <view class="item-left">
  11. <text>{{address}}</text>
  12. </view>
  13. <view class="item-right" bindtap="showLocation">
  14. <van-icon class="right-icon" name="location-o" />
  15. </view>
  16. </view>
  17. <view class="label">电话号码:</view>
  18. <view class="about-item">
  19. <view class="item-left">
  20. <text>{{phone}}</text>
  21. </view>
  22. <view class="item-right" bindtap="callPhone">
  23. <van-icon class="right-icon" name="phone-o" />
  24. </view>
  25. </view>
  26. <view class="label">QQ交流群: </view>
  27. <view class="about-item">
  28. <view class="item-left">
  29. <text>{{qq}}</text>
  30. </view>
  31. <view class="item-right">
  32. <van-icon class="right-icon" name="friends-o" />
  33. </view>
  34. </view>
  35. </view>