detail.vue 313 B

1234567891011121314151617181920
  1. <template>
  2. <div class="w-full h-full">
  3. 销售订单详情
  4. </div>
  5. </template>
  6. <script setup>
  7. import { ref } from 'vue';
  8. import { useLifecycle } from '@hooks/useCommon.js';
  9. useLifecycle({
  10. load: () => {
  11. // 添加加载逻辑
  12. }
  13. });
  14. </script>
  15. <style lang='scss' scoped>
  16. /* 样式代码 */
  17. </style>