beautyPlan.wxml 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <view class="content">
  2. <view class="header flex flex-justify-space-between">
  3. <view class="left flex-column">
  4. <text style="color: #FA7D22;margin: 22rpx 0 8rpx;font-size:36rpx;font-family: PingFangSC-Semibold, PingFang SC;">{{planInfo.status == 1 ? '进行中' : '已完成' }}~</text>
  5. <text style="color: #999999;font-size: 24rpx;">{{planInfo.start_time}}-{{ planInfo.end_time }}</text>
  6. </view>
  7. <image src="https://we-spa.oss-cn-shenzhen.aliyuncs.com/wxapp/20220317/icon_record_08.png" class="right"></image>
  8. </view>
  9. <view class="progress border-radius flex-column">
  10. <view class="flex-justify-space-between ">
  11. <text style="font-family: PingFangSC-Semibold, PingFang SC;">计划进展表</text>
  12. <text style="color:#FA7D22;">完成{{planInfo.process || '0'}}%</text>
  13. </view>
  14. <view class="flex scroll" style="margin-top: 30rpx;" wx:for="{{ planInfo.process_list }}" wx:key="index">
  15. <view class="left-box flex-column flex-center">
  16. <image src="{{ item.cover }}"></image>
  17. <text class="ellipsis" style="font-size: 24rpx;width: 100%;font-family: PingFangSC-Medium, PingFang SC;">{{ item.name }}</text>
  18. </view>
  19. <view class="flex1 flex" style="overflow-x: scroll">
  20. <view class="item flex-column flex-align-center" wx:for="{{ item.process_items }}" wx:key="index">
  21. <image src="/images/icon_record_new_0{{ 4+item.status }}.png"></image>
  22. <text style="color: #999999;font-size: 24rpx;">{{ item.project_time }}</text>
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. <view class="border-radius flex-column" style="padding: 32rpx 28rpx;">
  28. <text style="font-family: PingFangSC-Semibold, PingFang SC;">我的预约</text>
  29. <block wx:if="{{ planInfo.order.order_id }}">
  30. <text class="ellipsis" style="color: #FA7D22;font-family: PingFangSC-Semibold, PingFang SC;margin: 30rpx 0 12rpx;">{{ planInfo.order.project_name }}</text>
  31. <text style="font-family: PingFangSC-Semibold, PingFang SC;">{{ planInfo.order.order_time }}</text>
  32. <text class="ellipsis" style="font-size: 24rpx;color: #666666;">{{ planInfo.order.store_name }}</text>
  33. </block>
  34. <block wx:else>
  35. <text style="margin: 30rpx 0 12rpx;color: #999;">暂无预约信息,快来预约吧~</text>
  36. </block>
  37. </view>
  38. <view class="border-radius list-box">
  39. <view class="list" wx:for="{{ planInfo.improve }}" wx:key="index">
  40. <view class="btn-box flex flex-align-center">
  41. <image src="/images/icon_record_new_03.png"></image>
  42. <view class="btn flex-center">
  43. <text>{{item.cate_name}}</text>
  44. <text class="line">|</text>
  45. </view>
  46. <view class="btn flex-center">
  47. <text>{{item.rate}}</text>
  48. <text class="line">|</text>
  49. </view>
  50. <view class="btn flex-center">
  51. <text>{{item.continue_time}}</text>
  52. </view>
  53. </view>
  54. <!-- ?project_id=${item.id}&store_id= -->
  55. <navigator wx:key="index" url="/pages/projectDetail/projectDetail?project_id={{item.project_id}}&store_id={{item.store_id}}" hover-class="none">
  56. <view class="item flex-align-center">
  57. <image src="{{ item.cover }}"></image>
  58. <view class="right flex1 flex-column ellipsis">
  59. <text class="ellipsis" style="font-family: PingFangSC-Medium, PingFang SC;color: #FA7D22;font-size: 28rpx;">{{item.name}}</text>
  60. <text class="ellipsis" style="font-size: 24rpx;color: #666;margin-top: 16rpx;">{{item.desc}}</text>
  61. <!-- <text class="flex-justify-center">5分钟</text> -->
  62. </view>
  63. <view class="item-btn flex-center">立即预约</view>
  64. </view>
  65. </navigator>
  66. </view>
  67. </view>
  68. <view class="border-radius" style="padding: 32rpx 28rpx;">
  69. <view class="title flex-align-center" style="margin-bottom: 20rpx;">
  70. <!-- <image src="/images/icon_record_04.png" class="icon"></image> -->
  71. <text>注意事项</text>
  72. </view>
  73. <text class="btm-box-text">每次医美结束后都需要保持充足睡眠,保证皮肤充分吸收水分,请勿熬夜。</text>
  74. </view>
  75. </view>