Эх сурвалжийг харах

+ 资讯内容管理页面

chen.cheng 11 сар өмнө
parent
commit
3731d00c38

+ 104 - 0
ruoyi-admin/src/main/java/com/ruoyi/web/controller/CpsContentInfoController.java

@@ -0,0 +1,104 @@
+package com.ruoyi.system.controller;
+
+import java.util.List;
+import javax.servlet.http.HttpServletResponse;
+import org.springframework.security.access.prepost.PreAuthorize;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.web.bind.annotation.GetMapping;
+import org.springframework.web.bind.annotation.PostMapping;
+import org.springframework.web.bind.annotation.PutMapping;
+import org.springframework.web.bind.annotation.DeleteMapping;
+import org.springframework.web.bind.annotation.PathVariable;
+import org.springframework.web.bind.annotation.RequestBody;
+import org.springframework.web.bind.annotation.RequestMapping;
+import org.springframework.web.bind.annotation.RestController;
+import com.ruoyi.common.annotation.Log;
+import com.ruoyi.common.core.controller.BaseController;
+import com.ruoyi.common.core.domain.AjaxResult;
+import com.ruoyi.common.enums.BusinessType;
+import com.ruoyi.system.domain.CpsContentInfo;
+import com.ruoyi.system.service.ICpsContentInfoService;
+import com.ruoyi.common.utils.poi.ExcelUtil;
+import com.ruoyi.common.core.page.TableDataInfo;
+
+/**
+ * 发布内容Controller
+ * 
+ * @author ruoyi
+ * @date 2024-08-14
+ */
+@RestController
+@RequestMapping("/cp/contentIfon")
+public class CpsContentInfoController extends BaseController
+{
+    @Autowired
+    private ICpsContentInfoService cpsContentInfoService;
+
+    /**
+     * 查询发布内容列表
+     */
+    @PreAuthorize("@ss.hasPermi('cp:contentIfon:list')")
+    @GetMapping("/list")
+    public TableDataInfo list(CpsContentInfo cpsContentInfo)
+    {
+        startPage();
+        List<CpsContentInfo> list = cpsContentInfoService.selectCpsContentInfoList(cpsContentInfo);
+        return getDataTable(list);
+    }
+
+    /**
+     * 导出发布内容列表
+     */
+    @PreAuthorize("@ss.hasPermi('cp:contentIfon:export')")
+    @Log(title = "发布内容", businessType = BusinessType.EXPORT)
+    @PostMapping("/export")
+    public void export(HttpServletResponse response, CpsContentInfo cpsContentInfo)
+    {
+        List<CpsContentInfo> list = cpsContentInfoService.selectCpsContentInfoList(cpsContentInfo);
+        ExcelUtil<CpsContentInfo> util = new ExcelUtil<CpsContentInfo>(CpsContentInfo.class);
+        util.exportExcel(response, list, "发布内容数据");
+    }
+
+    /**
+     * 获取发布内容详细信息
+     */
+    @PreAuthorize("@ss.hasPermi('cp:contentIfon:query')")
+    @GetMapping(value = "/{id}")
+    public AjaxResult getInfo(@PathVariable("id") Long id)
+    {
+        return success(cpsContentInfoService.selectCpsContentInfoById(id));
+    }
+
+    /**
+     * 新增发布内容
+     */
+    @PreAuthorize("@ss.hasPermi('cp:contentIfon:add')")
+    @Log(title = "发布内容", businessType = BusinessType.INSERT)
+    @PostMapping
+    public AjaxResult add(@RequestBody CpsContentInfo cpsContentInfo)
+    {
+        return toAjax(cpsContentInfoService.insertCpsContentInfo(cpsContentInfo));
+    }
+
+    /**
+     * 修改发布内容
+     */
+    @PreAuthorize("@ss.hasPermi('cp:contentIfon:edit')")
+    @Log(title = "发布内容", businessType = BusinessType.UPDATE)
+    @PutMapping
+    public AjaxResult edit(@RequestBody CpsContentInfo cpsContentInfo)
+    {
+        return toAjax(cpsContentInfoService.updateCpsContentInfo(cpsContentInfo));
+    }
+
+    /**
+     * 删除发布内容
+     */
+    @PreAuthorize("@ss.hasPermi('cp:contentIfon:remove')")
+    @Log(title = "发布内容", businessType = BusinessType.DELETE)
+	@DeleteMapping("/{ids}")
+    public AjaxResult remove(@PathVariable Long[] ids)
+    {
+        return toAjax(cpsContentInfoService.deleteCpsContentInfoByIds(ids));
+    }
+}

+ 97 - 0
ruoyi-system/src/main/java/com/ruoyi/system/domain/CpsContentInfo.java

@@ -0,0 +1,97 @@
+package com.ruoyi.system.domain;
+
+import org.apache.commons.lang3.builder.ToStringBuilder;
+import org.apache.commons.lang3.builder.ToStringStyle;
+import com.ruoyi.common.annotation.Excel;
+import com.ruoyi.common.core.domain.BaseEntity;
+
+/**
+ * 发布内容对象 cps_content_info
+ * 
+ * @author ruoyi
+ * @date 2024-08-14
+ */
+public class CpsContentInfo extends BaseEntity
+{
+    private static final long serialVersionUID = 1L;
+
+    /** 自增主键 */
+    private Long id;
+
+    /** 发布内容标题 */
+    @Excel(name = "发布内容标题")
+    private String title;
+
+    /** 内容主体信息 */
+    @Excel(name = "内容主体信息")
+    private String content;
+
+    /** 内容缩略图 */
+    @Excel(name = "内容缩略图")
+    private String thumbnail;
+
+    /** 资讯类型 */
+    @Excel(name = "资讯类型")
+    private Integer contentType;
+
+    public void setId(Long id) 
+    {
+        this.id = id;
+    }
+
+    public Long getId() 
+    {
+        return id;
+    }
+    public void setTitle(String title) 
+    {
+        this.title = title;
+    }
+
+    public String getTitle() 
+    {
+        return title;
+    }
+    public void setContent(String content) 
+    {
+        this.content = content;
+    }
+
+    public String getContent() 
+    {
+        return content;
+    }
+    public void setThumbnail(String thumbnail) 
+    {
+        this.thumbnail = thumbnail;
+    }
+
+    public String getThumbnail() 
+    {
+        return thumbnail;
+    }
+    public void setContentType(Integer contentType) 
+    {
+        this.contentType = contentType;
+    }
+
+    public Integer getContentType() 
+    {
+        return contentType;
+    }
+
+    @Override
+    public String toString() {
+        return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
+            .append("id", getId())
+            .append("title", getTitle())
+            .append("content", getContent())
+            .append("thumbnail", getThumbnail())
+            .append("contentType", getContentType())
+            .append("updateTime", getUpdateTime())
+            .append("createTime", getCreateTime())
+            .append("createBy", getCreateBy())
+            .append("updateBy", getUpdateBy())
+            .toString();
+    }
+}

+ 61 - 0
ruoyi-system/src/main/java/com/ruoyi/system/mapper/CpsContentInfoMapper.java

@@ -0,0 +1,61 @@
+package com.ruoyi.system.mapper;
+
+import java.util.List;
+import com.ruoyi.system.domain.CpsContentInfo;
+
+/**
+ * 发布内容Mapper接口
+ * 
+ * @author ruoyi
+ * @date 2024-08-14
+ */
+public interface CpsContentInfoMapper 
+{
+    /**
+     * 查询发布内容
+     * 
+     * @param id 发布内容主键
+     * @return 发布内容
+     */
+    public CpsContentInfo selectCpsContentInfoById(Long id);
+
+    /**
+     * 查询发布内容列表
+     * 
+     * @param cpsContentInfo 发布内容
+     * @return 发布内容集合
+     */
+    public List<CpsContentInfo> selectCpsContentInfoList(CpsContentInfo cpsContentInfo);
+
+    /**
+     * 新增发布内容
+     * 
+     * @param cpsContentInfo 发布内容
+     * @return 结果
+     */
+    public int insertCpsContentInfo(CpsContentInfo cpsContentInfo);
+
+    /**
+     * 修改发布内容
+     * 
+     * @param cpsContentInfo 发布内容
+     * @return 结果
+     */
+    public int updateCpsContentInfo(CpsContentInfo cpsContentInfo);
+
+    /**
+     * 删除发布内容
+     * 
+     * @param id 发布内容主键
+     * @return 结果
+     */
+    public int deleteCpsContentInfoById(Long id);
+
+    /**
+     * 批量删除发布内容
+     * 
+     * @param ids 需要删除的数据主键集合
+     * @return 结果
+     */
+    public int deleteCpsContentInfoByIds(Long[] ids);
+}

+ 61 - 0
ruoyi-system/src/main/java/com/ruoyi/system/service/ICpsContentInfoService.java

@@ -0,0 +1,61 @@
+package com.ruoyi.system.service;
+
+import java.util.List;
+import com.ruoyi.system.domain.CpsContentInfo;
+
+/**
+ * 发布内容Service接口
+ * 
+ * @author ruoyi
+ * @date 2024-08-14
+ */
+public interface ICpsContentInfoService 
+{
+    /**
+     * 查询发布内容
+     * 
+     * @param id 发布内容主键
+     * @return 发布内容
+     */
+    public CpsContentInfo selectCpsContentInfoById(Long id);
+
+    /**
+     * 查询发布内容列表
+     * 
+     * @param cpsContentInfo 发布内容
+     * @return 发布内容集合
+     */
+    public List<CpsContentInfo> selectCpsContentInfoList(CpsContentInfo cpsContentInfo);
+
+    /**
+     * 新增发布内容
+     * 
+     * @param cpsContentInfo 发布内容
+     * @return 结果
+     */
+    public int insertCpsContentInfo(CpsContentInfo cpsContentInfo);
+
+    /**
+     * 修改发布内容
+     * 
+     * @param cpsContentInfo 发布内容
+     * @return 结果
+     */
+    public int updateCpsContentInfo(CpsContentInfo cpsContentInfo);
+
+    /**
+     * 批量删除发布内容
+     * 
+     * @param ids 需要删除的发布内容主键集合
+     * @return 结果
+     */
+    public int deleteCpsContentInfoByIds(Long[] ids);
+
+    /**
+     * 删除发布内容信息
+     * 
+     * @param id 发布内容主键
+     * @return 结果
+     */
+    public int deleteCpsContentInfoById(Long id);
+}

+ 96 - 0
ruoyi-system/src/main/java/com/ruoyi/system/service/impl/CpsContentInfoServiceImpl.java

@@ -0,0 +1,96 @@
+package com.ruoyi.system.service.impl;
+
+import java.util.List;
+import com.ruoyi.common.utils.DateUtils;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.stereotype.Service;
+import com.ruoyi.system.mapper.CpsContentInfoMapper;
+import com.ruoyi.system.domain.CpsContentInfo;
+import com.ruoyi.system.service.ICpsContentInfoService;
+
+/**
+ * 发布内容Service业务层处理
+ * 
+ * @author ruoyi
+ * @date 2024-08-14
+ */
+@Service
+public class CpsContentInfoServiceImpl implements ICpsContentInfoService 
+{
+    @Autowired
+    private CpsContentInfoMapper cpsContentInfoMapper;
+
+    /**
+     * 查询发布内容
+     * 
+     * @param id 发布内容主键
+     * @return 发布内容
+     */
+    @Override
+    public CpsContentInfo selectCpsContentInfoById(Long id)
+    {
+        return cpsContentInfoMapper.selectCpsContentInfoById(id);
+    }
+
+    /**
+     * 查询发布内容列表
+     * 
+     * @param cpsContentInfo 发布内容
+     * @return 发布内容
+     */
+    @Override
+    public List<CpsContentInfo> selectCpsContentInfoList(CpsContentInfo cpsContentInfo)
+    {
+        return cpsContentInfoMapper.selectCpsContentInfoList(cpsContentInfo);
+    }
+
+    /**
+     * 新增发布内容
+     * 
+     * @param cpsContentInfo 发布内容
+     * @return 结果
+     */
+    @Override
+    public int insertCpsContentInfo(CpsContentInfo cpsContentInfo)
+    {
+        cpsContentInfo.setCreateTime(DateUtils.getNowDate());
+        return cpsContentInfoMapper.insertCpsContentInfo(cpsContentInfo);
+    }
+
+    /**
+     * 修改发布内容
+     * 
+     * @param cpsContentInfo 发布内容
+     * @return 结果
+     */
+    @Override
+    public int updateCpsContentInfo(CpsContentInfo cpsContentInfo)
+    {
+        cpsContentInfo.setUpdateTime(DateUtils.getNowDate());
+        return cpsContentInfoMapper.updateCpsContentInfo(cpsContentInfo);
+    }
+
+    /**
+     * 批量删除发布内容
+     * 
+     * @param ids 需要删除的发布内容主键
+     * @return 结果
+     */
+    @Override
+    public int deleteCpsContentInfoByIds(Long[] ids)
+    {
+        return cpsContentInfoMapper.deleteCpsContentInfoByIds(ids);
+    }
+
+    /**
+     * 删除发布内容信息
+     * 
+     * @param id 发布内容主键
+     * @return 结果
+     */
+    @Override
+    public int deleteCpsContentInfoById(Long id)
+    {
+        return cpsContentInfoMapper.deleteCpsContentInfoById(id);
+    }
+}

+ 86 - 0
ruoyi-system/src/main/resources/mapper/cp/CpsContentInfoMapper.xml

@@ -0,0 +1,86 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE mapper
+PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
+"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
+<mapper namespace="com.ruoyi.system.mapper.CpsContentInfoMapper">
+
+    <resultMap type="com.ruoyi.system.domain.CpsContentInfo" id="CpsContentInfoResult">
+        <result property="id"    column="id"    />
+        <result property="title"    column="title"    />
+        <result property="content"    column="content"    />
+        <result property="thumbnail"    column="thumbnail"    />
+        <result property="contentType"    column="content_type"    />
+        <result property="updateTime"    column="update_time"    />
+        <result property="createTime"    column="create_time"    />
+        <result property="createBy"    column="create_by"    />
+        <result property="updateBy"    column="update_by"    />
+    </resultMap>
+
+    <sql id="selectCpsContentInfoVo">
+        select id, title, content, thumbnail, content_type, update_time, create_time, create_by, update_by from cps_content_info
+    </sql>
+
+    <select id="selectCpsContentInfoList" parameterType="com.ruoyi.system.domain.CpsContentInfo" resultMap="CpsContentInfoResult">
+        select id, title, thumbnail, content_type, update_time, create_time, create_by, update_by from cps_content_info
+        <where>
+            <if test="title != null  and title != ''"> and title like concat('%', #{title}, '%')</if>
+            <if test="content != null  and content != ''"> and content like concat('%', #{content}, '%')</if>
+            <if test="contentType != null "> and content_type = #{contentType}</if>
+        </where>
+    </select>
+
+    <select id="selectCpsContentInfoById" parameterType="Long" resultMap="CpsContentInfoResult">
+        <include refid="selectCpsContentInfoVo"/>
+        where id = #{id}
+    </select>
+
+    <insert id="insertCpsContentInfo" parameterType="com.ruoyi.system.domain.CpsContentInfo" useGeneratedKeys="true" keyProperty="id">
+        insert into cps_content_info
+        <trim prefix="(" suffix=")" suffixOverrides=",">
+            <if test="title != null">title,</if>
+            <if test="content != null">content,</if>
+            <if test="thumbnail != null">thumbnail,</if>
+            <if test="contentType != null">content_type,</if>
+            <if test="updateTime != null">update_time,</if>
+            <if test="createTime != null">create_time,</if>
+            <if test="createBy != null">create_by,</if>
+            <if test="updateBy != null">update_by,</if>
+         </trim>
+        <trim prefix="values (" suffix=")" suffixOverrides=",">
+            <if test="title != null">#{title},</if>
+            <if test="content != null">#{content},</if>
+            <if test="thumbnail != null">#{thumbnail},</if>
+            <if test="contentType != null">#{contentType},</if>
+            <if test="updateTime != null">#{updateTime},</if>
+            <if test="createTime != null">#{createTime},</if>
+            <if test="createBy != null">#{createBy},</if>
+            <if test="updateBy != null">#{updateBy},</if>
+         </trim>
+    </insert>
+
+    <update id="updateCpsContentInfo" parameterType="com.ruoyi.system.domain.CpsContentInfo">
+        update cps_content_info
+        <trim prefix="SET" suffixOverrides=",">
+            <if test="title != null">title = #{title},</if>
+            <if test="content != null">content = #{content},</if>
+            <if test="thumbnail != null">thumbnail = #{thumbnail},</if>
+            <if test="contentType != null">content_type = #{contentType},</if>
+            <if test="updateTime != null">update_time = #{updateTime},</if>
+            <if test="createTime != null">create_time = #{createTime},</if>
+            <if test="createBy != null">create_by = #{createBy},</if>
+            <if test="updateBy != null">update_by = #{updateBy},</if>
+        </trim>
+        where id = #{id}
+    </update>
+
+    <delete id="deleteCpsContentInfoById" parameterType="Long">
+        delete from cps_content_info where id = #{id}
+    </delete>
+
+    <delete id="deleteCpsContentInfoByIds" parameterType="String">
+        delete from cps_content_info where id in
+        <foreach item="id" collection="array" open="(" separator="," close=")">
+            #{id}
+        </foreach>
+    </delete>
+</mapper>

+ 44 - 0
ruoyi-ui/src/api/cp/contentInfo.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询发布内容列表
+export function listContentIfon(query) {
+  return request({
+    url: '/cp/contentIfon/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询发布内容详细
+export function getContentIfon(id) {
+  return request({
+    url: '/cp/contentIfon/' + id,
+    method: 'get'
+  })
+}
+
+// 新增发布内容
+export function addContentIfon(data) {
+  return request({
+    url: '/cp/contentIfon',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改发布内容
+export function updateContentIfon(data) {
+  return request({
+    url: '/cp/contentIfon',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除发布内容
+export function delContentIfon(id) {
+  return request({
+    url: '/cp/contentIfon/' + id,
+    method: 'delete'
+  })
+}

+ 303 - 0
ruoyi-ui/src/views/cp/contentInfo/index.vue

@@ -0,0 +1,303 @@
+<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="title">
+        <el-input
+          v-model="queryParams.title"
+          placeholder="请输入发布内容标题"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="资讯类型" prop="contentType">
+        <el-select v-model="queryParams.contentType" placeholder="请选择资讯类型" clearable>
+          <el-option
+            v-for="dict in dict.type.content_type"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.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-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="['cp:contentIfon:add']"
+        >新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="success"
+          plain
+          icon="el-icon-edit"
+          size="mini"
+          :disabled="single"
+          @click="handleUpdate"
+          v-hasPermi="['cp:contentIfon:edit']"
+        >修改</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          plain
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['cp:contentIfon:remove']"
+        >删除</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['cp:contentIfon:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="contentIfonList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="自增主键" align="center" prop="id" />
+      <el-table-column label="发布内容标题" align="center" prop="title" />
+      <el-table-column label="内容缩略图" align="center" prop="thumbnail" width="100">
+        <template slot-scope="scope">
+          <image-preview :src="scope.row.thumbnail" :width="50" :height="50"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="资讯类型" align="center" prop="contentType">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.content_type" :value="scope.row.contentType"/>
+        </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="['cp:contentIfon:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['cp:contentIfon: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 :title="title" :visible.sync="open" width="700px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="100px">
+        <el-form-item label="发布内容标题" prop="title">
+          <el-input v-model="form.title" placeholder="请输入发布内容标题" />
+        </el-form-item>
+        <el-form-item label="内容主体信息">
+          <editor v-model="form.content" :min-height="192"/>
+        </el-form-item>
+        <el-form-item label="内容缩略图" prop="thumbnail">
+          <image-upload v-model="form.thumbnail"/>
+        </el-form-item>
+        <el-form-item label="资讯类型" prop="contentType">
+          <el-select v-model="form.contentType" placeholder="请选择资讯类型">
+            <el-option
+              v-for="dict in dict.type.content_type"
+              :key="dict.value"
+              :label="dict.label"
+              :value="parseInt(dict.value)"
+            ></el-option>
+          </el-select>
+        </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 { listContentIfon, getContentIfon, delContentIfon, addContentIfon, updateContentIfon } from "@/api/cp/contentInfo";
+
+export default {
+  name: "ContentIfon",
+  dicts: ['content_type'],
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 发布内容表格数据
+      contentIfonList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        title: null,
+        content: null,
+        contentType: null,
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        title: [
+          { required: true, message: "发布内容标题不能为空", trigger: "blur" }
+        ],
+        content: [
+          { required: true, message: "内容主体信息不能为空", trigger: "blur" }
+        ],
+        thumbnail: [
+          { required: true, message: "内容缩略图不能为空", trigger: "blur" }
+        ],
+        contentType: [
+          { required: true, message: "资讯类型不能为空", trigger: "change" }
+        ],
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询发布内容列表 */
+    getList() {
+      this.loading = true;
+      listContentIfon(this.queryParams).then(response => {
+        this.contentIfonList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        title: null,
+        content: null,
+        thumbnail: null,
+        contentType: null,
+        updateTime: null,
+        createTime: null,
+        createBy: null,
+        updateBy: null
+      };
+      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
+      getContentIfon(id).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改发布内容";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.id != null) {
+            updateContentIfon(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addContentIfon(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids;
+      this.$modal.confirm('是否确认删除发布内容编号为"' + ids + '"的数据项?').then(function() {
+        return delContentIfon(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('cp/contentIfon/export', {
+        ...this.queryParams
+      }, `contentIfon_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>