吉安感知网项目-前端
张含笑
2026-01-21 9eb8bb59b802ceef1f52d334c8e577f2bf02c90e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
<template>
  <TaskTop />
  <TaskIntermediateContent />
</template>
<script setup>
import TaskTop from "@/views/job/components/TaskTop/TaskTop.vue"
import TaskIntermediateContent from "@/views/job/components/TaskIntermediateContent/TaskIntermediateContent.vue"
import { ref } from 'vue';
const changeKey = ref(0)
provide('changeKey', changeKey)
</script>
 
<style scoped lang="scss"></style>