123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <template>
- <div class="app-container">
- <el-form :model="queryParams" ref="queryForm" :inline="true" @submit.native.prevent>
- <el-form-item label="标题" prop="title">
- <el-input v-model="queryParams.title" placeholder="请输入标题" @keyup.enter.native="handleQuery" clearable />
- </el-form-item>
- <el-form-item label="状态" prop="state">
- <el-select v-model="queryParams.state" placeholder="状态" class="se" clearable>
- <el-option value="0" label="启用"></el-option>
- <el-option value="1" label="禁用"></el-option>
- </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">
- <el-button type="primary" icon="el-icon-plus" :disabled="ids.length > 0" @click="op('add')" v-hasPermi="['work:notice:add']">新增</el-button>
- <el-button type="success" icon="el-icon-edit" :disabled="ids.length != 1" @click="op('edit', ids)" v-hasPermi="['work:notice:edit']">修改</el-button>
- <el-button type="danger" icon="el-icon-delete" :disabled="ids.length == 0" @click="del" v-hasPermi="['work:notice:remove']">删除{{ ids.length > 0 ? '(' + ids.length + ')' : '' }}</el-button>
- </el-row>
- <el-table :data="response.rows" border @selection-change="selects" height="calc(100vh - 270px)">
- <el-table-column type="selection" width="55" align="center" />
- <el-table-column label="通知标题" align="center" prop="title" />
- <el-table-column label="是否置顶" align="center" prop="top" width="140">
- <template slot-scope="scope">
- <el-tag type="success" v-if="scope.row.top == 1">是</el-tag>
- <el-tag type="info" v-else>否</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="通知状态" align="center" prop="state" width="140">
- <template slot-scope="scope">
- <el-tag type="success" v-if="scope.row.state == 0">启用</el-tag>
- <el-tag type="danger" v-if="scope.row.state == 1">停用</el-tag>
- </template>
- </el-table-column>
- <el-table-column label="创建时间" align="center" prop="createTime" width="200" />
- <el-table-column label="操作" align="center" width="200">
- <template slot-scope="scope">
- <el-button size="mini" type="text" icon="el-icon-edit" @click="op('edit', scope.row)" v-hasPermi="['work:notice:edit']">修改</el-button>
- <el-button size="mini" type="text" icon="el-icon-delete" @click="del(scope.row)" v-hasPermi="['work:notice:remove']">删除</el-button>
- </template>
- </el-table-column>
- <template slot="empty">
- <el-empty></el-empty>
- </template>
- </el-table>
- <pagination v-if="response.total > 0" :total="response.total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
- </div>
- </template>
- <script>
- import edit from './edit';
- export default {
- name: 'Notice',
- data() {
- return {
- queryParams: {
- pageNum: 1,
- pageSize: 10,
- title: null,
- top: null,
- state: null,
- orderByColumn: 'id', //排序字段
- isAsc: 'desc' //排序方式
- }
- };
- },
- created() {
- this.getList();
- },
- methods: {
- getList() {
- this.ajax({ url: '/work/notice/list', data: this.queryParams }).then((response) => {
- this.response = response;
- });
- },
- handleQuery() {
- this.queryParams.pageNum = 1;
- this.getList();
- },
- resetQuery() {
- this.resetForm('queryForm');
- this.handleQuery();
- },
- selects(rows) {
- this.ids = rows.map((item) => item.id);
- },
- op(tag, row) {
- if (tag == 'add') {
- this.iframe({ obj: edit, param: {}, title: '新增', width: '58%', height: '65%' });
- }
- if (tag == 'edit') {
- const id = row.id || this.ids[0];
- this.iframe({ obj: edit, param: { id: id }, title: '编辑', width: '58%', height: '65%' });
- }
- },
- del(row) {
- this.$confirm('是否确认删除选中数据?', '警告', { type: 'warning' }).then(() => {
- this.get({ url: '/work/notice/remove/' + (row.id || this.ids) }).then((response) => {
- this.$modal.msgSuccess('删除成功');
- this.getList();
- });
- });
- }
- }
- };
- </script>
|