feat: 优化审核列表短信文案配置弹窗按钮布局和文案

This commit is contained in:
Wei_佳 2025-11-13 18:03:30 +08:00
parent be4a7802f7
commit ad4bd8145c
2 changed files with 7 additions and 7 deletions

View File

@ -178,7 +178,7 @@ const modalTitle = props.mode === 'invoice' ? '开票' : '查看发票'
<template #footer>
<div style="display: flex; justify-content: flex-end; gap: 12px">
<NButton @click="handleClose">取消</NButton>
<NButton type="primary" @click="handleConfirm">上传并通知</NButton>
<NButton type="primary" @click="handleConfirm">确定</NButton>
</div>
</template>
</NModal>

View File

@ -220,7 +220,7 @@ function handleContentSave() {
console.log('保存文案设置', contentForm.value)
// API
contentModalVisible.value = false
$message.success('文案设置保存成功')
$message.success('文案上传并通知成功')
}
})
}
@ -457,12 +457,12 @@ const contentRules = {
/>
</NFormItem>
<NFormItem>
<NSpace>
<NButton type="primary" @click="handleContentSave">
保存
</NButton>
<div style="display: flex; justify-content: flex-end; gap: 12px; width: 100%">
<NButton @click="contentModalVisible = false">取消</NButton>
</NSpace>
<NButton type="primary" @click="handleContentSave">
上传并通知
</NButton>
</div>
</NFormItem>
</NForm>
</CrudModal>