elementplus-vue-审核按钮-对话框(Dialog )

效果图:

代码:

<template>

<el-button type="success" @click="dialogVisible = true" :icon="Edit">审核</el-button>

<el-dialog

v-model="dialogVisible"

title="是否通过"

width="500"

align-center

>

<el-dialog

v-model="innerVisible"

width="500"

title="说明理由"

append-to-body

>

<!-- 新增不通过原因输入区域 -->

<div v-if="value === 'not_pass'" style="margin-top: 16px;">

<el-form>

<el-form-item label="不通过原因">

<el-input v-model="rejectReason" placeholder="请输入不通过原因"></el-input>

</el-form-item>

</el-form>

<!-- 新增不通过原因确认按钮 -->

<div class="dialog-footer" v-if="value === 'not_pass'">

<el-button @click="RejectReasonCancel">取消</el-button>

<el-button type="primary" @click="RejectReasonSubmit">确认并关闭</el-button>

</div>

</div>

</el-dialog>

<template #footer>

<div class="dialog-footer">

<el-select v-model="value" placeholder="请选择审核结果">

<el-option

v-for="item in options"

:key="item.value"

:label="item.label"

:value="item.value"

/>

</el-select>

<el-button @click="handleClose">取消</el-button>

<el-button type="primary" @click="handleSubmit">确定</el-button>

</div>

</template>

</el-dialog>

</template>

<script lang="ts" setup>

import { ElMessage, ElMessageBox } from 'element-plus'

import { Edit } from '@element-plus/icons-vue'

import { ref } from 'vue'

const dialogVisible = ref(false);

// 嵌套的对话框

const innerVisible = ref(false);

const value = ref('')

const rejectReason = ref('');

const RejectReasonSubmit = () => {

// 提交不通过原因的逻辑,这里仅为演示关闭对话框

ElMessage({

message: '不通过原因已记录',

type: 'success',

});

// 关闭内外两个对话框

innerVisible.value = false;

dialogVisible.value = false;

};

const RejectReasonCancel = () => {

innerVisible.value = false;

};

const handleClose =() =>{

ElMessage({

message:'取消操作',

type:'info'

})

dialogVisible.value = false;

};

const handleSubmit =() =>{

if(value.value ==='not_pass'){

innerVisible.value = true;

}else{

ElMessage({

message: '审核通过',

type:'success'

})

dialogVisible.value = false;

}

};

const options = [

{

value: 'pass',

label: '通过',

},

{

value: 'not_pass',

label: '不通过',

},

];

</script>

相关推荐
linweidong1 小时前
C++ 模块化编程(Modules)在大规模系统中的实践难点?
linux·前端·c++
leobertlan5 小时前
2025年终总结
前端·后端·程序员
子兮曰5 小时前
OpenClaw架构揭秘:178k stars的个人AI助手如何用Gateway模式统一控制12+通讯频道
前端·javascript·github
Howrun7775 小时前
VSCode烦人的远程交互UI讲解
ide·vue.js·vscode
百锦再6 小时前
Reactive编程入门:Project Reactor 深度指南
前端·javascript·python·react.js·django·前端框架·reactjs
莲华君6 小时前
React快速上手:从零到项目实战
前端·reactjs教程
百锦再6 小时前
React编程高级主题:测试代码
android·前端·javascript·react.js·前端框架·reactjs
易安说AI6 小时前
Ralph Loop 让Claude无止尽干活的牛马...
前端·后端
颜酱7 小时前
图结构完全解析:从基础概念到遍历实现
javascript·后端·算法
失忆爆表症8 小时前
05_UI 组件库集成指南:Shadcn/ui + Tailwind CSS v4
前端·css·ui