index.vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <template>
  2. <view class="content">
  3. <view class="page">
  4. <scroll-view :scroll-top="scrollTop" scroll-y="true" class="scroll-Y" @scrolltoupper="upper"
  5. @scrolltolower="lower" @scroll="scroll">
  6. <view class="block_2" v-for=" item in 10 ">
  7. <text lines="1" class="text_3">扫码后的项目名称</text>
  8. <view class="box_3">
  9. <view class="group_1"></view>
  10. <view class="group_2">
  11. <view class="image-text_2">
  12. <u-icon name="server-man" size="16"></u-icon>
  13. <text lines="1" class="text-group_2">服务人员:</text>
  14. </view>
  15. <view class="group_3">
  16. <u-icon name="clock" size="16"></u-icon>
  17. <text lines="1" class="text_4">服务时间:</text>
  18. </view>
  19. </view>
  20. <view class="text-wrapper_2">
  21. <text lines="1" class="text_5">张三</text>
  22. <text lines="1" decode="true" class="text_6">2023-8-14&nbsp;12:33:55</text>
  23. </view>
  24. </view>
  25. <view class="text-wrapper_3">
  26. <text lines="1" class="text_7">订单总金额:</text>
  27. <text lines="1" class="text_8">¥48.00</text>
  28. </view>
  29. <view class="box_4"></view>
  30. </view>
  31. </scroll-view>
  32. <view class="tabBarLineHeight"></view>
  33. <view class="block_3">
  34. <text lines="1" class="text_15">优惠券</text>
  35. <view class="image-text_4">
  36. <text lines="1" class="text-group_4">未选择</text>
  37. <u-icon name="arrow-right" color="#666" size="18"></u-icon>
  38. </view>
  39. </view>
  40. <view class="tabBarView">
  41. <view class="submitButton">确定</view>
  42. </view>
  43. </view>
  44. </view>
  45. </template>
  46. <script>
  47. import tabBar from "../../components/tabBar/tabBar";
  48. export default {
  49. components: {
  50. tabBar
  51. },
  52. data() {
  53. return {
  54. title: 'Hello',
  55. tabIndex: 3
  56. }
  57. },
  58. onLoad() {
  59. },
  60. methods: {
  61. }
  62. }
  63. </script>
  64. <style scoped lang="scss">
  65. @import '/common/css/common.css';
  66. @import './index.rpx.scss';
  67. </style>