index.wxml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <view class="container">
  2. <view class="header">
  3. <text class="address">Welcome to My App</text>
  4. <text class="detail color-grey">Welcome to My App</text>
  5. </view>
  6. <view class="content">
  7. <text class="shop-name with-line">This is a simple demo page.</text>
  8. <view class="item with-line">
  9. <view class="item-detail">
  10. <image class="pic" src="./images/3.png" alt="" srcset="" />
  11. <view class="bug-detail">
  12. <text class="name">理工麻辣烫</text>
  13. <text class="num color-grey ">*2</text>
  14. </view>
  15. </view>
  16. <view class="item-price">
  17. <text class="price-new color-red">$20+40积分</text>
  18. <text class="price-old color-grey">$50</text>
  19. </view>
  20. </view>
  21. <view class="package with-line">
  22. <text class="name color-grey">包装费</text>
  23. <text class="num color-red">$2</text>
  24. </view>
  25. <view class="pay with-line">
  26. <text class="name color-grey">付款费</text>
  27. <text class="num color-red">$2</text>
  28. </view>
  29. </view>
  30. <view class="data">
  31. <view class="data-detail">
  32. <text class="name">备注</text>
  33. <text class="num color-red">$2</text>
  34. </view>
  35. </view>
  36. <view class="order-other">
  37. <view class="other-detail">
  38. <text class="name">订单编号:</text>
  39. <text class="num color-grey">111111111</text>
  40. </view>
  41. </view>
  42. </view>