Explorar o código

移动端广告

xiao547607 %!s(int64=4) %!d(string=hai) anos
pai
achega
23073a69ee

+ 46 - 0
src/api/base/mobileBannerInfo.js

@@ -0,0 +1,46 @@
+import request from '@/utils/request'
+import constant from '@/constant'
+
+function pageList(formData){
+  return request.post(constant.serverUrl + "/base/mobileBannerInfo/pageList", formData);
+}
+
+function create(){
+  return request.get(constant.serverUrl + "/base/mobileBannerInfo/create");
+}
+
+function edit(id){
+  return request.get(constant.serverUrl + "/base/mobileBannerInfo/edit/" + id);
+}
+
+function add(formModel){
+  return request.post(constant.serverUrl + "/base/mobileBannerInfo/add", formModel,{
+    headers: {
+      "Content-Type": "application/json"
+    }
+  });
+}
+
+function update(formModel){  
+  return request.post(constant.serverUrl + "/base/mobileBannerInfo/update", formModel,{
+    headers: {
+      "Content-Type": "application/json"
+    }
+  });
+}
+
+function remove(id){
+  return request.post(constant.serverUrl + "/base/mobileBannerInfo/delete/" + id);
+}
+
+function batchRemove(idList){
+  return request.post(constant.serverUrl + "/base/mobileBannerInfo/batchDelete",idList,{
+    headers: {
+      "Content-Type": "application/json"
+    }
+  });
+}
+
+export default {
+  pageList,create,edit,add,update,remove,batchRemove
+}

+ 16 - 4
src/routers/modules/base.js

@@ -7,8 +7,8 @@ var routers = [
         // which is lazy-loaded when the route is visited.
         component: () => import('@/views/base/orderInfo-list.vue'),
         meta: {
-                roles: ["admin"],
-                title: '订单管理'
+            roles: ["admin"],
+            title: '订单管理'
         }
     },
     {
@@ -19,8 +19,20 @@ var routers = [
         // which is lazy-loaded when the route is visited.
         component: () => import('@/views/base/paymentInfo-list.vue'),
         meta: {
-                roles: ["admin"],
-                title: '收款账户管理'
+            roles: ["admin"],
+            title: '收款账户管理'
+        }
+    },
+    {
+        path: '/base/mobileBannerInfo/list',
+        name: 'baseMobileBannerInfoList',
+        // route level code-splitting
+        // this generates a separate chunk (about.[hash].js) for this route
+        // which is lazy-loaded when the route is visited.
+        component: () => import('@/views/base/mobileBannerInfo-list.vue'),
+        meta: {
+            roles: ["admin"],
+            title: '移动端广告栏位管理'
         }
     },
 ]

+ 165 - 0
src/views/base/mobileBannerInfo-detail.vue

@@ -0,0 +1,165 @@
+
+<style scoped>
+.user-panel {
+  margin: 10px auto;
+}
+</style>
+<template>
+  <el-dialog
+    :visible.sync="showDialog"
+    :title="title"
+    :modal-append-to-body="false"
+    style="text-align:left;"
+    @close="closeDialog"
+  >
+    <div class="user-panel" v-loading="loading">
+      <el-form ref="form" :model="formModel" :rules="ruleValidate" :label-width="'150px'">
+        <el-form-item label="幻灯片标题" prop="name">
+          <el-input v-model="formModel.name" placeholder="请输入幻灯片标题" style="width:300px"></el-input>
+        </el-form-item>
+        <el-form-item label="幻灯片分类" prop="classify">
+          <el-select v-model="formModel.classify" filterable placeholder="请选择" style="width:300px">
+            <el-option
+              v-for="item in classifyList"
+              :key="item.value"
+              :label="item.name"
+              :value="item.value"
+            ></el-option>
+          </el-select>
+        </el-form-item>
+        <el-form-item label="序号" prop="name">
+          <el-input-number v-model="formModel.sortNo" placeholder="请输入序号"></el-input-number>
+        </el-form-item>
+        <el-form-item label="审核状态" prop="enabled">
+            <el-switch  v-model="formModel.enabled" 
+            active-color="#13ce66" inactive-color="#ff4949"
+            active-text="已审核" inactive-text="未审核"></el-switch>
+        </el-form-item>
+        <el-form-item label="幻灯片链接地址" prop="linkUrl">
+          <el-input v-model="formModel.linkUrl" placeholder="请输入幻灯片链接地址" style="width:300px"></el-input>
+        </el-form-item>
+        <el-form-item label="幻灯片图片" prop="picUrl">
+          <upload-image v-model="formModel.picUrl" sub-folder="mobileBanner" :size="300"></upload-image>
+        </el-form-item>
+      </el-form>
+    </div>
+    <span slot="footer" class="dialog-footer">
+      <el-button @click="closeDialog">取 消</el-button>
+      <el-button type="primary" @click="handleSubmit" :loading="submitting">确 定</el-button>
+    </span>
+  </el-dialog>
+</template>
+<script>
+import Constant from "@/constant";
+import UploadImage from "@/components/UploadImage";
+
+import mobileBannerInfoApi from "@/api/base/mobileBannerInfo";
+import dataDictionaryApi from "@/api/sys/dataDictionary";
+
+export default {
+  props: ["businessKey", "title"],
+  data() {
+    return {
+      ruleValidate: {
+        name: [
+          { required: true, message: "幻灯片标题不能为空", trigger: "blur" },
+        ],
+        classify: [
+          { required: true, message: "幻灯片分类不能为空", trigger: "blur" },
+        ],
+        linkUrl: [
+          {
+            required: true,
+            message: "幻灯片链接地址不能为空",
+            trigger: "blur",
+          },
+        ],
+        picUrl: [
+          { required: true, message: "幻灯片图片不能为空", trigger: "blur" },
+        ],
+      },
+      showDialog: true,
+      loading: false,
+      submitting: false,
+      formModel: {},
+      classifyList: [],
+      goodsTypeList: []
+    };
+  },
+  methods: {
+    closeDialog() {
+      this.$emit("close", false);
+    },
+    handleSubmit() {
+      var self = this;
+
+      this.$refs["form"].validate((valid) => {
+        if (valid) {
+          (function () {
+            var id = self.formModel.id;
+
+            if (id == null || id.length == 0) {
+              return mobileBannerInfoApi.add(self.formModel);
+            } else {
+              return mobileBannerInfoApi.update(self.formModel);
+            }
+          })().then(function (response) {
+            var jsonData = response.data;
+
+            if (jsonData.result) {
+              self.$message({
+                message: "保存成功!",
+                type: "success",
+              });
+
+              self.$emit("close", true);
+            } else {
+              self.$message({
+                message: jsonData.message + "",
+                type: "warning",
+              });
+
+              self.$emit("close", false);
+            }
+          });
+        }
+      });
+    },
+  },
+  created: function () {
+    dataDictionaryApi
+      .findByCatalogName({ catalogName: "移动端广告栏分类" })
+      .then((response) => {
+        var jsonData = response.data;
+        this.classifyList = jsonData.data;
+      });
+  },
+  mounted: function () {
+    var self = this;
+
+    (function () {
+      if (self.businessKey.length == 0) {
+        return mobileBannerInfoApi.create();
+      } else {
+        return mobileBannerInfoApi.edit(self.businessKey);
+      }
+    })()
+      .then((response) => {
+        var jsonData = response.data;
+        self.loading = false;
+
+        if (jsonData.result) {
+          self.formModel = jsonData.data;
+        } else {
+          self.$message.error(jsonData.message + "");
+        }
+      })
+      .catch((error) => {
+        self.$message.error(error + "");
+      });
+  },
+  components: {
+    "upload-image": UploadImage
+  }
+};
+</script>

+ 338 - 0
src/views/base/mobileBannerInfo-list.vue

@@ -0,0 +1,338 @@
+<template>
+  <div>
+    <el-breadcrumb separator=">">
+      <el-breadcrumb-item :to="{ path: '/' }">首页</el-breadcrumb-item>
+      <el-breadcrumb-item>
+        <a href="#">系统管理</a>
+      </el-breadcrumb-item>
+      <el-breadcrumb-item>
+        <a href="/#">广告栏管理</a>
+      </el-breadcrumb-item>
+    </el-breadcrumb>
+    <el-divider></el-divider>
+    <!--
+      要resetFields起作用,必须配置:model和prop
+    -->
+    <el-form ref="queryForm" :model="queryModel" inline class="demo-form-inline">
+      <el-form-item label="幻灯片标题" prop="name">
+        <el-input type="text" size="mini" v-model="queryModel.name"></el-input>
+      </el-form-item>
+      <el-form-item label="幻灯片分类" prop="classify">
+        <el-select
+          v-model="queryModel.classify"
+          size="mini"
+          filterable
+          placeholder="请选择"
+          style="width:150px"
+        >
+          <el-option
+            v-for="item in classifyList"
+            :key="item.value"
+            :label="item.name"
+            :value="item.value"
+          ></el-option>
+        </el-select>
+      </el-form-item>
+      <el-form-item>
+        <el-button
+          type="primary"
+          size="mini"
+          icon="ios-search"
+          @click="changePage(1)"
+          :loading="loading"
+        >查询</el-button>&nbsp;
+        <el-button
+          type="info"
+          size="mini"
+          style="margin-left: 8px"
+          @click="handleReset('queryForm')"
+        >重置</el-button>&nbsp;
+      </el-form-item>
+    </el-form>
+    <el-divider></el-divider>
+    <el-row class="button-group">
+      <el-button type="primary" size="small" plain icon="el-icon-circle-plus" @click="handleAdd">新增</el-button>
+      <el-button
+        type="primary"
+        size="small"
+        plain
+        icon="el-icon-circle-plus"
+        :disabled="multipleSelection.length==0"
+        @click="handleBatchDelete"
+      >删除选中项</el-button>
+    </el-row>
+    <el-table
+      :data="tableData"
+      style="min-height:400px;"
+      v-loading="loading"
+      stripe
+      @sort-change="sortChange"
+      @selection-change="handleSelectionChange"
+    >
+      <el-table-column type="selection" width="55"></el-table-column>
+      <el-table-column prop="sortNo" label="序号" width="55"></el-table-column>
+      <el-table-column prop="picUrl" sort-by="pic_url" label="幻灯片图片" sortable="custom" width="200">
+        <template slot-scope="{row}">
+          <img 
+            :src="row.picUrl+'?x-oss-process=image/resize,m_lfit,w_180'"
+            :key="row.id"
+            style="width:180px,fit-object:cover;"
+          />
+        </template>
+      </el-table-column>
+      <el-table-column prop="name" sort-by="name_" label="幻灯片标题" sortable="custom" width="180"></el-table-column>
+      <el-table-column
+        prop="classifyN"
+        sort-by="classify_"
+        label="分类"
+        sortable="custom"
+        width="100"
+      ></el-table-column>
+      <el-table-column prop="enabled" label="审核状态" sortable="custom" width="200">
+        <template slot-scope="{row}">
+            <el-switch  v-model="row.enabled" active-color="#13ce66" inactive-color="#ff4949" @change="updateEnabled(row)"></el-switch>
+        </template>
+      </el-table-column>
+      <el-table-column
+        prop="linkUrl"
+        sort-by="link_url"
+        label="幻灯片链接地址"
+        sortable="custom"
+        width="180"
+      ></el-table-column>
+      <el-table-column
+        prop="createTime"
+        sort-by="create_time"
+        label="创建时间"
+        sortable="custom"
+        width="180"
+      ></el-table-column>
+      <el-table-column
+        prop="updateTime"
+        sort-by="update_time"
+        label="更新时间"
+        sortable="custom"
+        width="180"
+      ></el-table-column>
+      <el-table-column label="操作" width="200" fixed="right">
+        <template slot-scope="{row}">
+          <el-button size="mini" type="warning" @click="handleEdit(row)">编辑</el-button>
+          <el-button size="mini" type="danger" @click="handleDelete(row)">删除</el-button>
+        </template>
+      </el-table-column>
+    </el-table>
+    <el-pagination
+      :current-page.sync="pageIndex"
+      :total="totalElements"
+      :page-sizes="pageSizeList"
+      @current-change="changePage"
+      @size-change="pageSizeChange"
+      layout="total, sizes, prev, pager, next, jumper"
+    ></el-pagination>
+    <mobileBannerInfo-detail
+      v-if="showModal"
+      :businessKey="businessKey"
+      :title="modalTitle"
+      @close="onDetailModalClose"
+    ></mobileBannerInfo-detail>
+  </div>
+</template>
+<script>
+import Constant from "@/constant";
+import MobileBannerInfoDetail from "./mobileBannerInfo-detail";
+import mobileBannerInfoApi from "@/api/base/mobileBannerInfo";
+import dataDictionaryApi from "@/api/sys/dataDictionary";
+
+import NProgress from "nprogress"; // progress bar
+import "nprogress/nprogress.css"; // progress bar style
+
+export default {
+  name: 'baseMobileBannerInfoList',
+  data() {
+    var self = this;
+
+    return {
+      queryModel: {
+        name: "",
+        classify: "",
+      },
+      loading: false,
+      tableData: [],
+      pageIndex: 1,
+      pageSize: 10,
+      totalPages: 0,
+      totalElements: 0,
+      field: "",
+      direction: "",
+      pageSizeList: [10, 20, 30],
+      multipleSelection: [],
+      showModal: false,
+      modalTitle: "",
+      businessKey: "",
+      classifyList: []
+    };
+  },
+  methods: {
+    changePage(pageIndex) {
+      var self = this;
+
+      self.loading = true;
+
+      self.pageIndex = pageIndex;
+      var formData = new FormData();
+
+      formData.append("pageIndex", self.pageIndex);
+      formData.append("pageSize", self.pageSize);
+
+      if (this.queryModel.name != null) {
+        formData.append("name", self.queryModel.name);
+      }
+
+      if (this.queryModel.classify != null) {
+        formData.append("classify", self.queryModel.classify);
+      }
+
+      mobileBannerInfoApi
+        .pageList(formData)
+        .then(function (response) {
+          self.loading = false;
+
+          var jsonData = response.data.data;
+
+          self.tableData = jsonData.data;
+          self.totalPages = jsonData.totalPages;
+          self.totalElements = jsonData.recordsTotal;
+        })
+        .catch((error) => {
+          self.loading = false;
+        });
+    },
+    pageSizeChange(pageSize) {
+      this.pageSize = pageSize;
+
+      this.$nextTick(() => {
+        this.changePage(this.pageIndex);
+      });
+    },
+    sortChange(data) {
+      this.field = data.column.field;
+       this.direction = data.order == "ascending" ? "asc" : "desc";
+
+      this.changePage(this.pageIndex);
+    },
+    handleSelectionChange(val) {
+      this.multipleSelection = val;
+    },
+    handleReset(name) {
+      this.$refs[name].resetFields();
+    },
+    handleAdd() {
+      this.modalTitle = "新增";
+      this.businessKey = "";
+      this.showModal = true;
+    },
+    handleEdit(record) {
+      this.modalTitle = "编辑";
+      this.businessKey = record.id;
+      this.showModal = true;
+    },
+    handleDelete(record) {
+      var self = this;
+
+      self
+        .$confirm("是否确认删除?", "提示", {
+          confirmButtonText: "确定",
+          cancelButtonText: "取消",
+          type: "warning",
+        })
+        .then(() => {
+          mobileBannerInfoApi.remove(record.id).then(function (response) {
+            var jsonData = response.data;
+
+            if (jsonData.result) {
+              // var index = self.tableData.indexOf(record);
+              // self.tableData.splice(index, 1);
+              self.changePage(self.pageIndex);
+
+              self.$message({
+                type: "success",
+                message: "删除成功!",
+              });
+            }
+          });
+        });
+    },
+    handleBatchDelete() {
+      var self = this;
+
+      var idList = this.multipleSelection.map((record) => {
+        return record.id;
+      });
+
+      this.$confirm("是否确认删除选中项?", "提示", {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      }).then(() => {
+        mobileBannerInfoApi.batchRemove(idList).then(function (response) {
+          var jsonData = response.data;
+
+          if (jsonData.result) {
+            self.changePage(self.pageIndex);
+
+            self.$message({
+              type: "success",
+              message: "删除成功!",
+            });
+          }
+        });
+      });
+    },
+    onDetailModalClose(refreshed) {
+      //保存成功后回调
+      this.showModal = false;
+
+      if (refreshed) {
+        this.changePage(this.pageIndex);
+      }
+    },
+    updateEnabled(row) {
+      mobileBannerInfoApi.update(row);
+    }
+  },
+  created: function () {
+    dataDictionaryApi
+      .findByCatalogName({ catalogName: "移动端广告栏分类" })
+      .then((response) => {
+        var jsonData = response.data;
+        this.classifyList = jsonData.data;
+      });
+  },
+  mounted: function () {
+    this.changePage(1);
+  },
+  components: {
+    "mobileBannerInfo-detail": MobileBannerInfoDetail,
+  },
+};
+</script>
+<style lang="scss" scoped>
+.el-breadcrumb {
+  margin: 10px;
+  line-height: 20px;
+}
+
+.el-divider {
+  margin: 5px 0;
+}
+
+.demo-form-inline {
+  margin-left: 10px;
+  text-align: left;
+}
+
+.button-group {
+  margin-left: 10px;
+  text-align: left;
+}
+</style>