index.vue 10.9 KB
Newer Older
1 2 3 4 5
<template>
  <div class="app-container">

    <!-- 搜索工作栏 -->
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
Marcus's avatar
Marcus committed
6 7
      <el-form-item :label="$t('邮箱账号')" prop="fromAddress">
        <el-input v-model="queryParams.fromAddress" :placeholder="$t('请输入邮箱账号')" clearable @keyup.enter.native="handleQuery"/>
8
      </el-form-item>
Marcus's avatar
Marcus committed
9 10
      <el-form-item :label="$t('模板编码')" prop="templateCode">
        <el-input v-model="queryParams.templateCode" :placeholder="$t('请输入模板主键')" clearable @keyup.enter.native="handleQuery"/>
11
      </el-form-item>
Marcus's avatar
Marcus committed
12 13
      <el-form-item :label="$t('标题')" prop="title">
        <el-input v-model="queryParams.title" :placeholder="$t('请输入标题')" clearable @keyup.enter.native="handleQuery"/>
14
      </el-form-item>
Marcus's avatar
Marcus committed
15 16
      <el-form-item :label="$t('收件人')" prop="toAddress">
        <el-input v-model="queryParams.toAddress" :placeholder="$t('请输入收件人')" clearable @keyup.enter.native="handleQuery"/>
17
      </el-form-item>
Marcus's avatar
Marcus committed
18
      <el-form-item :label="$t('发送时间')">
19 20 21
        <el-date-picker v-model="dateRangeSendTime" style="width: 240px" value-format="yyyy-MM-dd"
                        type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" />
      </el-form-item>
Marcus's avatar
Marcus committed
22 23
      <el-form-item :label="$t('发送状态')" prop="sendStatus">
        <el-select v-model="queryParams.sendStatus" :placeholder="$t('请选择发送状态')" clearable size="small">
24 25 26 27
          <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>
Marcus's avatar
Marcus committed
28 29
      <el-form-item :label="$t('发送结果')" prop="sendResult">
        <el-input v-model="queryParams.sendResult" :placeholder="$t('请输入发送结果')" clearable @keyup.enter.native="handleQuery"/>
30
      </el-form-item>
Marcus's avatar
Marcus committed
31
      <!--<el-form-item :label="$t('创建时间')">
32 33 34 35
        <el-date-picker v-model="dateRangeCreateTime" style="width: 240px" value-format="yyyy-MM-dd"
                        type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期" />
      </el-form-item>-->
      <el-form-item>
Marcus's avatar
Marcus committed
36 37
        <el-button type="primary" icon="el-icon-search" @click="handleQuery">{{ $t('搜索') }}</el-button>
        <el-button icon="el-icon-refresh" @click="resetQuery">{{ $t('重置') }}</el-button>
38 39 40 41 42 43 44
      </el-form-item>
    </el-form>

    <!-- 操作工具栏 -->
    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
        <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
Marcus's avatar
Marcus committed
45
                   v-hasPermi="['system:mail-log:create']">{{ $t('新增') }}</el-button>
46 47 48
      </el-col>
      <el-col :span="1.5">
        <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"
Marcus's avatar
Marcus committed
49
                   v-hasPermi="['system:mail-log:export']">{{ $t('导出') }}</el-button>
50 51 52 53 54 55
      </el-col>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

    <!-- 列表 -->
    <el-table v-loading="loading" :data="list">
Marcus's avatar
Marcus committed
56 57 58 59 60 61 62
      <el-table-column :label="$t('主键')" align="center" prop="id" />
      <el-table-column :label="$t('邮箱帐号')" align="center" prop="fromAddress" />
      <el-table-column :label="$t('模板编号')" align="center" prop="templateCode" />
      <el-table-column :label="$t('标题')" align="center" prop="title" />
      <el-table-column :label="$t('内容')" align="center" prop="content" />
      <el-table-column :label="$t('收件人')" align="center" prop="toAddress" />
      <el-table-column :label="$t('发送时间')" align="center" prop="sendTime" width="180">
63 64 65 66
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.sendTime) }}</span>
        </template>
      </el-table-column>
Marcus's avatar
Marcus committed
67
      <el-table-column :label="$t('发送状态')" align="center" prop="sendStatus">
68 69 70 71
        <template slot-scope="scope">
          <dict-tag :type="DICT_TYPE.SYSTEM_MAIL_SEND_STATUS" :value="scope.row.sendStatus" />
        </template>
      </el-table-column>
Marcus's avatar
Marcus committed
72 73
      <el-table-column :label="$t('发送结果')" align="center" prop="sendResult" />
     <!-- <el-table-column :label="$t('创建时间')" align="center" prop="createTime" width="180">
74 75 76 77
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.createTime) }}</span>
        </template>
      </el-table-column>-->
Marcus's avatar
Marcus committed
78
      <el-table-column :label="$t('操作')" align="center" class-name="small-padding fixed-width">
79 80
        <template slot-scope="scope">
          <el-button size="mini" type="text" icon="el-icon-view" @click="handleView(scope.row,scope.index)"
Marcus's avatar
Marcus committed
81
                     v-hasPermi="['system:mail-log:query']">{{ $t('详细') }}</el-button>
82 83 84 85 86 87 88 89
        </template></el-table-column>
    </el-table>
    <!-- 分页组件 -->
    <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
                @pagination="getList"/>


    <!-- 日志详细 -->
Marcus's avatar
Marcus committed
90
    <el-dialog :title="$t('邮件日志详细')" :visible.sync="open" width="700px" append-to-body>
91 92 93
      <el-form ref="form" :model="form" label-width="140px" size="mini">
        <el-row>
          <el-col :span="24">
Marcus's avatar
Marcus committed
94
            <el-form-item :label="$t('日志主键:')">{{ form.id }}</el-form-item>
95 96
          </el-col>
          <el-col :span="24">
Marcus's avatar
Marcus committed
97
            <el-form-item :label="$t('邮箱账号:')">{{ form.fromAddress }}</el-form-item>
98 99
          </el-col>
          <el-col :span="24">
Marcus's avatar
Marcus committed
100
            <el-form-item :label="$t('收件人:')">{{ form.toAddress }}</el-form-item>
101 102
          </el-col>
          <el-col :span="24">
Marcus's avatar
Marcus committed
103
            <el-form-item :label="$t('模板编号:')">{{ form.templateCode }}</el-form-item>
104 105
          </el-col>
          <el-col :span="24">
Marcus's avatar
Marcus committed
106
            <el-form-item :label="$t('标题:')">{{ form.title }}</el-form-item>
107 108 109
          </el-col>

          <el-col :span="24">
Marcus's avatar
Marcus committed
110
            <el-form-item :label="$t('邮件内容:')" readonly>
111 112 113 114
              <editor v-model="form.content" :min-height="192" />
            </el-form-item>
          </el-col>
          <el-col :span="24">
Marcus's avatar
Marcus committed
115
            <el-form-item :label="$t('发送时间:')">{{ parseTime(form.sendTime) }}</el-form-item>
116 117
          </el-col>
          <el-col :span="24">
Marcus's avatar
Marcus committed
118
            <el-form-item :label="$t('发送结果:')">
119 120 121 122 123 124
              <dict-tag :type="DICT_TYPE.SYSTEM_MAIL_SEND_STATUS" :value="form.sendStatus"/>
            </el-form-item>
          </el-col>
        </el-row>
      </el-form>
      <div slot="footer" class="dialog-footer">
Marcus's avatar
Marcus committed
125
        <el-button @click="open = false">{{ $t('关 闭') }}</el-button>
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
      </div>
    </el-dialog>

  </div>
</template>

<script>
import { createMailLog, updateMailLog, deleteMailLog, getMailLog, getMailLogPage, exportMailLogExcel } from "@/api/system/mailLog";
import Editor from '@/components/Editor';

export default {
  name: "MailLog",
  components: {
    Editor,
  },
  data() {
    return {
      // 遮罩层
      loading: true,
      // 导出遮罩层
      exportLoading: false,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 邮箱日志列表
      list: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      dateRangeSendTime: [],
      dateRangeCreateTime: [],
      // 查询参数
      queryParams: {
        pageNo: 1,
        pageSize: 10,
        accountId: null,
        templateId: null,
        title: null,
        content: null,
        to: null,
        sendStatus: null,
        sendResult: null,
      },
      // 表单参数
      form: {},
      // 表单校验
      rules: {
      }
    };
  },
  created() {
    this.getList();
  },
  methods: {
    /** 查询列表 */
    getList() {
      this.loading = true;
      // 处理查询参数
      let params = {...this.queryParams};
      this.addBeginAndEndTime(params, this.dateRangeSendTime, 'sendTime');
      this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
      // 执行查询
      getMailLogPage(params).then(response => {
        this.list = response.data.list;
        this.total = response.data.total;
        this.loading = false;
      });
    },
    /** 取消按钮 */
    cancel() {
      this.open = false;
      this.reset();
    },
    /** 表单重置 */
    reset() {
      this.form = {
      };
      this.resetForm("form");
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNo = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.dateRangeSendTime = [];
      this.dateRangeCreateTime = [];
      this.resetForm("queryForm");
      this.handleQuery();
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.reset();
      this.open = true;
Marcus's avatar
Marcus committed
223
      this.title = this.$t("添加邮箱日志");
224 225 226 227 228 229 230 231
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      const id = row.id;
      getMailLog(id).then(response => {
        this.form = response.data;
        this.open = true;
Marcus's avatar
Marcus committed
232
        this.title = this.$t("修改邮箱日志");
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292
      });
    },
    /** 提交按钮 */
    submitForm() {
      this.$refs["form"].validate(valid => {
        if (!valid) {
          return;
        }
        // 修改的提交
        if (this.form.id != null) {
          updateMailLog(this.form).then(response => {
            this.$modal.msgSuccess("修改成功");
            this.open = false;
            this.getList();
          });
          return;
        }
        // 添加的提交
        createMailLog(this.form).then(response => {
          this.$modal.msgSuccess("新增成功");
          this.open = false;
          this.getList();
        });
      });
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      const id = row.id;
      this.$modal.confirm('是否确认删除邮箱日志编号为"' + id + '"的数据项?').then(function() {
          return deleteMailLog(id);
        }).then(() => {
          this.getList();
          this.$modal.msgSuccess("删除成功");
        }).catch(() => {});
    },
    /** 详细按钮操作 */
    handleView(row) {
      this.open = true;
      this.form = row;
    },
    /** 导出按钮操作 */
    handleExport() {
      // 处理查询参数
      let params = {...this.queryParams};
      params.pageNo = undefined;
      params.pageSize = undefined;
      this.addBeginAndEndTime(params, this.dateRangeSendTime, 'sendTime');
      this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
      // 执行导出
      this.$modal.confirm('是否确认导出所有邮箱日志数据项?').then(() => {
          this.exportLoading = true;
          return exportMailLogExcel(params);
        }).then(response => {
          this.$download.excel(response, '${table.classComment}.xls');
          this.exportLoading = false;
        }).catch(() => {});
    }
  }
};
</script>