diff --git a/src/pages/09_task-order/expansion/RemarkExpansion.vue b/src/pages/09_task-order/expansion/RemarkExpansion.vue index a7501f0a..df94d343 100644 --- a/src/pages/09_task-order/expansion/RemarkExpansion.vue +++ b/src/pages/09_task-order/expansion/RemarkExpansion.vue @@ -3,6 +3,7 @@ import { RequestWork } from 'src/stores/request-list'; import { convertTemplate } from 'src/utils/string-template'; import { computed } from 'vue'; import { ref } from 'vue'; +import { MainButton } from 'src/components/button'; const props = defineProps<{ readonly?: boolean; diff --git a/src/pages/09_task-order/order_view/MainPage.vue b/src/pages/09_task-order/order_view/MainPage.vue index 125ce261..541eb1cb 100644 --- a/src/pages/09_task-order/order_view/MainPage.vue +++ b/src/pages/09_task-order/order_view/MainPage.vue @@ -735,9 +735,12 @@ function sortList( }); } -watch([currentFormData.value.taskStatus], () => { - fetchStatus(); -}); +watch( + () => [currentFormData.value.taskStatus], + () => { + fetchStatus(); + }, +);