You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.0 KiB
75 lines
2.0 KiB
<!--
|
|
@ 作者: 秦东
|
|
@ 时间: 2023-03-25 09:36:59
|
|
@ 备注: 信息提示
|
|
-->
|
|
<template>
|
|
<el-dialog title="提示" :visible.sync="visibleDialog">
|
|
<div class="ant-confirm-body">
|
|
<i class="anticon anticon-close-circle" style="color: #f00;"></i>
|
|
<span class="ant-confirm-title">当前无法发布</span>
|
|
<div class="ant-confirm-content">
|
|
<div>
|
|
<p class="error-modal-desc">以下内容不完善,需进行修改</p>
|
|
<div class="error-modal-list">
|
|
<div class="error-modal-item" v-for="(item,index) in list" :key="index">
|
|
<div class="error-modal-item-label">流程设计</div>
|
|
<div class="error-modal-item-content">{{item.name}} 未选择{{item.type}}</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<span slot="footer" class="dialog-footer">
|
|
<!-- <el-button @click="visibleDialog = false">我知道了</el-button> -->
|
|
<el-button type="primary" @click="visibleDialog = false">前往修改</el-button>
|
|
</span>
|
|
</el-dialog>
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: ["list", "visible"],
|
|
data() {
|
|
return {
|
|
visibleDialog: false,
|
|
}
|
|
},
|
|
created(){
|
|
|
|
},
|
|
watch: {
|
|
visible(val) {
|
|
this.visibleDialog = val
|
|
},
|
|
visibleDialog(val) {
|
|
this.$emit('update:visible', val)
|
|
}
|
|
},
|
|
methods:{
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
.ant-confirm-body .ant-confirm-title {
|
|
color: rgba(0, 0, 0, .85);
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
line-height: 1.4;
|
|
display: block;
|
|
overflow: hidden
|
|
}
|
|
|
|
.ant-confirm-body .ant-confirm-content {
|
|
margin-left: 38px;
|
|
font-size: 14px;
|
|
color: rgba(0, 0, 0, .65);
|
|
margin-top: 8px
|
|
}
|
|
|
|
.ant-confirm-body>.anticon {
|
|
font-size: 22px;
|
|
margin-right: 16px;
|
|
float: left
|
|
}
|
|
</style>
|