taskDetails - 副本.vue 651 B

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