| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view class="content">
- <u-navbar
- title="任务详情"
- :autoBack="true"
- bgColor="transparent"
- >
- </u-navbar>
- <view class="box_title">
-
- </view>
- <view class="box_desc">
-
- </view>
- <view class="box_step">
-
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style scoped lang="scss">
- .content{
- height: 568rpx;
- background: linear-gradient(to bottom, #ffe3d1, #ffffff);
- }
- </style>
|