123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div class="w-full h-full flex-col">
- <div class="bg-white info flex-1 overflow-y-auto">
- <van-cell title="任务名称" :value="''" />
- <van-cell title="优先级" :value="''" />
- </div>
- </div>
- </template>
- <script setup>
- import { ref } from 'vue';
- import { useLifecycle } from '@hooks/useCommon.js';
- const props = defineProps({
- info: {
- type: Object,
- required: true,
- default: () => ({})
- }
- })
- function getTaskDetails() {
-
- }
- function initializeData() {
- }
- useLifecycle({
- load: () => {
- initializeData()
- },
- init: () => {
- initializeData()
- }
- });
- </script>
- <style lang='scss' scoped>
- </style>
|