We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21fa045 commit b0e6d38Copy full SHA for b0e6d38
1 file changed
src/views/overview/candidate/components/edit-buttons.vue
@@ -80,6 +80,26 @@
80
</a-form-item>
81
</a-form>
82
</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
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
101
+ </div>
102
+ </template>
103
</a-modal>
104
<a-modal
105
v-model:visible="showTerminate"
0 commit comments