Преглед изворни кода

移动端幻灯片管理功能

yanliming пре 2 година
родитељ
комит
7a9e23ce1b

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

@@ -0,0 +1,47 @@
+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
+}

+ 12 - 0
src/routers/modules/base.js

@@ -83,6 +83,18 @@ var routers = [
                         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: '移动端首页图'
+                }
+        },
 ]
 
 export default routers;

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

@@ -0,0 +1,247 @@
+
+<template>
+    <el-dialog
+      :visible.sync="showDialog"
+      :title="title"
+      :modal-append-to-body="true"
+      append-to-body
+      style="text-align:left;"
+      width="600px"
+      :close-on-click-modal="false"
+      @close="closeDialog"
+    >
+      <div class="user-panel" v-loading="loading">
+        <el-form ref="form" :model="formModel" inline :rules="ruleValidate" :label-width="'130px'">
+          <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="linkUrl">
+            <el-input v-model="formModel.linkUrl" placeholder="请输入幻灯片链接地址" style="width:300px"></el-input>
+          </el-form-item>
+          <el-form-item label="排序号" prop="sortNo">
+            <el-input-number v-model="formModel.sortNo" placeholder="请输入排序号" style="width:300px"></el-input-number>
+          </el-form-item>
+          <el-form-item label="幻灯片图片" prop="picUrl">
+              <el-upload
+                  class="avatar-uploader"
+                  name="photoFile"
+                  :action="uploadUrl"
+                  :show-file-list="false"
+                  :headers="headers"
+                  :data="uploadData"
+                  :on-success="handleAvatarSuccess"
+                  :before-upload="beforeAvatarUpload"
+                >
+                  <img v-if="fileUrl" :src="fileUrl" class="avatar" />
+                  <i v-else class="el-icon-plus avatar-uploader-icon"></i>
+                </el-upload>
+          </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 mobileBannerInfoApi from "@/api/base/mobileBannerInfo";
+  import dataDictionaryApi from "@/api/sys/dataDictionary";
+  import { getToken } from "@/utils/auth"; // get token from cookie
+  
+  export default {
+    props: ["businessKey", "title"],
+    computed: {
+        ruleValidate (){
+          var rules = null;
+          rules = {
+              name: [
+                  { required: true, message: "幻灯片标题不能为空", trigger: "blur" }
+              ],
+          };
+          return rules;
+        }
+    },
+    data() {
+      return {
+        showDialog: true,
+        loading: false,
+        submitting: false,
+        formModel: {
+          id:"",
+          name:"",
+          parentId:"",
+          classifyArr:"",
+          rangeTime:"",
+          linkPicUrl:"",
+        },
+        templateList: [],
+        defaultPriceList:[],
+        chargingStationResult:[],
+        newsTypeList:[],
+        treeData: [],
+        props: {
+          // 配置项(必选)
+          value: "id",
+          label: "name",
+          children: "children"
+        },
+        //上传地址
+        uploadUrl: Constant.serverUrl + "/uploadPicture",
+        uploadData: {
+          subFolder: "mobileBannerInfo",
+        },
+        fileUrl: "",
+        headers: {
+          Authorization: getToken(),
+        },
+      };
+    },
+    methods: {
+      closeDialog() {
+        this.$emit("close", false);
+      },
+      handleAvatarSuccess(res, file) {
+        var self = this;
+        self.formModel.picUrl = res.data;
+        self.fileUrl =
+          res.data + "?x-oss-process=image/resize,m_lfit,h_300,w_300";
+      },
+      handleAvatarSuccess2(res, file) {
+        var self = this;
+        self.formModel.linkPicUrl = res.data;
+        self.fileUrl2 =
+          res.data + "?x-oss-process=image/resize,m_lfit,h_300,w_300";
+      },
+      beforeAvatarUpload(file) {
+        const isLt2M = file.size / 1024 / 1024 < 2;
+  
+        if (!isLt2M) {
+          this.$message.error("上传头像图片大小不能超过 2MB!");
+        }
+        return isLt2M;
+      },
+      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() {
+      var self = this;
+  
+      var formData = new FormData();
+      formData.append("catalogName", "幻灯片分类");
+      dataDictionaryApi.findByCatalogName(formData).then((response) => {
+        var jsonData = response.data;
+        self.newsTypeList = jsonData.data;
+      });
+  
+  
+      //self.loadTree();
+    },
+    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;
+            let picUrl = self.formModel.picUrl;
+            if (picUrl != null) {
+              self.fileUrl = picUrl 
+            }
+  
+            let linkPicUrl = self.formModel.linkPicUrl;
+            if (linkPicUrl != null) {
+              self.fileUrl2 = linkPicUrl 
+            }
+          } else {
+            self.$message.error(jsonData.message + "");
+          }
+        })
+        .catch((error) => {
+          self.$message.error(error + "");
+        });
+    },
+  };
+  </script>
+  
+  <style rel="stylesheet/scss" lang="scss" scoped>
+  .user-panel {
+    margin: 10px auto;
+  }
+  .input-form-main{
+      width: 300px;
+  }
+  .link-span{
+      margin-right: 20px;
+  }
+  .el-form-item{
+      margin-bottom: 25px;
+  }
+  
+   .avatar-uploader .el-upload {
+      border: 1px dashed #d9d9d9;
+      border-radius: 6px;
+      cursor: pointer;
+      position: relative;
+      overflow: hidden;
+    }
+    .avatar-uploader .el-upload:hover {
+      border-color: #409EFF;
+    }
+    .avatar-uploader-icon {
+      font-size: 28px;
+      color: #8c939d;
+      width: 178px;
+      height: 178px;
+      line-height: 178px;
+      text-align: center;
+    }
+    .avatar {
+      width: 178px;
+      height: 178px;
+      display: block;
+    }
+  </style>

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

@@ -0,0 +1,402 @@
+<template>
+    <div style="padding-left: 5px">
+        <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="/base/mobileBannerInfo-list">移动端首页图</a>
+        </el-breadcrumb-item>
+      </el-breadcrumb>
+      <el-divider></el-divider>
+      <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>
+          <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-remove"
+          :disabled="multipleSelection.length == 0"
+          @click="handleBatchDelete"
+          >删除选中项</el-button
+        >
+      </el-row>
+      <el-table
+        ref="formTable"
+        :data="tableData"
+        v-loading="loading"
+        stripe
+        :height="tableHeight"
+        @sort-change="sortChange"
+        @selection-change="handleSelectionChange"
+      >
+        <el-table-column type="selection" width="55"></el-table-column>
+        <el-table-column
+          prop="name"
+          label="幻灯片标题"
+          width="200"
+        ></el-table-column>
+        <el-table-column
+          prop="sortNo"
+          label="排序号"
+        ></el-table-column>
+        <el-table-column    prop="picUrl"   label="幻灯片图片"  width="150">
+            <template slot-scope="{ row }">
+              <a v-if="row.picUrl" :href="row.picUrl" target="_blank">
+                <el-image
+                  style="width: 50px; height: 50px"
+                  :src="row.picUrl"
+                  fit="fit"></el-image>
+              </a>
+            </template>
+        </el-table-column>
+        <!-- <el-table-column prop="enabled" label="审核状态">
+            <template slot-scope="{ row }">
+                <span v-if="row.enabled" style="color:green">已审核</span>
+                <span v-else style="color:red">未审核</span>
+            </template>
+        </el-table-column> -->
+        <el-table-column
+          prop="createTime"
+          label="创建时间"
+           width="150"
+        ></el-table-column>
+        <el-table-column label="操作">
+          <template slot-scope="{ row }">
+            <el-row>
+              <el-col>
+                <el-link
+                  type="primary"
+                  :underline="false"
+                  @click="handleEdit(row)"
+                  >编辑</el-link
+                >-
+                <!-- <el-link
+                    type="success"
+                    :underline="false"
+                    @click="handleCheck(row,true)"
+                    >审核通过</el-link
+                >-
+                <el-link
+                    type="danger"
+                    :underline="false"
+                    @click="handleCheck(row,false)"
+                    >审核不通过</el-link
+                >- -->
+                <el-link
+                  type="danger"
+                  :underline="false"
+                  @click="handleDelete(row)"
+                  >删除</el-link>
+              </el-col>
+            </el-row>
+          </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 mobileBannerInfoDetail from "./mobileBannerInfo-detail";
+  import mobileBannerInfoApi from "@/api/base/mobileBannerInfo";
+  
+  export default {
+    name: "chargingMobileBannerInfoList",
+    data() {
+      var self = this;
+      return {
+        queryModel: {
+          name: "",
+        },
+        formModel:{
+          id:"",
+          enabled:"",
+        },
+        loading: false,
+        tableData: [],
+        treeData: [],
+        pageIndex: 1,
+        pageSize: 10,
+        totalPages: 0,
+        totalElements: 0,
+        field: "",
+        direction: "",
+        pageSizeList: [10, 20, 30],
+        multipleSelection: [],
+        showModal: false,
+        modalTitle: "",
+        businessKey: "",
+        tableHeight: 300,
+        showDeviceModal: false,
+        companyId: "",
+        qrCode: "",
+        companyResult: [],
+        props: {
+          // 配置项(必选)
+          value: "id",
+          label: "name",
+          children: "children",
+        },
+        batchImportVisible: false,
+        batchImportFileList: [],
+        xlsLoading: false,
+        sceneData: [],
+        typeData: [],
+        deviceRelationTitle: "",
+        showIconModal: false,
+        iconModalTitle: "",
+      };
+    },
+    created() {
+  
+      this.changePage(1);
+    },
+    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);
+  
+        formData.append("name", self.queryModel.name);
+  
+        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;
+            //45为分页栏的高度
+            //页面高度-列表上面的高度-分页栏高度
+            self.tableHeight =
+              window.innerHeight - self.$refs.formTable.$el.offsetTop - 100;
+          })
+          .catch((error) => {
+            self.loading = false;
+            // self.$message.error(error + "");
+          });
+      },
+      pageSizeChange(pageSize) {
+        this.pageSize = pageSize;
+      },
+      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();
+      },
+      handleCheck(record,checked){
+          var self = this;
+  
+          var checkText = "";
+  
+          if(checked){
+              checkText="审核通过?";
+          }
+          else{
+              checkText="审核不通过?";
+          }
+  
+          self
+          .$confirm(checkText, "提示", {
+            confirmButtonText: "确定",
+            cancelButtonText: "取消",
+            type: "warning",
+          })
+          .then(() => {
+              (function () {
+  
+                  self.formModel.id = record.id
+  
+                  if(checked){
+                      self.formModel.enabled = true
+                  }
+                  else{
+                      self.formModel.enabled = false
+                  }
+  
+                  return mobileBannerInfoApi.checkBannerInfo(self.formModel);
+                  
+              })().then(function (response) {
+                  var jsonData = response.data;
+  
+                  if (jsonData.result) {
+                      self.$message({
+                          message: "审核成功!",
+                          type: "success",
+                      });
+  
+                      self.changePage(self.pageIndex);
+  
+                  } else {
+                  self.$message({
+                      message: jsonData.message + "",
+                      type: "warning",
+                  });
+                  }
+              });
+          })
+      },
+      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;
+        this.showDeviceModal = false;
+  
+        if (refreshed) {
+          this.changePage(this.pageIndex);
+        }
+      },
+    },
+    mounted: function () {},
+    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>