Skip to content

Commit b0e6d38

Browse files
committed
feat:在转移阶段提供直达发送通知的按钮
1 parent 21fa045 commit b0e6d38

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

src/views/overview/candidate/components/edit-buttons.vue

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,26 @@
8080
</a-form-item>
8181
</a-form>
8282
</div>
83+
<template #footer>
84+
<div class="flex justify-end gap-2">
85+
<a-button @click="showSwitchStage = false">
86+
{{ $t('common.operation.cancel') }}
87+
</a-button>
88+
<a-button type="primary" @click="handleSwitchStage">
89+
{{ $t('common.operation.confirm') }}
90+
</a-button>
91+
<a-button
92+
type="outline"
93+
class="max-sm:hidden"
94+
:size="buttonSize"
95+
:disabled="props.curStep >= recruitSteps.length || !candidates.length"
96+
@click="openNotify"
97+
>
98+
<template #icon> <icon-plus /> </template>
99+
{{ $t('common.operation.sendNotification') }}
100+
</a-button>
101+
</div>
102+
</template>
83103
</a-modal>
84104
<a-modal
85105
v-model:visible="showTerminate"

0 commit comments

Comments
 (0)