smart-power-ui/src/views/system/tenant/profile/emailConfig.vue

326 lines
9.2 KiB
Vue

<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" :inline="true" label-width="68px">
<el-form-item label="邮箱账号" prop="account">
<el-input
v-model="queryParams.account"
placeholder="请输入邮箱账号"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-hasPermi="['setting:email:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="success"
icon="el-icon-edit"
size="mini"
:disabled="single"
@click="handleUpdate"
v-hasPermi="['setting:email:edit']"
>修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-hasPermi="['setting:email:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
icon="el-icon-download"
size="mini"
@click="handleExport"
v-hasPermi="['setting:email:export']"
>导出</el-button>
</el-col>
</el-row>
<el-table
v-loading="loading"
:data="emailList"
:default-sort="{prop: 'createTime', order: 'descending'}"
@sort-change="sortChange"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="主键ID" align="center" prop="id" /> -->
<el-table-column label="序号" type="index" align="center" width="50" />
<el-table-column label="邮箱账号" align="left" sortable="custom" prop="account" />
<el-table-column label="端口" align="center" prop="port" />
<el-table-column label="服务器地址" align="left" sortable="custom" prop="serviceAddress" />
<el-table-column label="创建时间" align="left" sortable="custom" prop="createTime" width="160">
<template slot-scope="scope">
<span>{{ parseTime(scope.row.createTime, "{y}-{m}-{d} {h}:{i}:{s}") }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-hasPermi="['setting:email:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-hasPermi="['setting:email:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 添加或修改邮件用户对话框 -->
<el-dialog class="form-dialog" :title="title" :visible.sync="open" width="480px" append-to-body :close-on-click-modal="false">
<el-form ref="form" :model="form" :rules="rules" label-width="100px">
<el-form-item label="邮箱账号" prop="account">
<el-input v-model="form.account" placeholder="请输入邮箱账号" />
</el-form-item>
<el-form-item label="邮箱密码" prop="password">
<el-input v-model="form.password" type="password" placeholder="请输入邮箱密码" />
</el-form-item>
<el-form-item label="端口" prop="port">
<el-input v-model="form.port" placeholder="请输入端口" />
</el-form-item>
<el-form-item label="服务器地址" prop="serviceAddress">
<el-input v-model="form.serviceAddress" placeholder="请输入服务器地址" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm">确 定</el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import {
listEmail,
getEmail,
delEmail,
addEmail,
updateEmail
} from "@/api/setting/email";
export default {
name: "EmailConfig",
props: {
tenantId: {
type: Number,
default: null
}
},
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 总条数
total: 0,
// 邮件用户表格数据
emailList: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
account: undefined,
orderByColumn: "createTime",
isAsc: "desc"
},
// 表单参数
form: {},
// 表单校验
rules: {
account: [
{ required: true, message: "邮箱账号不能为空", trigger: "blur" }
],
password: [
{ required: true, message: "邮箱密码不能为空", trigger: "blur" }
],
port: [{ required: true, message: "端口不能为空", trigger: "blur" }],
serviceAddress: [
{ required: true, message: "服务器地址不能为空", trigger: "blur" }
]
}
};
},
created() {
this.getList();
},
methods: {
sortChange(column) {
const sort = {
isAsc: column.order === "descending" ? "desc" : "asc",
orderByColumn: column.prop
};
this.queryParams = Object.assign(this.queryParams, sort);
this.handleQuery();
},
/** 查询邮件用户列表 */
getList() {
this.loading = true;
listEmail(
Object.assign(
{
tenantId: this.tenantId
},
this.queryParams
)
).then(response => {
this.emailList = response.rows;
this.total = response.total;
this.loading = false;
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
id: undefined,
account: undefined,
password: undefined,
port: undefined,
serviceAddress: undefined,
tenantId: this.tenantId
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id);
this.single = selection.length != 1;
this.multiple = !selection.length;
},
/** 新增按钮操作 */
handleAdd() {
this.reset();
this.open = true;
this.title = "添加邮件用户";
},
/** 修改按钮操作 */
handleUpdate(row) {
this.reset();
const id = row.id || this.ids;
getEmail(id).then(response => {
this.form = response.data;
this.open = true;
this.title = "修改邮件用户";
});
},
/** 提交按钮 */
submitForm: function() {
this.$refs["form"].validate(valid => {
if (valid) {
if (this.form.id != undefined) {
updateEmail(this.form).then(response => {
if (response.code === 200) {
this.msgSuccess("修改成功");
this.open = false;
this.getList();
}
});
} else {
addEmail(this.form).then(response => {
if (response.code === 200) {
this.msgSuccess("新增成功");
this.open = false;
this.getList();
}
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$confirm(
// '是否确认删除邮件用户编号为"' + ids + '"的数据项?',
"是否删该数据",
"警告",
{
confirmButtonText: "确定",
cancelButtonText: "取消",
type: "warning"
}
)
.then(function() {
return delEmail(ids);
})
.then(() => {
this.getList();
this.msgSuccess("删除成功");
})
.catch(function() {});
},
/** 导出按钮操作 */
handleExport() {
this.download(
"setting/email/export",
{
...this.queryParams
},
`setting_email.xlsx`
);
}
}
};
</script>