Browse Source

添加文章管理

pangqijun 1 year ago
parent
commit
ec6a219d7d
3 changed files with 329 additions and 22 deletions
  1. 50 0
      src/api/platform/article.js
  2. 43 22
      src/views/platform/ads.vue
  3. 236 0
      src/views/platform/article.vue

+ 50 - 0
src/api/platform/article.js

@@ -0,0 +1,50 @@
+import request from '@/router/axios';
+
+export const getList = (current, size, params) => {
+  return request({
+    url: '/api/platform/article/list',
+    method: 'get',
+    params: {
+      ...params,
+      current,
+      size,
+    }
+  })
+}
+
+export const getDetail = (id) => {
+  return request({
+    url: '/api/platform/article/detail',
+    method: 'get',
+    params: {
+      id
+    }
+  })
+}
+
+export const remove = (ids) => {
+  return request({
+    url: '/api/platform/article/remove',
+    method: 'post',
+    params: {
+      ids,
+    }
+  })
+}
+
+export const add = (row) => {
+  return request({
+    url: '/api/platform/article/submit',
+    method: 'post',
+    data: row
+  })
+}
+
+export const update = (row) => {
+  return request({
+    url: '/api/platform/article/submit',
+    method: 'post',
+    data: row
+  })
+}
+

+ 43 - 22
src/views/platform/ads.vue

@@ -137,7 +137,7 @@
             },
             {
               label: "团购",
-              prop: "dataId",
+              prop: "grouponId",
               addDisplay: false,
               editDisplay: false,
               viewDisplay: false,
@@ -157,6 +157,28 @@
                 trigger: "blur"
               }]
             },
+            {
+              label: "文章",
+              prop: "articleId",
+              addDisplay: false,
+              editDisplay: false,
+              viewDisplay: false,
+              hide: true,
+              type: "select",
+              dicUrl: "/api/platform/article/list?current=1&size=100",
+              props: {
+                label: "title",
+                value: "id"
+              },
+              dicFormatter: function (res) {
+                return res.data.records;
+              },
+              rules: [{
+                required: true,
+                message: "请选择团购",
+                trigger: "blur"
+              }]
+            },
             {
               label: "排序",
               prop: "sort",
@@ -195,24 +217,6 @@
               },
               action: "/api/blade-resource/oss/endpoint/put-file-attach"
             },
-            {
-              label: "文章内容",
-              prop: "content",
-              addDisplay: false,
-              editDisplay: false,
-              viewDisplay: false,
-              component: 'AvueUeditor',
-              options: {
-                action: '/api/blade-resource/oss/endpoint/put-file',
-                props: {
-                  res: "data",
-                  url: "link",
-                }
-              },
-              hide: true,
-              minRows: 6,
-              span: 24,
-            }
           ]
         },
         data: []
@@ -238,9 +242,8 @@
     },
     created() {
       this.option.column[3].change = function (column) {
-        console.log("created ... ", column.value)
-        const content = this.findObject(this.option.column, "content");
-        const dataId = this.findObject(this.option.column, "dataId");
+        const content = this.findObject(this.option.column, "articleId");
+        const dataId = this.findObject(this.option.column, "grouponId");
         if (column.value === 1) {
           this.$set(content, 'addDisplay', false)
           this.$set(content, 'editDisplay', false)
@@ -269,6 +272,12 @@
     },
     methods: {
       rowSave(row, done, loading) {
+        if (row.skipType == 2) {
+          row.dataId = row.articleId;
+        }
+        if (row.skipType == 3) {
+          row.dataId = row.grouponId;
+        }
         add(row).then(() => {
           this.onLoad(this.page);
           this.$message({
@@ -282,6 +291,12 @@
         });
       },
       rowUpdate(row, index, done, loading) {
+        if (row.skipType == 2) {
+          row.dataId = row.articleId;
+        }
+        if (row.skipType == 3) {
+          row.dataId = row.grouponId;
+        }
         update(row).then(() => {
           this.onLoad(this.page);
           this.$message({
@@ -338,6 +353,12 @@
           getDetail(this.form.id).then(res => {
             this.form = res.data.data;
             this.form.attachUrl = this.form.imageUrl;
+            if (this.form.skipType == 2) {
+              this.form.articleId = this.form.dataId;
+            }
+            if (this.form.skipType == 3) {
+              this.form.grouponId = this.form.dataId;
+            }
           });
         }
         done();

+ 236 - 0
src/views/platform/article.vue

@@ -0,0 +1,236 @@
+<template>
+  <basic-container>
+    <avue-crud :option="option"
+               :table-loading="loading"
+               :data="data"
+               :page.sync="page"
+               :permission="permissionList"
+               :before-open="beforeOpen"
+               v-model="form"
+               ref="crud"
+               @row-update="rowUpdate"
+               @row-save="rowSave"
+               @row-del="rowDel"
+               @search-change="searchChange"
+               @search-reset="searchReset"
+               @selection-change="selectionChange"
+               @current-change="currentChange"
+               @size-change="sizeChange"
+               @refresh-change="refreshChange"
+               @on-load="onLoad">
+      <template slot="menuLeft">
+        <el-button type="danger"
+                   size="small"
+                   icon="el-icon-delete"
+                   plain
+                   v-if="permission.article_delete"
+                   @click="handleDelete">删 除
+        </el-button>
+      </template>
+    </avue-crud>
+  </basic-container>
+</template>
+
+<script>
+  import {getList, getDetail, add, update, remove} from "@/api/platform/article";
+  import {mapGetters} from "vuex";
+
+  export default {
+    data() {
+      return {
+        form: {},
+        query: {},
+        loading: true,
+        page: {
+          pageSize: 10,
+          currentPage: 1,
+          total: 0
+        },
+        selectionList: [],
+        option: {
+          height:'auto',
+          calcHeight: 30,
+          tip: false,
+          searchShow: true,
+          searchMenuSpan: 6,
+          border: true,
+          index: true,
+          viewBtn: true,
+          selection: true,
+          dialogClickModal: false,
+          column: [
+            {
+              label: "标题",
+              prop: "title",
+              rules: [{
+                required: true,
+                message: "请输入标题",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "内容",
+              prop: "content",
+              component: 'AvueUeditor',
+              options: {
+                action: '/api/blade-resource/oss/endpoint/put-file',
+                props: {
+                  res: "data",
+                  url: "link",
+                }
+              },
+              hide: true,
+              minRows: 6,
+              span: 24,
+              rules: [{
+                required: true,
+                message: "请输入内容",
+                trigger: "blur"
+              }]
+            },
+            {
+              label: "创建时间",
+              prop: "createTime",
+              addDisplay: false,
+              editDisplay: false,
+              viewDisplay: false,
+            },
+          ]
+        },
+        data: []
+      };
+    },
+    computed: {
+      ...mapGetters(["permission"]),
+      permissionList() {
+        return {
+          addBtn: this.vaildData(this.permission.article_add, false),
+          viewBtn: this.vaildData(this.permission.article_view, false),
+          delBtn: this.vaildData(this.permission.article_delete, false),
+          editBtn: this.vaildData(this.permission.article_edit, false)
+        };
+      },
+      ids() {
+        let ids = [];
+        this.selectionList.forEach(ele => {
+          ids.push(ele.id);
+        });
+        return ids.join(",");
+      }
+    },
+    methods: {
+      rowSave(row, done, loading) {
+        add(row).then(() => {
+          this.onLoad(this.page);
+          this.$message({
+            type: "success",
+            message: "操作成功!"
+          });
+          done();
+        }, error => {
+          loading();
+          window.console.log(error);
+        });
+      },
+      rowUpdate(row, index, done, loading) {
+        update(row).then(() => {
+          this.onLoad(this.page);
+          this.$message({
+            type: "success",
+            message: "操作成功!"
+          });
+          done();
+        }, error => {
+          loading();
+          console.log(error);
+        });
+      },
+      rowDel(row) {
+        this.$confirm("确定将选择数据删除?", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        })
+          .then(() => {
+            return remove(row.id);
+          })
+          .then(() => {
+            this.onLoad(this.page);
+            this.$message({
+              type: "success",
+              message: "操作成功!"
+            });
+          });
+      },
+      handleDelete() {
+        if (this.selectionList.length === 0) {
+          this.$message.warning("请选择至少一条数据");
+          return;
+        }
+        this.$confirm("确定将选择数据删除?", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning"
+        })
+          .then(() => {
+            return remove(this.ids);
+          })
+          .then(() => {
+            this.onLoad(this.page);
+            this.$message({
+              type: "success",
+              message: "操作成功!"
+            });
+            this.$refs.crud.toggleSelection();
+          });
+      },
+      beforeOpen(done, type) {
+        if (["edit", "view"].includes(type)) {
+          getDetail(this.form.id).then(res => {
+            this.form = res.data.data;
+          });
+        }
+        done();
+      },
+      searchReset() {
+        this.query = {};
+        this.onLoad(this.page);
+      },
+      searchChange(params, done) {
+        this.query = params;
+        this.page.currentPage = 1;
+        this.onLoad(this.page, params);
+        done();
+      },
+      selectionChange(list) {
+        this.selectionList = list;
+      },
+      selectionClear() {
+        this.selectionList = [];
+        this.$refs.crud.toggleSelection();
+      },
+      currentChange(currentPage){
+        this.page.currentPage = currentPage;
+      },
+      sizeChange(pageSize){
+        this.page.pageSize = pageSize;
+      },
+      refreshChange() {
+        this.onLoad(this.page, this.query);
+      },
+      onLoad(page, params = {}) {
+        this.loading = true;
+        getList(page.currentPage, page.pageSize, Object.assign(params, this.query)).then(res => {
+          const data = res.data.data;
+          this.page.total = data.total;
+          this.data = data.records;
+          this.loading = false;
+          this.selectionClear();
+        });
+      }
+    }
+  };
+</script>
+
+<style>
+</style>