|
@ -41,9 +41,9 @@ |
|
|
> |
|
|
> |
|
|
<template #title> |
|
|
<template #title> |
|
|
<div @click="item.showChildren=!item.showChildren" style="cursor:pointer"> |
|
|
<div @click="item.showChildren=!item.showChildren" style="cursor:pointer"> |
|
|
{{ item.taskName }} |
|
|
{{ item.taskName }}<DownOutlined v-if="item.children!= null&&!item.showChildren"/><UpOutlined v-if="item.children!= null&&item.showChildren"/> |
|
|
</div> |
|
|
</div> |
|
|
<div @click="item.showChildren=!item.showChildren" style="cursor:pointer"> |
|
|
<div> |
|
|
{{ item.scheduledStartTime + '--' + item.scheduledEndTime }} |
|
|
{{ item.scheduledStartTime + '--' + item.scheduledEndTime }} |
|
|
</div> |
|
|
</div> |
|
|
</template> |
|
|
</template> |
|
@ -114,6 +114,7 @@ |
|
|
</BasicModal> |
|
|
</BasicModal> |
|
|
</template> |
|
|
</template> |
|
|
<script lang="ts" name="viewPlanDetail" setup> |
|
|
<script lang="ts" name="viewPlanDetail" setup> |
|
|
|
|
|
import { DownOutlined,UpOutlined } from '@ant-design/icons-vue'; |
|
|
import { ref, onMounted } from 'vue'; |
|
|
import { ref, onMounted } from 'vue'; |
|
|
import childElstepchild from './childElstepchild.vue'; |
|
|
import childElstepchild from './childElstepchild.vue'; |
|
|
import addPlanFile from './addPlanFile.vue'; |
|
|
import addPlanFile from './addPlanFile.vue'; |
|
|