fix runing misspell

This commit is contained in:
geekgeekrun
2026-02-10 20:52:51 +08:00
parent 10075826dd
commit 26a3beaced
3 changed files with 13 additions and 13 deletions
@@ -1,6 +1,6 @@
<template> <template>
<el-dialog <el-dialog
modal-class="runing-overlay__modal" modal-class="running-overlay__modal"
:model-value="isDialogVisible" :model-value="isDialogVisible"
:close-on-click-modal="false" :close-on-click-modal="false"
:close-on-press-escape="false" :close-on-press-escape="false"
@@ -56,7 +56,7 @@ const props = defineProps({
} }
}) })
// const taskManagerStore = useTaskManagerStore() // const taskManagerStore = useTaskManagerStore()
// const runingTaskInfo = computed(() => { // const runningTaskInfo = computed(() => {
// return taskManagerStore.runningTasks?.find((it) => { // return taskManagerStore.runningTasks?.find((it) => {
// return it.workerId === props.workerId // return it.workerId === props.workerId
// }) // })
@@ -135,7 +135,7 @@ ipcRenderer.on('worker-exited', (ev, payload) => {
</script> </script>
<style lang="scss"> <style lang="scss">
.el-overlay.runing-overlay__modal { .el-overlay.running-overlay__modal {
position: absolute; position: absolute;
width: 100%; width: 100%;
height: 100%; height: 100%;
@@ -1198,12 +1198,12 @@
</div> </div>
</div> </div>
<div <div
class="runing-overlay__wrap" class="running-overlay__wrap"
:style="{ :style="{
pointerEvents: 'none' pointerEvents: 'none'
}" }"
> >
<RuningOverlay <RunningOverlay
ref="runningOverlayRef" ref="runningOverlayRef"
worker-id="geekAutoStartWithBossMain" worker-id="geekAutoStartWithBossMain"
:run-record-id="runRecordId" :run-record-id="runRecordId"
@@ -1232,7 +1232,7 @@
</template> </template>
</div> </div>
</template> </template>
</RuningOverlay> </RunningOverlay>
</div> </div>
</div> </div>
</template> </template>
@@ -1266,7 +1266,7 @@ import CityChooser from './components/CityChooser.vue'
import conditions from '@geekgeekrun/geek-auto-start-chat-with-boss/internal-config/job-filter-conditions-20241002.json' import conditions from '@geekgeekrun/geek-auto-start-chat-with-boss/internal-config/job-filter-conditions-20241002.json'
import JobSourceDragOrderer from '../../../features/JobSourceDragOrderer/index.vue' import JobSourceDragOrderer from '../../../features/JobSourceDragOrderer/index.vue'
import expectJobFilterTemplateList from './expectJobFilterTemplateList' import expectJobFilterTemplateList from './expectJobFilterTemplateList'
import RuningOverlay from '@renderer/features/RunningOverlay/index.vue' import RunningOverlay from '@renderer/features/RunningOverlay/index.vue'
import { RUNNING_STATUS_ENUM } from '../../../../../common/enums/auto-start-chat' import { RUNNING_STATUS_ENUM } from '../../../../../common/enums/auto-start-chat'
const gtagRenderer = (name, params?: object) => { const gtagRenderer = (name, params?: object) => {
@@ -2147,7 +2147,7 @@ const handleStopButtonClick = async () => {
} }
} }
.runing-overlay__wrap { .running-overlay__wrap {
position: absolute; position: absolute;
inset: 0; inset: 0;
} }
@@ -207,12 +207,12 @@
</el-form> </el-form>
</div> </div>
<div <div
class="runing-overlay__wrap" class="running-overlay__wrap"
:style="{ :style="{
pointerEvents: 'none' pointerEvents: 'none'
}" }"
> >
<RuningOverlay <RunningOverlay
ref="runningOverlayRef" ref="runningOverlayRef"
worker-id="readNoReplyAutoReminderMain" worker-id="readNoReplyAutoReminderMain"
:run-record-id="runRecordId" :run-record-id="runRecordId"
@@ -241,7 +241,7 @@
</template> </template>
</div> </div>
</template> </template>
</RuningOverlay> </RunningOverlay>
</div> </div>
</div> </div>
</template> </template>
@@ -258,7 +258,7 @@ import {
import { gtagRenderer as baseGtagRenderer } from '@renderer/utils/gtag' import { gtagRenderer as baseGtagRenderer } from '@renderer/utils/gtag'
import mittBus from '../../utils/mitt' import mittBus from '../../utils/mitt'
import { QuestionFilled } from '@element-plus/icons-vue' import { QuestionFilled } from '@element-plus/icons-vue'
import RuningOverlay from '@renderer/features/RunningOverlay/index.vue' import RunningOverlay from '@renderer/features/RunningOverlay/index.vue'
const gtagRenderer = (name, params?: object) => { const gtagRenderer = (name, params?: object) => {
return baseGtagRenderer(name, { return baseGtagRenderer(name, {
scene: 'rnrr-config', scene: 'rnrr-config',
@@ -638,7 +638,7 @@ const handleStopButtonClick = async () => {
} }
} }
} }
.runing-overlay__wrap { .running-overlay__wrap {
position: absolute; position: absolute;
inset: 0; inset: 0;
} }