sige 1 year ago
parent
commit
f3553caf4a
  1. 4
      src/web/src/pages/main/Page.vue
  2. 2
      src/web/src/pages/main/contents/OperationTubeRackTakeOut.vue

4
src/web/src/pages/main/Page.vue

@ -62,6 +62,7 @@
<noti-handler-task-start-reset-error-tube-rack-put-in />
<noti-handler-task-sample-add-tube-rack-put-in />
<noti-handler-task-sample-add-tube-rack-status-confirm />
<noti-handler-task-start-reset-error-tube-rack-take-out />
</template>
<script setup>
import { ref,onMounted, onUnmounted } from 'vue';
@ -79,6 +80,7 @@ import Common from '@/utils/Common';
import NotiHandlerTaskStartResetErrorTubeRackPutIn from './contents/notification/TaskStartResetErrorTubeRackPutIn.vue';
import NotiHandlerTaskSampleAddTubeRackPutIn from './contents/notification/TaskSampleAddTubeRackPutIn.vue';
import NotiHandlerTaskSampleAddTubeRackStatusConfirm from './contents/notification/TaskSampleAddTubeRackStatusConfirm.vue';
import NotiHandlerTaskStartResetErrorTubeRackTakeOut from './contents/notification/TaskStartResetErrorTubeRackTakeOut.vue';
/** @var {AppStore} */
const appStore = useAppStore();
/** @var {Ref<string>} */
@ -212,4 +214,4 @@ async function refreshStatusMessage() {
<style scoped>
.page-menu .item.active {background: linear-gradient(270deg, #3556FA 0%, #007BFF 100%);color: white;}
.page-menu .item {cursor: pointer;color: #8799AB;padding-left: 1.25rem;padding-right: 1.25rem;}
</style>
</style>../engineering/EngineeringMode.vue

2
src/web/src/pages/main/contents/OperationTubeRackTakeOut.vue

@ -20,7 +20,7 @@ let taskId = null;
//
async function takeOutConfirm( resolve ) {
let client = ApiClient.getClient();
await client.taskActionExecute(taskId, 'done');
await client.taskActionExecute(taskId, 'Done');
}
//

Loading…
Cancel
Save