OrderCompleted.vue 622 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <template>
  2. <view class="content" @click="onOrder">
  3. <trans class="title" _t="查看已完成订单"></trans>
  4. <view class="img_box">
  5. <image class="img" src="/static/play_black.png" />
  6. </view>
  7. </view>
  8. </template>
  9. <script setup>
  10. const onOrder = () => {
  11. }
  12. </script>
  13. <style lang="less" scoped>
  14. @import url('@/style.less');
  15. .content {
  16. padding: 30rpx 18rpx;
  17. background-color: var(--bor-color1);
  18. border-radius: 20rpx 0 0 20rpx;
  19. .title {
  20. writing-mode: tb;
  21. color: var(--text);
  22. .size(28rpx);
  23. letter-spacing: 20rpx;
  24. }
  25. .img {
  26. height: 38rpx;
  27. width: 38rpx;
  28. }
  29. }
  30. </style>