This commit is contained in:
qsh
2025-03-11 18:22:40 +08:00
parent b91fe3b05a
commit b0573fdf17
3 changed files with 598 additions and 1 deletions

View File

@@ -11,7 +11,9 @@
<el-tab-pane label="我负责的" name="0">
<MyDuty v-if="tabIndex == 0" />
</el-tab-pane>
<el-tab-pane label="我的待办" name="1">我的待办</el-tab-pane>
<el-tab-pane label="待办事项" name="1">
<WaitTarget v-if="tabIndex == 1" />
</el-tab-pane>
<el-tab-pane label="全部目标" name="2">
<AllTarget v-if="tabIndex == 2" />
</el-tab-pane>
@@ -40,6 +42,7 @@
import AllTarget from './Components/AllTarget.vue'
import MyDuty from './Components/MyDuty.vue'
import ObjectList from './Components/ObjectList.vue'
import WaitTarget from './Components/WaitTarget.vue'
const tabIndex = ref('0')
const height = ref(innerHeight - 115)