my-appointment.vue 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <!-- 我的预约 -->
  2. <template>
  3. <view class="wrap">
  4. <view class="appointment-list">
  5. <view class="appointment-item">
  6. <image src="../../../static/img-4.png" class="appointment-img" mode="aspectFill"></image>
  7. <view class="appointment-sidebar">
  8. <view class="appointment-row-between">
  9. <view class="appointment-name">陶太萌油蟠桃(黄肉油蟠桃)</view>
  10. <image class="icon" src="../../../static/icon-2.png" mode="widthFix"></image>
  11. </view>
  12. <view class="time">2020-02-24 14:3:23</view>
  13. <view class="row-end">
  14. <button type="default">更换地址</button>
  15. </view>
  16. </view>
  17. </view>
  18. <view class="appointment-item">
  19. <image src="../../../static/img-4.png" class="appointment-img" mode="aspectFill"></image>
  20. <view class="appointment-sidebar">
  21. <view class="appointment-row-between">
  22. <view class="appointment-name">陶太萌油蟠桃(黄肉油蟠桃)</view>
  23. <image class="icon" src="../../../static/icon-2.png" mode="widthFix"></image>
  24. </view>
  25. <view class="time">2020-02-24 14:3:23</view>
  26. <view class="row-end">
  27. <button type="default">更换地址</button>
  28. </view>
  29. </view>
  30. </view>
  31. <!-- 无内容时显示 -->
  32. <!-- <view class="normal-box">
  33. <image src="../../../static/normal-1.png" mode="widthFix"></image>
  34. 暂无预约
  35. </view> -->
  36. </view>
  37. <view class="bottom">
  38. <view class="label">
  39. 猜你想要
  40. </view>
  41. <view class="recommend-list">
  42. <view class="recommend-item">
  43. <image src="../../../static/img-4.png" class="recommend-img" mode="aspectFill"></image>
  44. <view class="recommend-sidebar">
  45. <view class="recommend-name">陶太萌油蟠桃(黄肉油蟠桃)</view>
  46. <view class="recommend-tag">
  47. <image src="../../../static/icon-3.png" mode=""></image>
  48. 口干多汁,品质极佳
  49. </view>
  50. <view class="recommend-msg">7月、8月采摘 | 新疆</view>
  51. <view class="recommend-row">
  52. 限量100份 <text class="margin">已预订<text class="red">56</text>份</text>
  53. </view>
  54. <view class="recommend-price">¥394.00</view>
  55. </view>
  56. </view>
  57. <view class="recommend-item">
  58. <image src="../../../static/img-4.png" class="recommend-img" mode="aspectFill"></image>
  59. <view class="recommend-sidebar">
  60. <view class="recommend-name">陶太萌油蟠桃(黄肉油蟠桃)</view>
  61. <view class="recommend-tag">
  62. <image src="../../../static/icon-3.png" mode=""></image>
  63. 口干多汁,品质极佳
  64. </view>
  65. <view class="recommend-msg">7月、8月采摘 | 新疆</view>
  66. <view class="recommend-row">
  67. 限量100份 <text class="margin">已预订<text class="red">56</text>份</text>
  68. </view>
  69. <view class="recommend-price">¥394.00</view>
  70. </view>
  71. </view>
  72. <!-- 无内容时显示 -->
  73. <!-- <view class="normal-box">
  74. <image src="../../../static/normal-2.png" mode="widthFix"></image>
  75. 暂无数据
  76. </view> -->
  77. </view>
  78. </view>
  79. </view>
  80. </template>
  81. <script>
  82. export default {
  83. data() {
  84. return {
  85. }
  86. },
  87. methods: {
  88. }
  89. }
  90. </script>
  91. <style scoped lang="scss">
  92. @import "./my-appointment.css";
  93. </style>