|
@@ -1,74 +1,28 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
- <el-form
|
|
|
- :model="queryParams"
|
|
|
- ref="queryForm"
|
|
|
- size="small"
|
|
|
- :inline="true"
|
|
|
- v-show="showSearch"
|
|
|
- label-width="68px"
|
|
|
- >
|
|
|
+ <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch">
|
|
|
<el-form-item label="标题" prop="title">
|
|
|
- <el-input
|
|
|
- v-model="queryParams.title"
|
|
|
- placeholder="请输入标题"
|
|
|
- ></el-input>
|
|
|
+ <el-input v-model="queryParams.title" placeholder="请输入标题"></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="类型" prop="title">
|
|
|
- <el-select
|
|
|
- v-model="queryParams.type"
|
|
|
- placeholder="请选择新闻状态"
|
|
|
- clearable
|
|
|
- filterable
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="t in typeList"
|
|
|
- :key="t.value"
|
|
|
- :label="t.label"
|
|
|
- :value="t.value"
|
|
|
- />
|
|
|
+ <el-select v-model="queryParams.type" placeholder="请选择新闻状态" clearable filterable class="se">
|
|
|
+ <el-option v-for="t in typeList" :key="t.value" :label="t.label" :value="t.value" />
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="新闻状态" prop="status">
|
|
|
- <el-select
|
|
|
- v-model="queryParams.status"
|
|
|
- placeholder="请选择新闻状态"
|
|
|
- clearable
|
|
|
- filterable
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="status in statusOptionList"
|
|
|
- :key="status.value"
|
|
|
- :label="status.label"
|
|
|
- :value="status.value"
|
|
|
- />
|
|
|
+ <el-select v-model="queryParams.status" placeholder="请选择新闻状态" clearable filterable class="se">
|
|
|
+ <el-option v-for="status in statusOptionList" :key="status.value" :label="status.label" :value="status.value" />
|
|
|
</el-select>
|
|
|
</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-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-col :span="1.5">
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- plain
|
|
|
- icon="el-icon-plus"
|
|
|
- size="mini"
|
|
|
- @click="handleAdd"
|
|
|
- v-hasPermi="['business:NEWS:add']"
|
|
|
- >新增新闻</el-button
|
|
|
- >
|
|
|
+ <el-button type="primary" icon="el-icon-plus" @click="handleAdd" v-hasPermi="['business:NEWS:add']">新增新闻</el-button>
|
|
|
</el-col>
|
|
|
<!-- 以下暂时不需要 -->
|
|
|
<!-- <el-col :span="1.5">
|
|
@@ -106,194 +60,71 @@
|
|
|
>导出</el-button
|
|
|
>
|
|
|
</el-col> -->
|
|
|
- <right-toolbar
|
|
|
- :showSearch.sync="showSearch"
|
|
|
- @queryTable="getList"
|
|
|
- ></right-toolbar>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
</el-row>
|
|
|
-
|
|
|
- <el-table
|
|
|
- v-loading="loading"
|
|
|
- :data="NEWSList"
|
|
|
- @selection-change="handleSelectionChange"
|
|
|
- >
|
|
|
+ <el-table v-loading="loading" :data="NEWSList" @selection-change="handleSelectionChange">
|
|
|
<el-table-column type="selection"></el-table-column>
|
|
|
- <el-table-column label="标题" align="center" prop="title" width="250">
|
|
|
+ <el-table-column label="标题" align="left" prop="title" width="220">
|
|
|
<template slot-scope="scope">
|
|
|
- <div
|
|
|
- style="
|
|
|
- white-space: nowrap;
|
|
|
- overflow: hidden;
|
|
|
- text-overflow: ellipsis;
|
|
|
- "
|
|
|
- >
|
|
|
- {{ scope.row.title }}
|
|
|
- </div>
|
|
|
+ <div class="omit">{{ scope.row.title }} </div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
-
|
|
|
<el-table-column label="类型" align="center" prop="type" width="250">
|
|
|
<template slot-scope="scope">
|
|
|
- <div
|
|
|
- style="
|
|
|
- white-space: nowrap;
|
|
|
- overflow: hidden;
|
|
|
- text-overflow: ellipsis;
|
|
|
- "
|
|
|
- >
|
|
|
+ <div style="white-space: nowrap; overflow: hidden; text-overflow: ellipsis">
|
|
|
{{ searchType(scope.row.type) }}
|
|
|
</div>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
|
|
|
- <el-table-column
|
|
|
- label="编辑日期"
|
|
|
- align="center"
|
|
|
- width="120"
|
|
|
- prop="updateTime"
|
|
|
- >
|
|
|
+ <el-table-column label="编辑日期" align="center" width="120" prop="updateTime">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.updateTime ? scope.row.updateTime.substr(0, 10) : "无" }}
|
|
|
+ {{ scope.row.updateTime ? scope.row.updateTime.substr(0, 10) : '无' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="审核日期"
|
|
|
- align="center"
|
|
|
- width="120"
|
|
|
- prop="audit_time"
|
|
|
- >
|
|
|
+ <el-table-column label="审核日期" align="center" width="120" prop="audit_time">
|
|
|
<template slot-scope="scope">
|
|
|
- {{ scope.row.audit_time ? scope.row.audit_time.substr(0, 10) : "无" }}
|
|
|
+ {{ scope.row.audit_time ? scope.row.audit_time.substr(0, 10) : '无' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="上报日期"
|
|
|
- align="center"
|
|
|
- width="120"
|
|
|
- prop="report_date"
|
|
|
- >
|
|
|
+ <el-table-column label="上报日期" align="center" width="120" prop="report_date">
|
|
|
<template slot-scope="scope">
|
|
|
- {{
|
|
|
- scope.row.report_date ? scope.row.report_date.substr(0, 10) : "无"
|
|
|
- }}
|
|
|
+ {{ scope.row.report_date ? scope.row.report_date.substr(0, 10) : '无' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="发布日期"
|
|
|
- align="center"
|
|
|
- width="120"
|
|
|
- prop="release_date"
|
|
|
- >
|
|
|
+ <el-table-column label="发布日期" align="center" width="120" prop="release_date">
|
|
|
<template slot-scope="scope">
|
|
|
- {{
|
|
|
- scope.row.release_date ? scope.row.release_date.substr(0, 10) : "无"
|
|
|
- }}
|
|
|
+ {{ scope.row.release_date ? scope.row.release_date.substr(0, 10) : '无' }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="新闻状态"
|
|
|
- align="center"
|
|
|
- width="120"
|
|
|
- prop="status"
|
|
|
- >
|
|
|
+ <el-table-column label="新闻状态" align="center" width="120" prop="status">
|
|
|
<template slot-scope="scope">
|
|
|
<span v-if="scope.row.status == 0"><el-tag>草稿</el-tag></span>
|
|
|
- <span v-if="scope.row.status == 1"
|
|
|
- ><el-tag type="warning">审核中</el-tag></span
|
|
|
- >
|
|
|
- <span v-if="scope.row.status == 2"
|
|
|
- ><el-tag type="danger">审核驳回</el-tag></span
|
|
|
- >
|
|
|
- <span v-if="scope.row.status == 3"
|
|
|
- ><el-tag type="success">已审核</el-tag></span
|
|
|
- >
|
|
|
- <span v-if="scope.row.status == 4"
|
|
|
- ><el-tag type="success">已发布</el-tag></span
|
|
|
- >
|
|
|
- <span v-if="scope.row.status == 5"
|
|
|
- ><el-tag type="info">已下架</el-tag></span
|
|
|
- >
|
|
|
+ <span v-if="scope.row.status == 1"><el-tag type="warning">审核中</el-tag></span>
|
|
|
+ <span v-if="scope.row.status == 2"><el-tag type="danger">审核驳回</el-tag></span>
|
|
|
+ <span v-if="scope.row.status == 3"><el-tag type="success">已审核</el-tag></span>
|
|
|
+ <span v-if="scope.row.status == 4"><el-tag type="success">已发布</el-tag></span>
|
|
|
+ <span v-if="scope.row.status == 5"><el-tag type="info">已下架</el-tag></span>
|
|
|
<span v-if="scope.row.status == 6"><el-tag>已置顶</el-tag></span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column
|
|
|
- label="操作"
|
|
|
- align="center"
|
|
|
- class-name="small-padding fixed-width"
|
|
|
- >
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
<template slot-scope="scope">
|
|
|
- <el-button
|
|
|
- v-if="scope.row.status == 4"
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- @click="handleDownOrUp(scope.row)"
|
|
|
- v-hasPermi="['business:NEWS:remove']"
|
|
|
- >下架</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- v-if="scope.row.status == 0 || scope.row.status == 2"
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- v-hasPermi="['business:NEWS:remove']"
|
|
|
- @click="handleCommit(scope.row)"
|
|
|
- >提交审核</el-button
|
|
|
- >
|
|
|
+ <el-button v-if="scope.row.status == 4" size="mini" type="text" @click="handleDownOrUp(scope.row)" v-hasPermi="['business:NEWS:remove']">下架</el-button>
|
|
|
+ <el-button v-if="scope.row.status == 0 || scope.row.status == 2" size="mini" type="text" v-hasPermi="['business:NEWS:remove']" @click="handleCommit(scope.row)">提交审核</el-button>
|
|
|
|
|
|
- <el-button
|
|
|
- v-if="
|
|
|
- scope.row.status == 0 ||
|
|
|
- scope.row.status == 2 ||
|
|
|
- scope.row.status == 5
|
|
|
- "
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- @click="handleUpdate(scope.row)"
|
|
|
- v-hasPermi="['business:NEWS:remove']"
|
|
|
- >修改</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- v-if="scope.row.status == 5 || scope.row.status == 3"
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- @click="handleDownOrUp(scope.row)"
|
|
|
- v-hasPermi="['business:NEWS:remove']"
|
|
|
- >发布</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- v-if="scope.row.status == 6"
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- @click="hanleTop(scope.row)"
|
|
|
- v-hasPermi="['business:NEWS:remove']"
|
|
|
- >取消置顶</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- v-else-if="scope.row.status == 4"
|
|
|
- size="mini"
|
|
|
- type="text"
|
|
|
- @click="hanleTop(scope.row)"
|
|
|
- v-hasPermi="['business:NEWS:remove']"
|
|
|
- >置顶</el-button
|
|
|
- >
|
|
|
+ <el-button v-if="scope.row.status == 0 || scope.row.status == 2 || scope.row.status == 5" size="mini" type="text" @click="handleUpdate(scope.row)" v-hasPermi="['business:NEWS:remove']">修改</el-button>
|
|
|
+ <el-button v-if="scope.row.status == 5 || scope.row.status == 3" size="mini" type="text" @click="handleDownOrUp(scope.row)" v-hasPermi="['business:NEWS:remove']">发布</el-button>
|
|
|
+ <el-button v-if="scope.row.status == 6" size="mini" type="text" @click="hanleTop(scope.row)" v-hasPermi="['business:NEWS:remove']">取消置顶</el-button>
|
|
|
+ <el-button v-else-if="scope.row.status == 4" size="mini" type="text" @click="hanleTop(scope.row)" v-hasPermi="['business:NEWS: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"
|
|
|
- />
|
|
|
+ <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="1000px"
|
|
|
- append-to-body
|
|
|
- >
|
|
|
+ <el-dialog :title="title" :visible.sync="open" :close-on-click-modal="false" :width="'65%'" @close="close" append-to-body>
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
<el-form-item label="标题" prop="title">
|
|
|
<el-input v-model="form.title" placeholder="请输入标题"></el-input>
|
|
@@ -301,39 +132,19 @@
|
|
|
|
|
|
<el-form-item label="类型" prop="type">
|
|
|
<el-select v-model="form.type" placeholder="请选择">
|
|
|
- <el-option
|
|
|
- v-for="item in typeList"
|
|
|
- :key="item.value + 'typeList'"
|
|
|
- :label="item.label"
|
|
|
- :value="item.value"
|
|
|
- >
|
|
|
- </el-option>
|
|
|
+ <el-option v-for="item in typeList" :key="item.value + 'typeList'" :label="item.label" :value="item.value"></el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
-
|
|
|
<el-form-item label="封面图" prop="picture">
|
|
|
- <el-upload
|
|
|
- action="#"
|
|
|
- list-type="picture-card"
|
|
|
- :limit="1"
|
|
|
- :auto-upload="true"
|
|
|
- :http-request="httprequest"
|
|
|
- :before-upload="beforeupload"
|
|
|
- :file-list="fileList"
|
|
|
- >
|
|
|
+ <el-upload action="#" list-type="picture-card" :limit="1" :auto-upload="true" :http-request="httprequest" :before-upload="beforeupload" :file-list="fileList">
|
|
|
<i slot="default" class="el-icon-plus"></i>
|
|
|
<div slot="file" slot-scope="{ file }">
|
|
|
<img class="el-upload-list__item-thumbnail" :src="file.url" />
|
|
|
-
|
|
|
<!-- 放大预览 -->
|
|
|
<span class="el-upload-list__item-actions">
|
|
|
- <span
|
|
|
- class="el-upload-list__item-preview"
|
|
|
- @click="handlePictureCardPreview(file)"
|
|
|
- >
|
|
|
+ <span class="el-upload-list__item-preview" @click="handlePictureCardPreview(file)">
|
|
|
<i class="el-icon-zoom-in"></i>
|
|
|
</span>
|
|
|
-
|
|
|
<!-- 下载用的,暂时不需要 -->
|
|
|
<!-- <span
|
|
|
v-if="!disabled"
|
|
@@ -344,11 +155,7 @@
|
|
|
</span> -->
|
|
|
|
|
|
<!-- 删除图片 -->
|
|
|
- <span
|
|
|
- v-if="!disabled"
|
|
|
- class="el-upload-list__item-delete"
|
|
|
- @click="handleRemove(file)"
|
|
|
- >
|
|
|
+ <span v-if="!disabled" class="el-upload-list__item-delete" @click="handleRemove(file)">
|
|
|
<i class="el-icon-delete"></i>
|
|
|
</span>
|
|
|
</span>
|
|
@@ -369,40 +176,24 @@
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
|
|
|
- <el-dialog
|
|
|
- :visible.sync="dialogVisible"
|
|
|
- fullscreen
|
|
|
- append-to-body
|
|
|
- @close="dialogVisible = false"
|
|
|
- >
|
|
|
+ <el-dialog :visible.sync="dialogVisible" fullscreen append-to-body @close="dialogVisible = false">
|
|
|
<img width="100%" :src="form.picture" alt="" />
|
|
|
</el-dialog>
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import {
|
|
|
- listNEWS,
|
|
|
- getNEWS,
|
|
|
- delNEWS,
|
|
|
- addNEWS,
|
|
|
- updateNEWS,
|
|
|
- upload,
|
|
|
- setTop,
|
|
|
- newCommit,
|
|
|
- updateAndex,
|
|
|
- downloadpic,
|
|
|
-} from "@/api/portal/news/NEWS.js";
|
|
|
+import { listNEWS, getNEWS, delNEWS, addNEWS, updateNEWS, upload, setTop, newCommit, updateAndex, downloadpic } from '@/api/portal/news/NEWS.js';
|
|
|
|
|
|
export default {
|
|
|
- name: "NEWS",
|
|
|
+ name: 'NEWS',
|
|
|
data() {
|
|
|
return {
|
|
|
typeList: [
|
|
|
- { label: "要闻咨询", value: "1" },
|
|
|
- { label: "政策法规", value: "2" },
|
|
|
- { label: "通知公告", value: "3" },
|
|
|
- { label: "政策解读", value: "4" },
|
|
|
+ { label: '要闻咨询', value: '1' },
|
|
|
+ { label: '政策法规', value: '2' },
|
|
|
+ { label: '通知公告', value: '3' },
|
|
|
+ { label: '政策解读', value: '4' }
|
|
|
],
|
|
|
fileList: [],
|
|
|
dialogVisible: false,
|
|
@@ -424,7 +215,7 @@ export default {
|
|
|
// 网站新闻表格数据
|
|
|
NEWSList: [],
|
|
|
// 弹出层标题
|
|
|
- title: "",
|
|
|
+ title: '',
|
|
|
// 是否显示弹出层
|
|
|
open: false,
|
|
|
// 查询参数
|
|
@@ -444,44 +235,41 @@ export default {
|
|
|
type: null,
|
|
|
typeName: null,
|
|
|
picture: null,
|
|
|
- status: null,
|
|
|
+ status: null
|
|
|
},
|
|
|
// 表单参数
|
|
|
form: {},
|
|
|
// 表单校验
|
|
|
rules: {
|
|
|
- title: [{ required: true, message: "标题不能为空", trigger: "blur" }],
|
|
|
- content: [{ required: true, message: "内容不能为空", trigger: "blur" }],
|
|
|
- fileUrl: [{ required: true, message: "附件不能为空", trigger: "blur" }],
|
|
|
+ title: [{ required: true, message: '标题不能为空', trigger: 'blur' }],
|
|
|
+ content: [{ required: true, message: '内容不能为空', trigger: 'blur' }],
|
|
|
+ fileUrl: [{ required: true, message: '附件不能为空', trigger: 'blur' }],
|
|
|
type: [
|
|
|
{
|
|
|
required: true,
|
|
|
- message: "类型不能为空",
|
|
|
- trigger: "change",
|
|
|
- },
|
|
|
- ],
|
|
|
- typeName: [
|
|
|
- { required: true, message: "字典类型名称不能为空", trigger: "blur" },
|
|
|
+ message: '类型不能为空',
|
|
|
+ trigger: 'change'
|
|
|
+ }
|
|
|
],
|
|
|
- picture: [{ required: true, message: "图片不能为空", trigger: "blur" }],
|
|
|
+ typeName: [{ required: true, message: '字典类型名称不能为空', trigger: 'blur' }],
|
|
|
+ picture: [{ required: true, message: '图片不能为空', trigger: 'blur' }],
|
|
|
status: [
|
|
|
{
|
|
|
required: true,
|
|
|
- message:
|
|
|
- "状态(0.草稿,1.下架,2.审核中,3.审核驳回,4.已发布,5.已上报)不能为空",
|
|
|
- trigger: "blur",
|
|
|
- },
|
|
|
- ],
|
|
|
+ message: '状态(0.草稿,1.下架,2.审核中,3.审核驳回,4.已发布,5.已上报)不能为空',
|
|
|
+ trigger: 'blur'
|
|
|
+ }
|
|
|
+ ]
|
|
|
},
|
|
|
statusOptionList: [
|
|
|
- { label: "草稿", value: 0 },
|
|
|
- { label: "审核中", value: 1 },
|
|
|
- { label: "审核驳回", value: 2 },
|
|
|
- { label: "已审核", value: 3 },
|
|
|
- { label: "已发布", value: 4 },
|
|
|
- { label: "已下架", value: 5 },
|
|
|
- { label: "已置顶", value: 6 },
|
|
|
- ],
|
|
|
+ { label: '草稿', value: 0 },
|
|
|
+ { label: '审核中', value: 1 },
|
|
|
+ { label: '审核驳回', value: 2 },
|
|
|
+ { label: '已审核', value: 3 },
|
|
|
+ { label: '已发布', value: 4 },
|
|
|
+ { label: '已下架', value: 5 },
|
|
|
+ { label: '已置顶', value: 6 }
|
|
|
+ ]
|
|
|
};
|
|
|
},
|
|
|
created() {
|
|
@@ -491,20 +279,20 @@ export default {
|
|
|
hanleTop(row) {
|
|
|
var data = new FormData();
|
|
|
//判断是否置顶
|
|
|
- if (row.status == "6") {
|
|
|
- data.append("status", 4);
|
|
|
+ if (row.status == '6') {
|
|
|
+ data.append('status', 4);
|
|
|
} else {
|
|
|
- data.append("status", 6);
|
|
|
+ data.append('status', 6);
|
|
|
}
|
|
|
- data.append("id", row.id);
|
|
|
- setTop(data).then((res) => {
|
|
|
+ data.append('id', row.id);
|
|
|
+ setTop(data).then(res => {
|
|
|
this.getList();
|
|
|
});
|
|
|
},
|
|
|
/** 查询网站新闻列表 */
|
|
|
getList() {
|
|
|
this.loading = true;
|
|
|
- listNEWS(this.queryParams).then((response) => {
|
|
|
+ listNEWS(this.queryParams).then(response => {
|
|
|
this.NEWSList = response.rows;
|
|
|
this.total = response.total;
|
|
|
this.loading = false;
|
|
@@ -513,13 +301,13 @@ export default {
|
|
|
httprequest() {},
|
|
|
beforeupload(file) {
|
|
|
let formData = new FormData();
|
|
|
- formData.append("file", file);
|
|
|
- upload(formData).then((res) => {
|
|
|
+ formData.append('file', file);
|
|
|
+ upload(formData).then(res => {
|
|
|
this.form.picture = res.fileName;
|
|
|
});
|
|
|
},
|
|
|
handleRemove(file) {
|
|
|
- this.form.picture = "";
|
|
|
+ this.form.picture = '';
|
|
|
this.fileList = [];
|
|
|
},
|
|
|
handlePictureCardPreview(file) {
|
|
@@ -531,20 +319,20 @@ export default {
|
|
|
},
|
|
|
handleDownOrUp(row) {
|
|
|
//修改发布、下架状态
|
|
|
- if (row.status == "4") {
|
|
|
+ if (row.status == '4') {
|
|
|
//已发布 已审核
|
|
|
- row.status = "5";
|
|
|
- updateNEWS(row).then((response) => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
+ row.status = '5';
|
|
|
+ updateNEWS(row).then(response => {
|
|
|
+ this.$modal.msgSuccess('修改成功');
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
this.reset();
|
|
|
});
|
|
|
- } else if (row.status == "5" || row.status == "3") {
|
|
|
+ } else if (row.status == '5' || row.status == '3') {
|
|
|
//已下架
|
|
|
- row.status = "4";
|
|
|
- updateNEWS(row).then((response) => {
|
|
|
- this.$modal.msgSuccess("下架成功");
|
|
|
+ row.status = '4';
|
|
|
+ updateNEWS(row).then(response => {
|
|
|
+ this.$modal.msgSuccess('下架成功');
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
this.reset();
|
|
@@ -568,10 +356,10 @@ export default {
|
|
|
type: null,
|
|
|
typeName: null,
|
|
|
picture: null,
|
|
|
- status: "0",
|
|
|
+ status: '0'
|
|
|
};
|
|
|
this.fileList = [];
|
|
|
- this.resetForm("form");
|
|
|
+ this.resetForm('form');
|
|
|
},
|
|
|
/** 搜索按钮操作 */
|
|
|
handleQuery() {
|
|
@@ -580,15 +368,15 @@ export default {
|
|
|
},
|
|
|
/** 重置按钮操作 */
|
|
|
resetQuery() {
|
|
|
- this.queryParams.type = "";
|
|
|
- this.queryParams.title = "";
|
|
|
- this.queryParams.status = "";
|
|
|
- this.resetForm("queryForm");
|
|
|
+ this.queryParams.type = '';
|
|
|
+ this.queryParams.title = '';
|
|
|
+ this.queryParams.status = '';
|
|
|
+ this.resetForm('queryForm');
|
|
|
this.handleQuery();
|
|
|
},
|
|
|
// 多选框选中数据
|
|
|
handleSelectionChange(selection) {
|
|
|
- this.ids = selection.map((item) => item.id);
|
|
|
+ this.ids = selection.map(item => item.id);
|
|
|
this.single = selection.length !== 1;
|
|
|
this.multiple = !selection.length;
|
|
|
},
|
|
@@ -596,19 +384,19 @@ export default {
|
|
|
handleAdd() {
|
|
|
this.reset();
|
|
|
this.open = true;
|
|
|
- this.title = "添加网站新闻";
|
|
|
+ this.title = '添加网站新闻';
|
|
|
},
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
this.reset();
|
|
|
const id = row.id || this.ids;
|
|
|
- getNEWS(id).then((response) => {
|
|
|
+ getNEWS(id).then(response => {
|
|
|
this.form = response.data;
|
|
|
this.open = true;
|
|
|
- this.title = "修改网站新闻";
|
|
|
- downloadpic(this.form.picture).then((res) => {
|
|
|
+ this.title = '修改网站新闻';
|
|
|
+ downloadpic(this.form.picture).then(res => {
|
|
|
let src = window.URL.createObjectURL(res);
|
|
|
- this.fileList.push({ name: "xxx", url: src});
|
|
|
+ this.fileList.push({ name: 'xxx', url: src });
|
|
|
});
|
|
|
});
|
|
|
},
|
|
@@ -616,29 +404,29 @@ export default {
|
|
|
// let data = new FormData();
|
|
|
// data.append("id", id);
|
|
|
let CbNewsVo = row;
|
|
|
- newCommit(CbNewsVo).then((response) => {
|
|
|
- this.$modal.msgSuccess("提交审核成功!");
|
|
|
+ newCommit(CbNewsVo).then(response => {
|
|
|
+ this.$modal.msgSuccess('提交审核成功!');
|
|
|
this.getList();
|
|
|
});
|
|
|
},
|
|
|
/** 提交按钮 */
|
|
|
submitForm() {
|
|
|
- this.$refs["form"].validate((valid) => {
|
|
|
+ this.$refs['form'].validate(valid => {
|
|
|
if (valid) {
|
|
|
if (this.form.id != null) {
|
|
|
- updateAndex(this.form).then((response) => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
+ updateAndex(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess('修改成功');
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
this.reset();
|
|
|
});
|
|
|
} else {
|
|
|
- this.form.status = "1";
|
|
|
- addNEWS(this.form).then((response) => {
|
|
|
+ this.form.status = '1';
|
|
|
+ addNEWS(this.form).then(response => {
|
|
|
// let formData = new FormData()
|
|
|
// formData.append('id',this.form.id)
|
|
|
// newCommit(formData).then((res) => {
|
|
|
- this.$modal.msgSuccess("新增成功");
|
|
|
+ this.$modal.msgSuccess('新增成功');
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
this.reset();
|
|
@@ -649,33 +437,28 @@ export default {
|
|
|
});
|
|
|
},
|
|
|
searchType(id) {
|
|
|
- let fined = this.typeList.find((item) => item.value == id);
|
|
|
+ let fined = this.typeList.find(item => item.value == id);
|
|
|
if (fined.label != undefined) {
|
|
|
return fined.label;
|
|
|
} else {
|
|
|
- return "未选择类型!";
|
|
|
+ return '未选择类型!';
|
|
|
}
|
|
|
},
|
|
|
submitzc() {
|
|
|
console.log(this.form.id);
|
|
|
- this.$refs["form"].validate((valid) => {
|
|
|
+ this.$refs['form'].validate(valid => {
|
|
|
if (valid) {
|
|
|
if (this.form.id == null) {
|
|
|
- this.form.status = "0";
|
|
|
- addNEWS(this.form).then((response) => {
|
|
|
- this.$modal.msgSuccess("暂存成功");
|
|
|
+ this.form.status = '0';
|
|
|
+ addNEWS(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess('暂存成功');
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
this.reset();
|
|
|
});
|
|
|
- } else if (
|
|
|
- this.form.status == 0 ||
|
|
|
- this.form.status == 2 ||
|
|
|
- this.form.status == 3 ||
|
|
|
- this.form.status == 5
|
|
|
- ) {
|
|
|
- updateNEWS(this.form).then((response) => {
|
|
|
- this.$modal.msgSuccess("修改成功");
|
|
|
+ } else if (this.form.status == 0 || this.form.status == 2 || this.form.status == 3 || this.form.status == 5) {
|
|
|
+ updateNEWS(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess('修改成功');
|
|
|
this.open = false;
|
|
|
this.getList();
|
|
|
this.reset();
|
|
@@ -694,20 +477,20 @@ export default {
|
|
|
})
|
|
|
.then(() => {
|
|
|
this.getList();
|
|
|
- this.$modal.msgSuccess("删除成功");
|
|
|
+ this.$modal.msgSuccess('删除成功');
|
|
|
})
|
|
|
.catch(() => {});
|
|
|
},
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|
|
|
this.download(
|
|
|
- "business/NEWS/export",
|
|
|
+ 'business/NEWS/export',
|
|
|
{
|
|
|
- ...this.queryParams,
|
|
|
+ ...this.queryParams
|
|
|
},
|
|
|
`NEWS_${new Date().getTime()}.xlsx`
|
|
|
);
|
|
|
- },
|
|
|
- },
|
|
|
+ }
|
|
|
+ }
|
|
|
};
|
|
|
</script>
|