邮箱模块:完善 log 相关的逻辑
parent
f9ab45df18
commit
525078abd3
@ -1,42 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.system.controller.admin.mail.vo.log;
|
|
||||||
|
|
||||||
import com.alibaba.excel.annotation.ExcelProperty;
|
|
||||||
import io.swagger.annotations.ApiModel;
|
|
||||||
import lombok.Data;
|
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
|
||||||
|
|
||||||
import java.sql.Timestamp;
|
|
||||||
import java.util.Date;
|
|
||||||
|
|
||||||
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
||||||
|
|
||||||
@ApiModel("管理后台 - 邮箱日志导出 Request VO")
|
|
||||||
@Data
|
|
||||||
public class MailLogExcelVO {
|
|
||||||
|
|
||||||
@ExcelProperty(value = "邮箱" )
|
|
||||||
private String from;
|
|
||||||
|
|
||||||
@ExcelProperty(value = "模版编号" )
|
|
||||||
private String templeCode;
|
|
||||||
|
|
||||||
@ExcelProperty(value = "标题")
|
|
||||||
private String title;
|
|
||||||
|
|
||||||
@ExcelProperty(value = "内容")
|
|
||||||
private String content;
|
|
||||||
|
|
||||||
@ExcelProperty(value = "收件人" )
|
|
||||||
private String to;
|
|
||||||
|
|
||||||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
||||||
@ExcelProperty(value = "发送时间" )
|
|
||||||
private Date sendTime;
|
|
||||||
|
|
||||||
@ExcelProperty(value = "发送状态")
|
|
||||||
private Integer sendStatus;
|
|
||||||
|
|
||||||
@ExcelProperty(value = "发送结果")
|
|
||||||
private String sendResult;
|
|
||||||
|
|
||||||
}
|
|
||||||
@ -1,9 +0,0 @@
|
|||||||
package cn.iocoder.yudao.module.system.controller.admin.mail.vo.log;
|
|
||||||
|
|
||||||
import io.swagger.annotations.ApiModel;
|
|
||||||
import lombok.Data;
|
|
||||||
|
|
||||||
@ApiModel("管理后台 - 邮箱日志导出 Request VO")
|
|
||||||
@Data
|
|
||||||
public class MailLogExportReqVO extends MailLogPageReqVO {
|
|
||||||
}
|
|
||||||
@ -1,44 +1,19 @@
|
|||||||
package cn.iocoder.yudao.module.system.controller.admin.mail.vo.log;
|
package cn.iocoder.yudao.module.system.controller.admin.mail.vo.log;
|
||||||
|
|
||||||
import io.swagger.annotations.ApiModel;
|
import lombok.*;
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import java.time.LocalDateTime;
|
||||||
import lombok.Data;
|
import io.swagger.annotations.*;
|
||||||
import org.springframework.format.annotation.DateTimeFormat;
|
|
||||||
|
|
||||||
import java.sql.Timestamp;
|
@ApiModel("管理后台 - 邮件日志 Response VO")
|
||||||
|
|
||||||
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
||||||
|
|
||||||
@ApiModel("管理后台 - 邮箱日志返回 Request VO")
|
|
||||||
@Data
|
@Data
|
||||||
public class MailLogRespVO {
|
@EqualsAndHashCode(callSuper = true)
|
||||||
|
@ToString(callSuper = true)
|
||||||
@ApiModelProperty(value = "邮箱" , required = false , example = "yudaoyuanma@123.com")
|
public class MailLogRespVO extends MailLogBaseVO {
|
||||||
private String from;
|
|
||||||
|
|
||||||
@ApiModelProperty(value = "模版编号" , required = false , example = "templeId")
|
|
||||||
private String templateId;
|
|
||||||
|
|
||||||
@ApiModelProperty(value = "模版code" , required = false , example = "templeCode")
|
|
||||||
private String templateCode;
|
|
||||||
|
|
||||||
@ApiModelProperty(value = "标题" , required = false , example = "芋道源码")
|
|
||||||
private String title;
|
|
||||||
|
|
||||||
@ApiModelProperty(value = "内容" , required = false , example = "遇到源码")
|
|
||||||
private String content;
|
|
||||||
|
|
||||||
@ApiModelProperty(value = "收件人" , required = false , example = "yudaoyuanma@456.com")
|
|
||||||
private String to;
|
|
||||||
|
|
||||||
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
||||||
@ApiModelProperty(value = "发送时间" , required = false , example = "2022-03-26 03:45:20")
|
|
||||||
private Timestamp sendTime;
|
|
||||||
|
|
||||||
@ApiModelProperty(value = "发送状态" , required = false , example = "1")
|
@ApiModelProperty(value = "编号", required = true, example = "31020")
|
||||||
private Integer sendStatus;
|
private Long id;
|
||||||
|
|
||||||
@ApiModelProperty(value = "发送结果" , required = false , example = "yudaoyuanma@123.com")
|
@ApiModelProperty(value = "创建时间", required = true)
|
||||||
private String sendResult;
|
private LocalDateTime createTime;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,19 +1,16 @@
|
|||||||
package cn.iocoder.yudao.module.system.convert.mail;
|
package cn.iocoder.yudao.module.system.convert.mail;
|
||||||
|
|
||||||
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.mail.vo.log.MailLogExcelVO;
|
|
||||||
import cn.iocoder.yudao.module.system.controller.admin.mail.vo.log.MailLogRespVO;
|
import cn.iocoder.yudao.module.system.controller.admin.mail.vo.log.MailLogRespVO;
|
||||||
import cn.iocoder.yudao.module.system.dal.dataobject.mail.MailLogDO;
|
import cn.iocoder.yudao.module.system.dal.dataobject.mail.MailLogDO;
|
||||||
import org.mapstruct.Mapper;
|
import org.mapstruct.Mapper;
|
||||||
import org.mapstruct.factory.Mappers;
|
import org.mapstruct.factory.Mappers;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
@Mapper
|
@Mapper
|
||||||
public interface MailLogConvert {
|
public interface MailLogConvert {
|
||||||
|
|
||||||
MailLogConvert INSTANCE = Mappers.getMapper(MailLogConvert.class);
|
MailLogConvert INSTANCE = Mappers.getMapper(MailLogConvert.class);
|
||||||
|
|
||||||
PageResult<MailLogRespVO> convertPage(PageResult<MailLogDO> pageResult);
|
PageResult<MailLogRespVO> convertPage(PageResult<MailLogDO> pageResult);
|
||||||
|
|
||||||
List<MailLogExcelVO> convertList(List<MailLogDO> list);
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,18 @@
|
|||||||
|
import request from '@/utils/request'
|
||||||
|
|
||||||
|
// 获得邮件日志
|
||||||
|
export function getMailLog(id) {
|
||||||
|
return request({
|
||||||
|
url: '/system/mail-log/get?id=' + id,
|
||||||
|
method: 'get'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
// 获得邮件日志分页
|
||||||
|
export function getMailLogPage(query) {
|
||||||
|
return request({
|
||||||
|
url: '/system/mail-log/page',
|
||||||
|
method: 'get',
|
||||||
|
params: query
|
||||||
|
})
|
||||||
|
}
|
||||||
@ -0,0 +1,225 @@
|
|||||||
|
<template>
|
||||||
|
<div class="app-container">
|
||||||
|
|
||||||
|
<!-- 搜索工作栏 -->
|
||||||
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
||||||
|
<el-form-item label="接收邮箱" prop="toMail">
|
||||||
|
<el-input v-model="queryParams.toMail" placeholder="请输入接收邮箱" clearable @keyup.enter.native="handleQuery"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="邮箱账号" prop="accountId">
|
||||||
|
<el-select v-model="queryParams.accountId" placeholder="请输入邮箱账号" clearable>
|
||||||
|
<el-option v-for="account in accountOptions" :key="account.id" :value="account.id" :label="account.mail" />
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="模板编号" prop="templateId">
|
||||||
|
<el-input v-model="queryParams.templateId" placeholder="请输入模板编号" clearable @keyup.enter.native="handleQuery"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="发送状态" prop="sendStatus">
|
||||||
|
<el-select v-model="queryParams.sendStatus" placeholder="请选择发送状态" clearable size="small">
|
||||||
|
<el-option v-for="dict in this.getDictDatas(DICT_TYPE.SYSTEM_MAIL_SEND_STATUS)"
|
||||||
|
:key="dict.value" :label="dict.label" :value="dict.value"/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="发送时间" prop="sendTime">
|
||||||
|
<el-date-picker v-model="queryParams.sendTime" style="width: 240px" value-format="yyyy-MM-dd HH:mm:ss" type="daterange"
|
||||||
|
range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" :default-time="['00:00:00', '23:59:59']" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="用户编号" prop="userId">
|
||||||
|
<el-input v-model="queryParams.userId" placeholder="请输入用户编号" clearable @keyup.enter.native="handleQuery"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="用户类型" prop="userType">
|
||||||
|
<el-select v-model="queryParams.userType" placeholder="请选择用户类型" clearable>
|
||||||
|
<el-option v-for="dict in this.getDictDatas(DICT_TYPE.USER_TYPE)"
|
||||||
|
:key="dict.value" :label="dict.label" :value="dict.value"/>
|
||||||
|
</el-select>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item>
|
||||||
|
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
||||||
|
<el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
||||||
|
</el-form-item>
|
||||||
|
</el-form>
|
||||||
|
|
||||||
|
<!-- 操作工具栏 -->
|
||||||
|
<el-row :gutter="10" class="mb8">
|
||||||
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||||||
|
</el-row>
|
||||||
|
|
||||||
|
<!-- 列表 -->
|
||||||
|
<el-table v-loading="loading" :data="list">
|
||||||
|
<el-table-column label="编号" align="center" prop="id" />
|
||||||
|
<el-table-column label="发送时间" align="center" prop="sendTime" width="180">
|
||||||
|
<template v-slot="scope">
|
||||||
|
<span>{{ parseTime(scope.row.sendTime) }}</span>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="接收邮箱" align="center" prop="toMail" width="200">
|
||||||
|
<template v-slot="scope">
|
||||||
|
<div>{{ scope.row.toMail }}</div>
|
||||||
|
<div v-if="scope.row.userType && scope.row.userId">
|
||||||
|
<dict-tag :type="DICT_TYPE.USER_TYPE" :value="scope.row.userType"/>{{ '(' + scope.row.userId + ')' }}
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="邮件标题" align="center" prop="templateTitle" />
|
||||||
|
<el-table-column label="发送状态" align="center" prop="sendStatus">
|
||||||
|
<template v-slot="scope">
|
||||||
|
<dict-tag :type="DICT_TYPE.SYSTEM_MAIL_SEND_STATUS" :value="scope.row.sendStatus" />
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
<el-table-column label="邮箱账号" align="center" prop="fromMail" />
|
||||||
|
<el-table-column label="模板编号" align="center" prop="templateId" />
|
||||||
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
|
<template v-slot="scope">
|
||||||
|
<el-button size="mini" type="text" icon="el-icon-view" @click="handleView(scope.row)"
|
||||||
|
v-hasPermi="['system:mail-log:query']">详细</el-button>
|
||||||
|
</template>
|
||||||
|
</el-table-column>
|
||||||
|
</el-table>
|
||||||
|
<!-- 分页组件 -->
|
||||||
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
||||||
|
@pagination="getList"/>
|
||||||
|
|
||||||
|
<!-- 邮件日志详细-->
|
||||||
|
<el-dialog :title="title" :visible.sync="open" width="700px" v-dialogDrag append-to-body>
|
||||||
|
<el-form ref="form" :model="form" label-width="160px">
|
||||||
|
<el-row>
|
||||||
|
<el-col :span="24">
|
||||||
|
<el-form-item label="日志主键:">{{ form.id }}</el-form-item>
|
||||||
|
<el-form-item label="用户编号:">{{ form.userId }}</el-form-item>
|
||||||
|
<el-form-item label="用户类型:">
|
||||||
|
<dict-tag :type="DICT_TYPE.USER_TYPE" :value="form.userType"/>
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="接收邮箱地址:">{{ form.toMail }}</el-form-item>
|
||||||
|
<el-form-item label="邮箱账号编号:">{{ form.accountId }}</el-form-item>
|
||||||
|
<el-form-item label="发送邮箱地址:">{{ form.fromMail }}</el-form-item>
|
||||||
|
<el-form-item label="模板编号:">{{ form.templateId }}</el-form-item>
|
||||||
|
<el-form-item label="模板编码:">{{ form.templateCode }}</el-form-item>
|
||||||
|
<el-form-item label="模版发送人名称:">{{ form.templateNickname }}</el-form-item>
|
||||||
|
<el-form-item label="邮件标题:">{{ form.templateTitle }}</el-form-item>
|
||||||
|
<el-form-item label="邮件内容:">
|
||||||
|
<editor v-model="form.templateContent" :min-height="192" read-only />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="邮件参数:">{{ form.templateParams }}</el-form-item>
|
||||||
|
<el-form-item label="发送状态:">
|
||||||
|
<dict-tag :type="DICT_TYPE.SYSTEM_MAIL_SEND_STATUS" :value="form.sendStatus" />
|
||||||
|
</el-form-item>
|
||||||
|
<el-form-item label="发送时间:">{{ parseTime(form.sendTime) }}</el-form-item>
|
||||||
|
<el-form-item label="发送返回的消息编号:">{{ form.sendMessageId }}</el-form-item>
|
||||||
|
<el-form-item label="发送异常:">{{ form.sendException }}</el-form-item>
|
||||||
|
</el-col>
|
||||||
|
</el-row>
|
||||||
|
</el-form>
|
||||||
|
<div slot="footer" class="dialog-footer">
|
||||||
|
<el-button @click="open = false">关 闭</el-button>
|
||||||
|
</div>
|
||||||
|
</el-dialog>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import { getMailLog, getMailLogPage } from "@/api/system/mail/log";
|
||||||
|
import Editor from '@/components/Editor';
|
||||||
|
import { getSimpleMailAccountList } from "@/api/system/mail/account";
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: "MailLog",
|
||||||
|
components: {
|
||||||
|
Editor,
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
// 遮罩层
|
||||||
|
loading: true,
|
||||||
|
// 导出遮罩层
|
||||||
|
exportLoading: false,
|
||||||
|
// 显示搜索条件
|
||||||
|
showSearch: true,
|
||||||
|
// 总条数
|
||||||
|
total: 0,
|
||||||
|
// 邮件日志列表
|
||||||
|
list: [],
|
||||||
|
// 弹出层标题
|
||||||
|
title: "",
|
||||||
|
// 是否显示弹出层
|
||||||
|
open: false,
|
||||||
|
// 查询参数
|
||||||
|
queryParams: {
|
||||||
|
pageNo: 1,
|
||||||
|
pageSize: 10,
|
||||||
|
userId: null,
|
||||||
|
userType: null,
|
||||||
|
toMail: null,
|
||||||
|
accountId: null,
|
||||||
|
templateId: null,
|
||||||
|
sendStatus: null,
|
||||||
|
sendTime: [],
|
||||||
|
},
|
||||||
|
// 表单参数
|
||||||
|
form: {},
|
||||||
|
// 邮箱账号
|
||||||
|
accountOptions: []
|
||||||
|
};
|
||||||
|
},
|
||||||
|
created() {
|
||||||
|
this.getList();
|
||||||
|
// 获得邮箱账号列表
|
||||||
|
getSimpleMailAccountList().then(response => {
|
||||||
|
this.accountOptions = response.data
|
||||||
|
})
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
/** 查询列表 */
|
||||||
|
getList() {
|
||||||
|
this.loading = true;
|
||||||
|
// 执行查询
|
||||||
|
getMailLogPage(this.queryParams).then(response => {
|
||||||
|
this.list = response.data.list;
|
||||||
|
this.total = response.data.total;
|
||||||
|
this.loading = false;
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/** 取消按钮 */
|
||||||
|
cancel() {
|
||||||
|
this.open = false;
|
||||||
|
this.reset();
|
||||||
|
},
|
||||||
|
/** 表单重置 */
|
||||||
|
reset() {
|
||||||
|
this.form = {
|
||||||
|
id: undefined,
|
||||||
|
userId: undefined,
|
||||||
|
userType: undefined,
|
||||||
|
toMail: undefined,
|
||||||
|
accountId: undefined,
|
||||||
|
fromMail: undefined,
|
||||||
|
templateId: undefined,
|
||||||
|
templateCode: undefined,
|
||||||
|
templateNickname: undefined,
|
||||||
|
templateTitle: undefined,
|
||||||
|
templateContent: undefined,
|
||||||
|
templateParams: undefined,
|
||||||
|
sendStatus: undefined,
|
||||||
|
sendTime: undefined,
|
||||||
|
sendMessageId: undefined,
|
||||||
|
sendException: undefined,
|
||||||
|
};
|
||||||
|
this.resetForm("form");
|
||||||
|
},
|
||||||
|
/** 搜索按钮操作 */
|
||||||
|
handleQuery() {
|
||||||
|
this.queryParams.pageNo = 1;
|
||||||
|
this.getList();
|
||||||
|
},
|
||||||
|
/** 重置按钮操作 */
|
||||||
|
resetQuery() {
|
||||||
|
this.resetForm("queryForm");
|
||||||
|
this.handleQuery();
|
||||||
|
},
|
||||||
|
/** 详细按钮操作 */
|
||||||
|
handleView(row) {
|
||||||
|
this.open = true;
|
||||||
|
this.form = row;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
Loading…
Reference in New Issue