197 lines
6.0 KiB
Vue
197 lines
6.0 KiB
Vue
<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="noticeTitle">
|
||
<el-input
|
||
v-model="queryParams.title"
|
||
placeholder="请输入公告标题"
|
||
clearable
|
||
@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" plain icon="el-icon-plus" size="mini"
|
||
@click="handleAdd">新增</el-button>
|
||
</el-col>
|
||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||
</el-row>
|
||
|
||
<el-table v-loading="loading" :data="announcementList">
|
||
<el-table-column label="公告ID" align="center" prop="announcementId" width="100" />
|
||
<el-table-column label="公告标题" align="center" prop="title" :show-overflow-tooltip="true" />
|
||
<el-table-column label="创建时间" align="center" prop="createTime" width="150" />
|
||
<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-delete"
|
||
@click="handleDelete(scope.row)">删除</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 :title="title" :visible.sync="open" width="780px" append-to-body>
|
||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||
<el-row>
|
||
<el-col :span="12">
|
||
<el-form-item label="公告标题" prop="title">
|
||
<el-input v-model="form.title" placeholder="请输入公告标题" />
|
||
</el-form-item>
|
||
</el-col>
|
||
<el-col :span="24">
|
||
<el-form-item label="内容">
|
||
<editor v-model="form.content" :min-height="192"/>
|
||
</el-form-item>
|
||
</el-col>
|
||
</el-row>
|
||
</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 { listAnnouncement, getAnnouncement, delAnnouncement, addAnnouncement } from "@/api/skins/ttSetting/announcement";
|
||
import Cookies from "js-cookie";
|
||
|
||
export default {
|
||
name: "Announcement",
|
||
data() {
|
||
return {
|
||
// 遮罩层
|
||
loading: true,
|
||
// 非单个禁用
|
||
single: true,
|
||
// 非多个禁用
|
||
multiple: true,
|
||
// 显示搜索条件
|
||
showSearch: true,
|
||
// 总条数
|
||
total: 0,
|
||
// 公告表格数据
|
||
announcementList: [],
|
||
// 弹出层标题
|
||
title: "",
|
||
// 是否显示弹出层
|
||
open: false,
|
||
// 查询参数
|
||
queryParams: {
|
||
pageNum: 1,
|
||
pageSize: 10,
|
||
title: undefined
|
||
},
|
||
// 表单参数
|
||
form: {},
|
||
// 表单校验
|
||
rules: {
|
||
title: [
|
||
{ required: true, message: "公告标题不能为空", trigger: "blur" }
|
||
]
|
||
}
|
||
};
|
||
},
|
||
created() {
|
||
this.getList();
|
||
this.newAnnouncement();
|
||
},
|
||
methods: {
|
||
newAnnouncement () {
|
||
const xhr = new XMLHttpRequest();
|
||
xhr.open('GET', 'http://localhost:8080/admin/announcement/newAnnouncement');
|
||
xhr.setRequestHeader('Authorization', 'Bearer ' + Cookies.get('Admin-Token'));
|
||
xhr.withCredentials = true; // 允许发送凭据(如token)
|
||
// 创建EventSource并将XMLHttpRequest对象传递给其构造函数
|
||
const eventSource = new EventSource(xhr);
|
||
// eventSource.onopen = function(event) {
|
||
// }
|
||
//
|
||
// eventSource.onmessage = function(event) {
|
||
// }
|
||
//
|
||
// eventSource.onerror = function(event) {
|
||
// console.error('连接出现错误:', event)
|
||
// }
|
||
},
|
||
/** 查询公告列表 */
|
||
getList() {
|
||
this.loading = true;
|
||
listAnnouncement(this.queryParams).then(response => {
|
||
this.announcementList = response.rows;
|
||
this.total = response.total;
|
||
this.loading = false;
|
||
});
|
||
},
|
||
// 取消按钮
|
||
cancel() {
|
||
this.open = false;
|
||
this.reset();
|
||
},
|
||
// 表单重置
|
||
reset() {
|
||
this.form = {
|
||
announcementId: undefined,
|
||
title: undefined,
|
||
content: undefined
|
||
};
|
||
this.resetForm("form");
|
||
},
|
||
/** 搜索按钮操作 */
|
||
handleQuery() {
|
||
this.queryParams.pageNum = 1;
|
||
this.getList();
|
||
},
|
||
/** 重置按钮操作 */
|
||
resetQuery() {
|
||
this.resetForm("queryForm");
|
||
this.handleQuery();
|
||
},
|
||
/** 新增按钮操作 */
|
||
handleAdd() {
|
||
this.reset();
|
||
this.open = true;
|
||
this.title = "添加公告";
|
||
},
|
||
/** 提交按钮 */
|
||
submitForm: function() {
|
||
this.$refs["form"].validate(valid => {
|
||
if (valid) {
|
||
addAnnouncement(this.form).then(response => {
|
||
this.$modal.msgSuccess("新增成功");
|
||
this.open = false;
|
||
this.getList();
|
||
});
|
||
}
|
||
});
|
||
},
|
||
/** 删除按钮操作 */
|
||
handleDelete(row) {
|
||
const announcementIds = row.announcementId
|
||
this.$modal.confirm('是否确认删除公告编号为"' + announcementIds + '"的数据项?').then(function() {
|
||
return delAnnouncement(announcementIds);
|
||
}).then(() => {
|
||
this.getList();
|
||
this.$modal.msgSuccess("删除成功");
|
||
}).catch(() => {});
|
||
}
|
||
}
|
||
};
|
||
</script>
|