taskDetails.vue 520 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view class="content">
  3. <u-navbar
  4. title="任务详情"
  5. :autoBack="true"
  6. bgColor="transparent"
  7. >
  8. </u-navbar>
  9. <view class="box_title">
  10. </view>
  11. <view class="box_desc">
  12. </view>
  13. <view class="box_step">
  14. </view>
  15. </view>
  16. </template>
  17. <script>
  18. export default {
  19. data() {
  20. return {
  21. }
  22. },
  23. onLoad() {
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style scoped lang="scss">
  30. .content{
  31. height: 568rpx;
  32. background: linear-gradient(to bottom, #ffe3d1, #ffffff);
  33. }
  34. </style>