1234567891011121314151617181920 |
- <template>
- <div class="w-full h-full">
- 销售订单详情
- </div>
- </template>
- <script setup>
- import { ref } from 'vue';
- import { useLifecycle } from '@hooks/useCommon.js';
- useLifecycle({
- load: () => {
- // 添加加载逻辑
- }
- });
- </script>
- <style lang='scss' scoped>
- /* 样式代码 */
- </style>
|