Browse Source

新增新闻管理-要闻资讯页面

Sanmu8 1 year ago
parent
commit
84bed58133

+ 53 - 0
src/api/portal/CONTACTUS/CONTACTUS.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询联系我们列表
+export function listCONTACTUS(query) {
+  return request({
+    url: '/business/CONTACTUS/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询联系我们所有列表
+export function listAllCONTACTUS(query) {
+  return request({
+    url: '/business/CONTACTUS/listAll',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询联系我们详细
+export function getCONTACTUS(id) {
+  return request({
+    url: '/business/CONTACTUS/getInfo/' + id,
+    method: 'get'
+  })
+}
+
+// 新增联系我们
+export function addCONTACTUS(data) {
+  return request({
+    url: '/business/CONTACTUS/add',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改联系我们
+export function updateCONTACTUS(data) {
+  return request({
+    url: '/business/CONTACTUS/edit',
+    method: 'post',
+    data: data
+  })
+}
+
+// 删除联系我们
+export function delCONTACTUS(id) {
+  return request({
+    url: '/business/CONTACTUS/remove/' + id,
+    method: 'get'
+  })
+}

+ 53 - 0
src/api/portal/FRIENDLYLINKS/FRIENDLYLINKS.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询友情链接列表
+export function listFRIENDLYLINKS(query) {
+  return request({
+    url: '/business/FRIENDLYLINKS/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询友情链接所有列表
+export function listAllFRIENDLYLINKS(query) {
+  return request({
+    url: '/business/FRIENDLYLINKS/listAll',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询友情链接详细
+export function getFRIENDLYLINKS(id) {
+  return request({
+    url: '/business/FRIENDLYLINKS/getInfo/' + id,
+    method: 'get'
+  })
+}
+
+// 新增友情链接
+export function addFRIENDLYLINKS(data) {
+  return request({
+    url: '/business/FRIENDLYLINKS/add',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改友情链接
+export function updateFRIENDLYLINKS(data) {
+  return request({
+    url: '/business/FRIENDLYLINKS/edit',
+    method: 'post',
+    data: data
+  })
+}
+
+// 删除友情链接
+export function delFRIENDLYLINKS(id) {
+  return request({
+    url: '/business/FRIENDLYLINKS/remove/' + id,
+    method: 'get'
+  })
+}

+ 53 - 0
src/api/portal/LEAVEMESSAGE/LEAVEMESSAGE.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询留言反馈列表
+export function listLEAVEMESSAGE(query) {
+  return request({
+    url: '/business/LEAVEMESSAGE/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询留言反馈所有列表
+export function listAllLEAVEMESSAGE(query) {
+  return request({
+    url: '/business/LEAVEMESSAGE/listAll',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询留言反馈详细
+export function getLEAVEMESSAGE(id) {
+  return request({
+    url: '/business/LEAVEMESSAGE/getInfo/' + id,
+    method: 'get'
+  })
+}
+
+// 新增留言反馈
+export function addLEAVEMESSAGE(data) {
+  return request({
+    url: '/business/LEAVEMESSAGE/add',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改留言反馈
+export function updateLEAVEMESSAGE(data) {
+  return request({
+    url: '/business/LEAVEMESSAGE/edit',
+    method: 'post',
+    data: data
+  })
+}
+
+// 删除留言反馈
+export function delLEAVEMESSAGE(id) {
+  return request({
+    url: '/business/LEAVEMESSAGE/remove/' + id,
+    method: 'get'
+  })
+}

+ 53 - 0
src/api/portal/ONLINE/ONLINE.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询网上办事列表
+export function listONLINE(query) {
+  return request({
+    url: '/business/ONLINE/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询网上办事所有列表
+export function listAllONLINE(query) {
+  return request({
+    url: '/business/ONLINE/listAll',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询网上办事详细
+export function getONLINE(id) {
+  return request({
+    url: '/business/ONLINE/getInfo/' + id,
+    method: 'get'
+  })
+}
+
+// 新增网上办事
+export function addONLINE(data) {
+  return request({
+    url: '/business/ONLINE/add',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改网上办事
+export function updateONLINE(data) {
+  return request({
+    url: '/business/ONLINE/edit',
+    method: 'post',
+    data: data
+  })
+}
+
+// 删除网上办事
+export function delONLINE(id) {
+  return request({
+    url: '/business/ONLINE/remove/' + id,
+    method: 'get'
+  })
+}

+ 53 - 0
src/api/portal/OPSERVICE/OPSERVICE.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询运营服务列表
+export function listOPSERVICE(query) {
+  return request({
+    url: '/business/OPSERVICE/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询运营服务所有列表
+export function listAllOPSERVICE(query) {
+  return request({
+    url: '/business/OPSERVICE/listAll',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询运营服务详细
+export function getOPSERVICE(id) {
+  return request({
+    url: '/business/OPSERVICE/getInfo/' + id,
+    method: 'get'
+  })
+}
+
+// 新增运营服务
+export function addOPSERVICE(data) {
+  return request({
+    url: '/business/OPSERVICE/add',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改运营服务
+export function updateOPSERVICE(data) {
+  return request({
+    url: '/business/OPSERVICE/edit',
+    method: 'post',
+    data: data
+  })
+}
+
+// 删除运营服务
+export function delOPSERVICE(id) {
+  return request({
+    url: '/business/OPSERVICE/remove/' + id,
+    method: 'get'
+  })
+}

+ 15 - 6
src/api/news/NEWS.js → src/api/portal/news/NEWS.js

@@ -3,7 +3,7 @@ import request from '@/utils/request'
 // 查询网站新闻列表
 export function listNEWS(query) {
   return request({
-    url: '/business/NEWS/list',
+    url: '/news/list',
     method: 'get',
     params: query
   })
@@ -12,7 +12,7 @@ export function listNEWS(query) {
 // 查询网站新闻所有列表
 export function listAllNEWS(query) {
   return request({
-    url: '/business/NEWS/listAll',
+    url: '/news/listAll',
     method: 'get',
     params: query
   })
@@ -21,7 +21,7 @@ export function listAllNEWS(query) {
 // 查询网站新闻详细
 export function getNEWS(id) {
   return request({
-    url: '/business/NEWS/getInfo/' + id,
+    url: '/news/getInfo/' + id,
     method: 'get'
   })
 }
@@ -29,7 +29,7 @@ export function getNEWS(id) {
 // 新增网站新闻
 export function addNEWS(data) {
   return request({
-    url: '/business/NEWS/add',
+    url: '/news/add',
     method: 'post',
     data: data
   })
@@ -38,7 +38,7 @@ export function addNEWS(data) {
 // 修改网站新闻
 export function updateNEWS(data) {
   return request({
-    url: '/business/NEWS/edit',
+    url: '/news/edit',
     method: 'post',
     data: data
   })
@@ -47,7 +47,16 @@ export function updateNEWS(data) {
 // 删除网站新闻
 export function delNEWS(id) {
   return request({
-    url: '/business/NEWS/remove/' + id,
+    url: '/news/remove/' + id,
     method: 'get'
   })
 }
+
+// 上传文件
+export function upload(data) {
+  return request({
+    url: '/common/upload/',
+    method: 'post',
+    data:data
+  })
+}

+ 325 - 0
src/views/CONTACTUS/index.vue

@@ -0,0 +1,325 @@
+<template>
+<!--  <div class="app-container">-->
+<!--    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">-->
+<!--      <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="['business:CONTACTUS: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="['business:CONTACTUS: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="['business:CONTACTUS: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="['business:CONTACTUS:export']"-->
+<!--        >导出</el-button>-->
+<!--      </el-col>-->
+<!--      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
+<!--    </el-row>-->
+
+<!--    <el-table v-loading="loading" :data="CONTACTUSList" @selection-change="handleSelectionChange">-->
+<!--      <el-table-column type="selection" width="55" align="center" />-->
+<!--      <el-table-column label="主键" align="center" prop="id">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.id"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="创建时间" align="center" prop="createTime">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createTime"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="创建人" align="center" prop="createBy">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createBy"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="更新时间" align="center" prop="updateTime">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateTime"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="更新人" align="center" prop="updateBy">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateBy"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="删除标志" align="center" prop="delFlag">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.delFlag"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="部门ID" align="center" prop="deptId">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.deptId"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="单位名称" align="center" prop="depName">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.depName"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="联系电话" align="center" prop="telphone">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.telphone"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="位置" align="center" prop="location">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.location"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="邮箱" align="center" prop="email">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.email"/>-->
+<!--        </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="['business:CONTACTUS:edit']"-->
+<!--          >修改</el-button>-->
+<!--          <el-button-->
+<!--            size="mini"-->
+<!--            type="text"-->
+<!--            icon="el-icon-delete"-->
+<!--            @click="handleDelete(scope.row)"-->
+<!--            v-hasPermi="['business:CONTACTUS: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"-->
+<!--    />-->
+
+<!--    &lt;!&ndash; 添加或修改联系我们对话框 &ndash;&gt;-->
+<!--    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>-->
+<!--      <el-form ref="form" :model="form" :rules="rules" label-width="80px">-->
+<!--      </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 { listCONTACTUS, getCONTACTUS, delCONTACTUS, addCONTACTUS, updateCONTACTUS } from "@/api/portal/CONTACTUS/CONTACTUS.js";
+
+export default {
+  name: "CONTACTUS",
+  data() {
+    return {
+      // 根路径
+      baseURL: process.env.VUE_APP_BASE_API,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 联系我们表格数据
+      CONTACTUSList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        id: null,
+        createTime: null,
+        createBy: null,
+        updateTime: null,
+        updateBy: null,
+        delFlag: null,
+        deptId: null,
+        depName: null,
+        telphone: null,
+        location: null,
+        email: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        id: [
+          { required: true, message: "主键不能为空", trigger: "blur" }
+        ],
+        delFlag: [
+          { required: true, message: "删除标志不能为空", trigger: "blur" }
+        ],
+        deptId: [
+          { required: true, message: "部门ID不能为空", trigger: "blur" }
+        ],
+        depName: [
+          { required: true, message: "单位名称不能为空", trigger: "blur" }
+        ],
+        telphone: [
+          { required: true, message: "联系电话不能为空", trigger: "blur" }
+        ],
+        location: [
+          { required: true, message: "位置不能为空", trigger: "blur" }
+        ],
+        email: [
+          { required: true, message: "邮箱不能为空", trigger: "blur" }
+        ]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询联系我们列表 */
+    getList() {
+      this.loading = true;
+      listCONTACTUS(this.queryParams).then(response => {
+        this.CONTACTUSList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        delFlag: null,
+        deptId: null,
+        depName: null,
+        telphone: null,
+        location: null,
+        email: 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
+      getCONTACTUS(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) {
+            updateCONTACTUS(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addCONTACTUS(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 delCONTACTUS(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('business/CONTACTUS/export', {
+        ...this.queryParams
+      }, `CONTACTUS_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 305 - 0
src/views/FRIENDLYLINKS/index.vue

@@ -0,0 +1,305 @@
+<template>
+<!--  <div class="app-container">-->
+<!--    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">-->
+<!--      <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="['business:FRIENDLYLINKS: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="['business:FRIENDLYLINKS: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="['business:FRIENDLYLINKS: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="['business:FRIENDLYLINKS:export']"-->
+<!--        >导出</el-button>-->
+<!--      </el-col>-->
+<!--      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
+<!--    </el-row>-->
+
+<!--    <el-table v-loading="loading" :data="FRIENDLYLINKSList" @selection-change="handleSelectionChange">-->
+<!--      <el-table-column type="selection" width="55" align="center" />-->
+<!--      <el-table-column label="id主键" align="center" prop="id">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.id"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="创建时间" align="center" prop="createTime">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createTime"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="创建人" align="center" prop="createBy">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createBy"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="修改时间" align="center" prop="updateTime">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateTime"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="修改人" align="center" prop="updateBy">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateBy"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="删除标记" align="center" prop="delFlag">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.delFlag"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="部门id" align="center" prop="deptId">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.deptId"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="友情链接名称" align="center" prop="linkName">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.linkName"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="友情链接url" align="center" prop="linkUrl">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.linkUrl"/>-->
+<!--        </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="['business:FRIENDLYLINKS:edit']"-->
+<!--          >修改</el-button>-->
+<!--          <el-button-->
+<!--            size="mini"-->
+<!--            type="text"-->
+<!--            icon="el-icon-delete"-->
+<!--            @click="handleDelete(scope.row)"-->
+<!--            v-hasPermi="['business:FRIENDLYLINKS: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"-->
+<!--    />-->
+
+<!--    &lt;!&ndash; 添加或修改友情链接对话框 &ndash;&gt;-->
+<!--    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>-->
+<!--      <el-form ref="form" :model="form" :rules="rules" label-width="80px">-->
+<!--      </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 { listFRIENDLYLINKS, getFRIENDLYLINKS, delFRIENDLYLINKS, addFRIENDLYLINKS, updateFRIENDLYLINKS } from "@/api/portal/FRIENDLYLINKS/FRIENDLYLINKS";
+
+export default {
+  name: "FRIENDLYLINKS",
+  data() {
+    return {
+      // 根路径
+      baseURL: process.env.VUE_APP_BASE_API,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 友情链接表格数据
+      FRIENDLYLINKSList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        id: null,
+        createTime: null,
+        createBy: null,
+        updateTime: null,
+        updateBy: null,
+        delFlag: null,
+        deptId: null,
+        linkName: null,
+        linkUrl: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        id: [
+          { required: true, message: "id主键不能为空", trigger: "blur" }
+        ],
+        delFlag: [
+          { required: true, message: "删除标记不能为空", trigger: "blur" }
+        ],
+        deptId: [
+          { required: true, message: "部门id不能为空", trigger: "blur" }
+        ],
+        linkName: [
+          { required: true, message: "友情链接名称不能为空", trigger: "blur" }
+        ],
+        linkUrl: [
+          { required: true, message: "友情链接url不能为空", trigger: "blur" }
+        ]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询友情链接列表 */
+    getList() {
+      this.loading = true;
+      listFRIENDLYLINKS(this.queryParams).then(response => {
+        this.FRIENDLYLINKSList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        delFlag: null,
+        deptId: null,
+        linkName: null,
+        linkUrl: 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
+      getFRIENDLYLINKS(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) {
+            updateFRIENDLYLINKS(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addFRIENDLYLINKS(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 delFRIENDLYLINKS(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('business/FRIENDLYLINKS/export', {
+        ...this.queryParams
+      }, `FRIENDLYLINKS_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 335 - 0
src/views/LEAVEMESSAGE/index.vue

@@ -0,0 +1,335 @@
+<template>
+<!--  <div class="app-container">-->
+<!--    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">-->
+<!--      <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="['business:LEAVEMESSAGE: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="['business:LEAVEMESSAGE: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="['business:LEAVEMESSAGE: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="['business:LEAVEMESSAGE:export']"-->
+<!--        >导出</el-button>-->
+<!--      </el-col>-->
+<!--      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
+<!--    </el-row>-->
+
+<!--    <el-table v-loading="loading" :data="LEAVEMESSAGEList" @selection-change="handleSelectionChange">-->
+<!--      <el-table-column type="selection" width="55" align="center" />-->
+<!--      <el-table-column label="主键id" align="center" prop="id">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.id"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="用户id" align="center" prop="userId">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.userId"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="创建时间" align="center" prop="createTime">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createTime"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="创建人" align="center" prop="createBy">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createBy"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="修改时间" align="center" prop="updateTime">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateTime"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="修改人" align="center" prop="updateBy">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateBy"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="删除标记" align="center" prop="delFlag">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.delFlag"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="部门id" align="center" prop="deptId">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.deptId"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="留言标题" align="center" prop="question">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.question"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="留言详情" align="center" prop="questionDetail">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.questionDetail"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="留言时间" align="center" prop="questionTime">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.questionTime"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="留言人姓名" align="center" prop="ansName">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.ansName"/>-->
+<!--        </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="['business:LEAVEMESSAGE:edit']"-->
+<!--          >修改</el-button>-->
+<!--          <el-button-->
+<!--            size="mini"-->
+<!--            type="text"-->
+<!--            icon="el-icon-delete"-->
+<!--            @click="handleDelete(scope.row)"-->
+<!--            v-hasPermi="['business:LEAVEMESSAGE: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"-->
+<!--    />-->
+
+<!--    &lt;!&ndash; 添加或修改留言反馈对话框 &ndash;&gt;-->
+<!--    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>-->
+<!--      <el-form ref="form" :model="form" :rules="rules" label-width="80px">-->
+<!--      </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 { listLEAVEMESSAGE, getLEAVEMESSAGE, delLEAVEMESSAGE, addLEAVEMESSAGE, updateLEAVEMESSAGE } from "@/api/portal/LEAVEMESSAGE/LEAVEMESSAGE";
+
+export default {
+  name: "LEAVEMESSAGE",
+  data() {
+    return {
+      // 根路径
+      baseURL: process.env.VUE_APP_BASE_API,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 留言反馈表格数据
+      LEAVEMESSAGEList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        id: null,
+        userId: null,
+        createTime: null,
+        createBy: null,
+        updateTime: null,
+        updateBy: null,
+        delFlag: null,
+        deptId: null,
+        question: null,
+        questionDetail: null,
+        questionTime: null,
+        ansName: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        id: [
+          { required: true, message: "主键id不能为空", trigger: "blur" }
+        ],
+        userId: [
+          { required: true, message: "用户id不能为空", trigger: "blur" }
+        ],
+        delFlag: [
+          { required: true, message: "删除标记不能为空", trigger: "blur" }
+        ],
+        deptId: [
+          { required: true, message: "部门id不能为空", trigger: "blur" }
+        ],
+        question: [
+          { required: true, message: "留言标题不能为空", trigger: "blur" }
+        ],
+        questionDetail: [
+          { required: true, message: "留言详情不能为空", trigger: "blur" }
+        ],
+        questionTime: [
+          { required: true, message: "留言时间不能为空", trigger: "blur" }
+        ],
+        ansName: [
+          { required: true, message: "留言人姓名不能为空", trigger: "blur" }
+        ]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询留言反馈列表 */
+    getList() {
+      this.loading = true;
+      listLEAVEMESSAGE(this.queryParams).then(response => {
+        this.LEAVEMESSAGEList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        userId: null,
+        delFlag: null,
+        deptId: null,
+        question: null,
+        questionDetail: null,
+        questionTime: null,
+        ansName: 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
+      getLEAVEMESSAGE(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) {
+            updateLEAVEMESSAGE(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addLEAVEMESSAGE(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 delLEAVEMESSAGE(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('business/LEAVEMESSAGE/export', {
+        ...this.queryParams
+      }, `LEAVEMESSAGE_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 325 - 0
src/views/ONLINE/index.vue

@@ -0,0 +1,325 @@
+<template>
+<!--  <div class="app-container">-->
+<!--    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">-->
+<!--      <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="['business:ONLINE: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="['business:ONLINE: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="['business:ONLINE: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="['business:ONLINE:export']"-->
+<!--        >导出</el-button>-->
+<!--      </el-col>-->
+<!--      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
+<!--    </el-row>-->
+
+<!--    <el-table v-loading="loading" :data="ONLINEList" @selection-change="handleSelectionChange">-->
+<!--      <el-table-column type="selection" width="55" align="center" />-->
+<!--      <el-table-column label="主键" align="center" prop="id">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.id"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="创建时间" align="center" prop="createTime">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createTime"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="创建人" align="center" prop="createBy">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createBy"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="修改时间" align="center" prop="updateTime">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateTime"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="修改人" align="center" prop="updateBy">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateBy"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="删除标志(0.正常,1.删除)" align="center" prop="delFlag">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.delFlag"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="部门id" align="center" prop="deptId">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.deptId"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="单位名称" align="center" prop="depName">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.depName"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="单位电话" align="center" prop="telphone">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.telphone"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="单位地址" align="center" prop="location">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.location"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="单位邮箱" align="center" prop="email">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.email"/>-->
+<!--        </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="['business:ONLINE:edit']"-->
+<!--          >修改</el-button>-->
+<!--          <el-button-->
+<!--            size="mini"-->
+<!--            type="text"-->
+<!--            icon="el-icon-delete"-->
+<!--            @click="handleDelete(scope.row)"-->
+<!--            v-hasPermi="['business:ONLINE: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"-->
+<!--    />-->
+
+<!--    &lt;!&ndash; 添加或修改网上办事对话框 &ndash;&gt;-->
+<!--    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>-->
+<!--      <el-form ref="form" :model="form" :rules="rules" label-width="80px">-->
+<!--      </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 { listONLINE, getONLINE, delONLINE, addONLINE, updateONLINE } from "@/api/portal/ONLINE/ONLINE";
+
+export default {
+  name: "ONLINE",
+  data() {
+    return {
+      // 根路径
+      baseURL: process.env.VUE_APP_BASE_API,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 网上办事表格数据
+      ONLINEList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        id: null,
+        createTime: null,
+        createBy: null,
+        updateTime: null,
+        updateBy: null,
+        delFlag: null,
+        deptId: null,
+        depName: null,
+        telphone: null,
+        location: null,
+        email: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        id: [
+          { required: true, message: "主键不能为空", trigger: "blur" }
+        ],
+        delFlag: [
+          { required: true, message: "删除标志(0.正常,1.删除)不能为空", trigger: "blur" }
+        ],
+        deptId: [
+          { required: true, message: "部门id不能为空", trigger: "blur" }
+        ],
+        depName: [
+          { required: true, message: "单位名称不能为空", trigger: "blur" }
+        ],
+        telphone: [
+          { required: true, message: "单位电话不能为空", trigger: "blur" }
+        ],
+        location: [
+          { required: true, message: "单位地址不能为空", trigger: "blur" }
+        ],
+        email: [
+          { required: true, message: "单位邮箱不能为空", trigger: "blur" }
+        ]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询网上办事列表 */
+    getList() {
+      this.loading = true;
+      listONLINE(this.queryParams).then(response => {
+        this.ONLINEList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        delFlag: null,
+        deptId: null,
+        depName: null,
+        telphone: null,
+        location: null,
+        email: 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
+      getONLINE(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) {
+            updateONLINE(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addONLINE(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 delONLINE(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('business/ONLINE/export', {
+        ...this.queryParams
+      }, `ONLINE_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 345 - 0
src/views/OPSERVICE/index.vue

@@ -0,0 +1,345 @@
+<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="serviceType">-->
+<!--        <el-select v-model="queryParams.serviceType" placeholder="请选择服务状态" clearable filterable>-->
+<!--          <el-option-->
+<!--            v-for="dict in dict.type.${dictType}"-->
+<!--            :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="['business:OPSERVICE: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="['business:OPSERVICE: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="['business:OPSERVICE: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="['business:OPSERVICE:export']"-->
+<!--        >导出</el-button>-->
+<!--      </el-col>-->
+<!--      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
+<!--    </el-row>-->
+
+<!--    <el-table v-loading="loading" :data="OPSERVICEList" @selection-change="handleSelectionChange">-->
+<!--      <el-table-column type="selection" width="55" align="center" />-->
+<!--      <el-table-column label="主键id" align="center" prop="id">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.id"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="上传时间" align="center" prop="createTime">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createTime"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="上传人" align="center" prop="createBy">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.createBy"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="修改时间" align="center" prop="updateTime">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateTime"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="修改人" align="center" prop="updateBy">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.updateBy"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="删除状态" align="center" prop="delFlag">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.delFlag"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="部门id" align="center" prop="deptId">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.deptId"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="文件名称" align="center" prop="serviceName">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.serviceName"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="文件附件" align="center" prop="linkUrl">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.linkUrl"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="下载次数" align="center" prop="download">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.download"/>-->
+<!--        </template>-->
+<!--      </el-table-column>-->
+<!--      <el-table-column label="服务状态" align="center" prop="serviceType">-->
+<!--        <template slot-scope="scope">-->
+<!--          <dict-tag :options="dict.type.${column.dictType}" :value="scope.row.serviceType"/>-->
+<!--        </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="['business:OPSERVICE:edit']"-->
+<!--          >修改</el-button>-->
+<!--          <el-button-->
+<!--            size="mini"-->
+<!--            type="text"-->
+<!--            icon="el-icon-delete"-->
+<!--            @click="handleDelete(scope.row)"-->
+<!--            v-hasPermi="['business:OPSERVICE: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"-->
+<!--    />-->
+
+<!--    &lt;!&ndash; 添加或修改运营服务对话框 &ndash;&gt;-->
+<!--    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>-->
+<!--      <el-form ref="form" :model="form" :rules="rules" label-width="80px">-->
+<!--        <el-form-item label="服务状态" prop="serviceType">-->
+<!--          <el-select v-model="form.serviceType" placeholder="请选择服务状态" filterable>-->
+<!--            <el-option-->
+<!--              v-for="dict in dict.type.${dictType}"-->
+<!--              :key="dict.value"-->
+<!--              :label="dict.label"-->
+<!--:value="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 { listOPSERVICE, getOPSERVICE, delOPSERVICE, addOPSERVICE, updateOPSERVICE } from "@/api/portal/OPSERVICE/OPSERVICE";
+
+export default {
+  name: "OPSERVICE",
+  data() {
+    return {
+      // 根路径
+      baseURL: process.env.VUE_APP_BASE_API,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 运营服务表格数据
+      OPSERVICEList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        id: null,
+        createTime: null,
+        createBy: null,
+        updateTime: null,
+        updateBy: null,
+        delFlag: null,
+        deptId: null,
+        serviceName: null,
+        linkUrl: null,
+        download: null,
+        serviceType: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        id: [
+          { required: true, message: "主键id不能为空", trigger: "blur" }
+        ],
+        delFlag: [
+          { required: true, message: "删除状态不能为空", trigger: "blur" }
+        ],
+        deptId: [
+          { required: true, message: "部门id不能为空", trigger: "blur" }
+        ],
+        serviceName: [
+          { required: true, message: "文件名称不能为空", trigger: "blur" }
+        ],
+        linkUrl: [
+          { required: true, message: "文件附件不能为空", trigger: "blur" }
+        ],
+        download: [
+          { required: true, message: "下载次数不能为空", trigger: "blur" }
+        ],
+        serviceType: [
+          { required: true, message: "服务状态不能为空", trigger: "change" }
+        ]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询运营服务列表 */
+    getList() {
+      this.loading = true;
+      listOPSERVICE(this.queryParams).then(response => {
+        this.OPSERVICEList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+        delFlag: null,
+        deptId: null,
+        serviceName: null,
+        linkUrl: null,
+        download: null,
+        serviceType: 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
+      getOPSERVICE(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) {
+            updateOPSERVICE(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addOPSERVICE(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 delOPSERVICE(ids);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('business/OPSERVICE/export', {
+        ...this.queryParams
+      }, `OPSERVICE_${new Date().getTime()}.xlsx`)
+    }
+  }
+};
+</script>

+ 341 - 95
src/views/news/index.vue

@@ -1,15 +1,42 @@
 <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="字典类型id(1.要闻咨询,2.政策法规,3.通知公告,4.政策解读)" prop="type">
-        <el-select v-model="queryParams.type" placeholder="请选择字典类型id(1.要闻咨询,2.政策法规,3.通知公告,4.政策解读)" clearable filterable/>
+    <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="请输入标题"></el-input>
       </el-form-item>
-      <el-form-item label="状态(0.草稿,1.下架,2.审核中,3.审核驳回,4.已发布,5.已上报)" prop="status">
-        <el-select v-model="queryParams.status" placeholder="请选择状态(0.草稿,1.下架,2.审核中,3.审核驳回,4.已发布,5.已上报)" clearable filterable/>
+      <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>
       </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"
+          size="mini"
+          @click="handleQuery"
+          >搜索</el-button
+        >
+        <el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
+          >重置</el-button
+        >
       </el-form-item>
     </el-form>
 
@@ -22,9 +49,11 @@
           size="mini"
           @click="handleAdd"
           v-hasPermi="['business:NEWS:add']"
-        >新增</el-button>
+          >新增新闻</el-button
+        >
       </el-col>
-      <el-col :span="1.5">
+      <!-- 以下暂时不需要 -->
+      <!-- <el-col :span="1.5">
         <el-button
           type="success"
           plain
@@ -33,7 +62,8 @@
           :disabled="single"
           @click="handleUpdate"
           v-hasPermi="['business:NEWS:edit']"
-        >修改</el-button>
+          >修改</el-button
+        >
       </el-col>
       <el-col :span="1.5">
         <el-button
@@ -44,7 +74,8 @@
           :disabled="multiple"
           @click="handleDelete"
           v-hasPermi="['business:NEWS:remove']"
-        >删除</el-button>
+          >删除</el-button
+        >
       </el-col>
       <el-col :span="1.5">
         <el-button
@@ -54,81 +85,238 @@
           size="mini"
           @click="handleExport"
           v-hasPermi="['business:NEWS:export']"
-        >导出</el-button>
-      </el-col>
-      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+          >导出</el-button
+        >
+      </el-col> -->
+      <right-toolbar
+        :showSearch.sync="showSearch"
+        @queryTable="getList"
+      ></right-toolbar>
     </el-row>
 
-    <el-table v-loading="loading" :data="NEWSList" @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="createTime"/>
-      <el-table-column label="创建人" align="center" prop="createBy"/>
-      <el-table-column label="修改时间" align="center" prop="updateTime"/>
-      <el-table-column label="修改人" align="center" prop="updateBy"/>
-      <el-table-column label="删除标志" align="center" prop="delFlag"/>
-      <el-table-column label="部门ID" align="center" prop="deptId"/>
-      <el-table-column label="标题" align="center" prop="title"/>
-      <el-table-column label="内容" align="center" prop="content"/>
-      <el-table-column label="附件" align="center" prop="fileUrl"/>
-      <el-table-column label="字典类型id(1.要闻咨询,2.政策法规,3.通知公告,4.政策解读)" align="center" prop="type"/>
-      <el-table-column label="字典类型名称" align="center" prop="typeName"/>
-      <el-table-column label="图片" align="center" prop="picture"/>
-      <el-table-column label="状态(0.草稿,1.下架,2.审核中,3.审核驳回,4.已发布,5.已上报)" align="center" prop="status"/>
-      <el-table-column label="操作" align="center" class-name="small-padding fixed-width">
+    <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">
+        <template slot-scope="scope">
+          <div
+            style="
+              white-space: nowrap;
+              overflow: hidden;
+              text-overflow: ellipsis;
+            "
+          >
+            {{ scope.row.title }}
+          </div>
+        </template>
+      </el-table-column>
+      <el-table-column
+        label="编辑日期"
+        align="center"
+        width="120"
+        prop="updateTime"
+      >
+        <template slot-scope="scope">
+          {{ scope.row.updateTime ? scope.row.updateTime.substr(0, 10) : "无" }}
+        </template>
+      </el-table-column>
+      <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) : "无" }}
+        </template>
+      </el-table-column>
+      <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) : "无"
+          }}
+        </template>
+      </el-table-column>
+      <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) : "无"
+          }}
+        </template>
+      </el-table-column>
+      <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="info">审核驳回</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="danger">已下架</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"
+      >
         <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"
-            icon="el-icon-edit"
             @click="handleUpdate(scope.row)"
-            v-hasPermi="['business:NEWS:edit']"
-          >修改</el-button>
+            v-hasPermi="['business:NEWS:remove']"
+            >修改</el-button
+          >
           <el-button
+            v-if="scope.row.status == 5"
             size="mini"
             type="text"
-            icon="el-icon-delete"
-            @click="handleDelete(scope.row)"
+            @click="handleDownOrUp(scope.row)"
             v-hasPermi="['business:NEWS:remove']"
-          >删除</el-button>
+            >发布</el-button
+          >
         </template>
       </el-table-column>
     </el-table>
 
     <pagination
-      v-show="total>0"
+      v-show="total > 0"
       :total="total"
       :page.sync="queryParams.pageNum"
       :limit.sync="queryParams.pageSize"
       @pagination="getList"
     />
 
-    <!-- 添加或修改网站新闻对话框 -->
-    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+    <!--    &lt;!&ndash; 添加或修改网站新闻对话框 &ndash;&gt;-->
+    <el-dialog
+      :title="title"
+      :visible.sync="open"
+      width="1000px"
+      append-to-body
+    >
       <el-form ref="form" :model="form" :rules="rules" label-width="80px">
-        <el-form-item label="内容" prop="content">
-          <editor v-model="form.content" :min-height="192"/>
+        <el-form-item label="标题" prop="title">
+          <el-input v-model="form.title" placeholder="请输入标题"></el-input>
+        </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"
+          >
+            <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)"
+                >
+                  <i class="el-icon-zoom-in"></i>
+                </span>
+
+                <!-- 下载用的,暂时不需要 -->
+                <!-- <span
+                  v-if="!disabled"
+                  class="el-upload-list__item-delete"
+                  @click="handleDownload(file)"
+                >
+                  <i class="el-icon-download"></i>
+                </span> -->
+
+                <!-- 删除图片 -->
+                <span
+                  v-if="!disabled"
+                  class="el-upload-list__item-delete"
+                  @click="handleRemove(file)"
+                >
+                  <i class="el-icon-delete"></i>
+                </span>
+              </span>
+            </div>
+          </el-upload>
         </el-form-item>
-        <el-form-item label="字典类型id(1.要闻咨询,2.政策法规,3.通知公告,4.政策解读)" prop="type">
-          <el-select v-model="form.type" placeholder="请选择字典类型id(1.要闻咨询,2.政策法规,3.通知公告,4.政策解读)" filterable/>
+
+        <!-- <el-form-item label="附件" prop="content"> </el-form-item> -->
+
+        <el-form-item label="新闻内容" prop="content">
+          <editor v-model="form.content" :min-height="192" />
         </el-form-item>
-        <el-form-item label="状态(0.草稿,1.下架,2.审核中,3.审核驳回,4.已发布,5.已上报)"/>
       </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>
+
+    <el-dialog :visible.sync="dialogVisible">
+      <img width="100%" :src="form.picture" alt="" />
+    </el-dialog>
   </div>
 </template>
 
 <script>
-import { listNEWS, getNEWS, delNEWS, addNEWS, updateNEWS } from "@/api/news/NEWS";
+import {
+  listNEWS,
+  getNEWS,
+  delNEWS,
+  addNEWS,
+  updateNEWS,
+  upload,
+} from "@/api/portal/news/NEWS.js";
 
 export default {
   name: "NEWS",
   data() {
     return {
+      fileList: [],
+      dialogVisible: false,
+      disabled: false,
       // 根路径
       baseURL: process.env.VUE_APP_BASE_API,
       // 遮罩层
@@ -163,46 +351,48 @@ export default {
         title: null,
         content: null,
         fileUrl: null,
-        type: null,
+        type: 1, //要闻资讯
         typeName: null,
         picture: null,
-        status: null
+        status: null,
       },
       // 表单参数
       form: {},
       // 表单校验
       rules: {
-        id: [
-          { required: true, message: "主键不能为空", trigger: "blur" }
-        ],
-        delFlag: [
-          { required: true, message: "删除标志不能为空", trigger: "blur" }
-        ],
-        deptId: [
-          { required: true, message: "部门ID不能为空", trigger: "blur" }
-        ],
-        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: "字典类型id(1.要闻咨询,2.政策法规,3.通知公告,4.政策解读)不能为空", trigger: "change" }
+          {
+            required: true,
+            message:
+              "字典类型id(1.要闻咨询,2.政策法规,3.通知公告,4.政策解读)不能为空",
+            trigger: "change",
+          },
         ],
         typeName: [
-          { required: true, message: "字典类型名称不能为空", trigger: "blur" }
-        ],
-        picture: [
-          { required: true, message: "图片不能为空", trigger: "blur" }
+          { required: true, message: "字典类型名称不能为空", trigger: "blur" },
         ],
+        picture: [{ required: true, message: "图片不能为空", trigger: "blur" }],
         status: [
-          { required: true, message: "状态(0.草稿,1.下架,2.审核中,3.审核驳回,4.已发布,5.已上报)不能为空", trigger: "blur" }
-        ]
-      }
+          {
+            required: true,
+            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 },
+      ],
     };
   },
   created() {
@@ -212,12 +402,54 @@ export default {
     /** 查询网站新闻列表 */
     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;
       });
     },
+    httprequest() {},
+    beforeupload(file) {
+      let formData = new FormData();
+      formData.append("file", file);
+      upload(formData).then((res) => {
+        this.$modal.msgSuccess(res.msg);
+        this.form.picture = res.url;
+      });
+    },
+    handleRemove(file) {
+      this.form.picture = "";
+      this.fileList = []
+    },
+    handlePictureCardPreview(file) {
+      this.form.picture = file.url;
+      this.dialogVisible = true;
+    },
+    handleDownload(file) {
+      console.log(file);
+    },
+    handleDownOrUp(row) {
+      //修改发布、下架状态
+      if (row.status == 4) {
+        //已发布
+        row.status = 5;
+        updateNEWS(row).then((response) => {
+          this.$modal.msgSuccess("修改成功");
+          this.open = false;
+          this.getList();
+          this.reset();
+        });
+      } else if (row.status == 5) {
+        //已下架
+        row.status = 4;
+        updateNEWS(row).then((response) => {
+          this.$modal.msgSuccess("修改成功");
+          this.open = false;
+          this.getList();
+          this.reset();
+        });
+      }
+    },
     // 取消按钮
     cancel() {
       this.open = false;
@@ -235,8 +467,9 @@ export default {
         type: null,
         typeName: null,
         picture: null,
-        status: "0"
+        status: "0",
       };
+      this.fileList = [];
       this.resetForm("form");
     },
     /** 搜索按钮操作 */
@@ -251,9 +484,9 @@ export default {
     },
     // 多选框选中数据
     handleSelectionChange(selection) {
-      this.ids = selection.map(item => item.id)
-      this.single = selection.length!==1
-      this.multiple = !selection.length
+      this.ids = selection.map((item) => item.id);
+      this.single = selection.length !== 1;
+      this.multiple = !selection.length;
     },
     /** 新增按钮操作 */
     handleAdd() {
@@ -264,28 +497,33 @@ export default {
     /** 修改按钮操作 */
     handleUpdate(row) {
       this.reset();
-      const id = row.id || this.ids
-      getNEWS(id).then(response => {
+      const id = row.id || this.ids;
+      getNEWS(id).then((response) => {
         this.form = response.data;
         this.open = true;
         this.title = "修改网站新闻";
+        if (this.form.picture) {
+          this.fileList.push({ name: "xxx", url: this.form.picture });
+        }
       });
     },
     /** 提交按钮 */
     submitForm() {
-      this.$refs["form"].validate(valid => {
+      this.$refs["form"].validate((valid) => {
         if (valid) {
           if (this.form.id != null) {
-            updateNEWS(this.form).then(response => {
+            updateNEWS(this.form).then((response) => {
               this.$modal.msgSuccess("修改成功");
               this.open = false;
               this.getList();
+              this.reset();
             });
           } else {
-            addNEWS(this.form).then(response => {
+            addNEWS(this.form).then((response) => {
               this.$modal.msgSuccess("新增成功");
               this.open = false;
               this.getList();
+              this.reset();
             });
           }
         }
@@ -294,19 +532,27 @@ export default {
     /** 删除按钮操作 */
     handleDelete(row) {
       const ids = row.id || this.ids;
-      this.$modal.confirm('是否确认删除网站新闻编号为"' + ids + '"的数据项?').then(function() {
-        return delNEWS(ids);
-      }).then(() => {
-        this.getList();
-        this.$modal.msgSuccess("删除成功");
-      }).catch(() => {});
+      this.$modal
+        .confirm('是否确认删除网站新闻编号为"' + ids + '"的数据项?')
+        .then(function () {
+          return delNEWS(ids);
+        })
+        .then(() => {
+          this.getList();
+          this.$modal.msgSuccess("删除成功");
+        })
+        .catch(() => {});
     },
     /** 导出按钮操作 */
     handleExport() {
-      this.download('business/NEWS/export', {
-        ...this.queryParams
-      }, `NEWS_${new Date().getTime()}.xlsx`)
-    }
-  }
+      this.download(
+        "business/NEWS/export",
+        {
+          ...this.queryParams,
+        },
+        `NEWS_${new Date().getTime()}.xlsx`
+      );
+    },
+  },
 };
 </script>