Parcourir la source

页面修改上传

wyling il y a 4 ans
Parent
commit
e1337f12e2

+ 5 - 0
.prettierrc

@@ -0,0 +1,5 @@
+{
+  "semi": false,
+  "singleQuote": true,
+  "printWidth": 150
+}

+ 53 - 0
src/api/carousel/carousel.js

@@ -0,0 +1,53 @@
+import request from '@/utils/request'
+
+// 查询轮播图列表
+export function listCarousel(query) {
+  return request({
+    url: '/pc/carousel/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询轮播图详细
+export function getCarousel(id) {
+  return request({
+    url: '/pc/carousel/' + id,
+    method: 'get'
+  })
+}
+
+// 新增轮播图
+export function addCarousel(data) {
+  return request({
+    url: '/pc/carousel',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改轮播图
+export function updateCarousel(data) {
+  return request({
+    url: '/pc/carousel',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除轮播图
+export function delCarousel(id) {
+  return request({
+    url: '/pc/carousel/' + id,
+    method: 'delete'
+  })
+}
+
+// 导出轮播图
+export function exportCarousel(query) {
+  return request({
+    url: '/pc/carousel/export',
+    method: 'get',
+    params: query
+  })
+}

+ 302 - 0
src/views/carousel/carousel/index.vue

@@ -0,0 +1,302 @@
+<template>
+  <div class="app-container">
+    <el-form :model="queryParams" ref="queryForm" :inline="true" v-show="showSearch" label-width="68px">
+      <el-form-item label="活动名称" prop="pictureName">
+        <el-input v-model="queryParams.pictureName" placeholder="请输入图片名称" clearable size="small" @keyup.enter.native="handleQuery" />
+      </el-form-item>
+      <el-form-item>
+        <el-button type="cyan" 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" icon="el-icon-plus" size="mini" @click="handleAdd" v-hasPermi="['carousel:carousel:add']">新增</el-button>
+      </el-col>
+      <el-col :span="1.5">
+        <el-button type="success" icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate" v-hasPermi="['carousel:carousel:edit']"
+          >修改</el-button
+        >
+      </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="danger"
+          icon="el-icon-delete"
+          size="mini"
+          :disabled="multiple"
+          @click="handleDelete"
+          v-hasPermi="['carousel:carousel:remove']"
+          >删除</el-button
+        >
+      </el-col>
+      <el-col :span="1.5">
+        <el-button type="warning" icon="el-icon-download" size="mini" @click="handleExport" v-hasPermi="['carousel:carousel:export']">导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+
+    <el-table v-loading="loading" :data="carouselList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="主键" width="55" align="center" prop="id" />
+      <el-table-column label="活动名称" align="center" prop="pictureName" />
+      <el-table-column label="权重" align="center" prop="weight" />
+      <el-table-column label="活动海报" width="200" align="center" prop="fileUrl">
+        <template slot-scope="scope">
+          <img :src="scope.row.fileUrl" class="banner" />
+        </template>
+      </el-table-column>
+      <el-table-column label="点击事件类型" align="center" prop="jumpUrlType" />
+      <el-table-column label="状态" align="center" prop="status" />
+      <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="['carousel:carousel:edit']"
+            >修改</el-button
+          >
+          <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)" v-hasPermi="['carousel:carousel:remove']"
+            >删除</el-button
+          >
+        </template>
+      </el-table-column>
+    </el-table>
+
+    <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNum" :limit.sync="queryParams.pageSize" @pagination="getList" />
+
+    <!-- 添加或修改轮播图对话框 -->
+    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
+      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
+        <el-form-item label="活动名称" prop="pictureName">
+          <el-input v-model="form.pictureName" placeholder="请输入图片名称" />
+        </el-form-item>
+        <el-form-item label="活动海报" prop="fileId">
+          <el-upload
+            class="avatar-uploader"
+            :action="`${baseUrl}/open-api/common/file`"
+            :show-file-list="false"
+            :data="{ fileType: 99 }"
+            name="file"
+            :on-success="handleAvatarSuccess"
+            drag
+          >
+            <img v-if="form.fileUrl" :src="form.fileUrl" class="banner" />
+            <i v-else class="el-icon-plus avatar-uploader-icon"></i>
+          </el-upload>
+        </el-form-item>
+        <el-form-item label="事件类型" prop="jumpUrlType">
+          <el-input v-model="form.jumpUrlType" placeholder="请输入图片名称" />
+        </el-form-item>
+        <el-form-item label="事件参数" prop="jumpUrlType" v-if="form.jumpUrlType=='goWebView'">
+          <el-input v-model="form.jumpUrl" placeholder="请输入网站地址" />
+        </el-form-item>
+        <el-form-item label="事件参数" prop="jumpUrlType" v-else-if="form.jumpUrlType=='goMiniApp'">
+          <el-input v-model="form.jumpUrl" placeholder="请输入小程序APPID" />
+          <el-input v-model="form.jumpUrl" placeholder="请输入小程序PATH" />
+        </el-form-item>
+        <el-form-item label="事件参数" prop="jumpUrlType" v-else-if="form.jumpUrlType=='goPage'">
+          <el-input v-model="form.jumpUrl" placeholder="请输入页面路径" />
+        </el-form-item>
+        <el-form-item label="权重" prop="weight">
+          <el-input v-model="form.weight" placeholder="请输入图片名称" />
+        </el-form-item>
+        <el-form-item label="是否启用" prop="status">
+          <el-input v-model="form.status" placeholder="请输入图片名称" />
+        </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 { listCarousel, getCarousel, delCarousel, addCarousel, updateCarousel, exportCarousel } from '@/api/carousel/carousel'
+
+export default {
+  name: 'Carousel',
+  data() {
+    return {
+      baseUrl: process.env.VUE_APP_BASE_API,
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // 轮播图表格数据
+      carouselList: [],
+      // 弹出层标题
+      title: '',
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        pictureName: null,
+
+        fileId: null,
+
+        status: null
+      },
+      // 表单参数
+      form: {},
+      // 表单校验
+      rules: {
+        fileId: [
+          {
+            required: true,
+            message: '图片id--对应file_info的id不能为空',
+            trigger: 'blur'
+          }
+        ],
+
+        status: [
+          {
+            required: true,
+            message: '状态  0:有效(默认)、1:失效 不能为空',
+            trigger: 'blur'
+          }
+        ]
+      }
+    }
+  },
+  created() {
+    this.getList()
+  },
+  methods: {
+    //图标上传成功返回函数
+    handleAvatarSuccess(response) {
+      this.$set(this.form,'fileUrl',response.data.fileUrl)
+      this.$set(this.form,'fileId',response.data.fileId)
+    },
+    /** 查询轮播图列表 */
+    getList() {
+      this.loading = true
+      listCarousel(this.queryParams).then(response => {
+        this.carouselList = response.rows
+        this.total = response.total
+        this.loading = false
+      })
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false
+      this.reset()
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        id: null,
+
+        pictureName: null,
+
+        fileId: null,
+
+        createTime: null,
+
+        updateTime: null,
+
+        status: 0
+      }
+      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
+      getCarousel(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) {
+            updateCarousel(this.form).then(response => {
+              this.msgSuccess('修改成功')
+              this.open = false
+              this.getList()
+            })
+          } else {
+            addCarousel(this.form).then(response => {
+              this.msgSuccess('新增成功')
+              this.open = false
+              this.getList()
+            })
+          }
+        }
+      })
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const ids = row.id || this.ids
+      this.$confirm('是否确认删除轮播图编号为"' + ids + '"的数据项?', '警告', {
+        confirmButtonText: '确定',
+        cancelButtonText: '取消',
+        type: 'warning'
+      })
+        .then(function() {
+          return delCarousel(ids)
+        })
+        .then(() => {
+          this.getList()
+          this.msgSuccess('删除成功')
+        })
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      const queryParams = this.queryParams
+      this.$confirm('是否确认导出所有轮播图数据项?', '警告', {
+        confirmButtonText: '确定',
+        cancelButtonText: '取消',
+        type: 'warning'
+      })
+        .then(function() {
+          return exportCarousel(queryParams)
+        })
+        .then(response => {
+          this.download(response.data)
+        })
+    }
+  }
+}
+</script>
+
+<style lang="scss" scoped>
+.banner {
+  width: 100%;
+}
+</style>

+ 19 - 2
src/views/customer/customer/index.vue

@@ -64,7 +64,16 @@
       <el-table-column fixed='left' label="主键" align="center" prop="id" />
       <el-table-column fixed='left' width="150" label="公司名称" align="center" prop="corporateName" />
       <el-table-column label="业务类型" align="center" prop="businessType" />
-      <el-table-column label="公司LOGO图片" align="center" prop="corporateLogo" />
+      <!-- <el-table-column label="公司LOGO图片" align="center" prop="corporateLogo">
+        <template slot-scope="scope">
+          <img :src="scope.row.corporateLogo" class="avatar" />
+        </template>
+      </el-table-column> -->
+      <el-table-column label="小程序图标" align="center" prop="appletLogoFileUrl">
+        <template slot-scope="scope">
+          <img :src="scope.row.appletLogoFileUrl" class="avatar" />
+        </template>
+      </el-table-column>
       <el-table-column label="小程序地址" width="160" align="center" prop="appletAddress" />
       <el-table-column label="小程序介绍" width="350" align="center" prop="appletIntroduce" />
       <el-table-column label="客户来源" align="center" prop="customerSource" />
@@ -82,7 +91,6 @@
       <el-table-column label="银行帐户" align="center" prop="bankAccount" />
       <el-table-column label="财务电话号码" align="center" prop="financePhone" />
       <el-table-column label="传真号码" align="center" prop="faxNumber" />
-      <el-table-column label="小程序图标" align="center" prop="appletLogo" />
       <el-table-column label="小程序二维码" align="center" prop="appletQrCode" />
       <el-table-column label="上架状态" align="center" prop="shelfStatus" />
       <el-table-column label="状态" align="center" prop="status" />
@@ -443,3 +451,12 @@ export default {
   }
 };
 </script>
+
+<style lang="scss" scoped>
+.avatar {
+  width: 50px;
+  height: 50px;
+  border: 1px solid #000;
+  border-radius: 50%;
+}
+</style>

+ 25 - 3
src/views/product/info/index.vue

@@ -112,6 +112,11 @@
       <el-table-column label="主键" align="center" prop="id" />
       <el-table-column label="分类名称" align="center" prop="productName" />
       <el-table-column label="父节点" align="center" prop="pid" />
+      <el-table-column label="图标" align="center" width="180">
+        <template slot-scope="scope">
+          <img :src="scope.row.fileUrl" class="avatar" />
+        </template>
+      </el-table-column>
       <el-table-column label="分类描述" align="center" prop="describe" />
       <el-table-column label="状态" align="center" prop="status" />
       <el-table-column
@@ -170,12 +175,14 @@
         <el-form-item label="分类图标" prop="describe">
           <el-upload
             class="avatar-uploader"
-            action="/open-api/common/file?fileType=98"
+            :action="`${baseUrl}/open-api/common/file`"
             :show-file-list="false"
-            name='file'
+            :data="{ fileType: 99 }"
+            name="file"
             :on-success="handleAvatarSuccess"
+            drag
           >
-            <img v-if="imageUrl" :src="imageUrl" class="avatar" />
+            <img v-if="form.fileUrl" :src="form.fileUrl" class="avatar" />
             <i v-else class="el-icon-plus avatar-uploader-icon"></i>
           </el-upload>
         </el-form-item>
@@ -208,6 +215,7 @@ export default {
   name: "Info",
   data() {
     return {
+      baseUrl: process.env.VUE_APP_BASE_API,
       // 遮罩层
       loading: true,
       // 选中数组
@@ -266,6 +274,11 @@ export default {
     });
   },
   methods: {
+    //图标上传成功返回函数
+    handleAvatarSuccess(response) {
+      this.form.productIcon = response.data.fileId;
+      this.form.fileUrl = response.data.fileUrl;
+    },
     /** 查询品类列表 */
     getList() {
       this.loading = true;
@@ -385,3 +398,12 @@ export default {
   }
 };
 </script>
+
+<style lang="scss" scoped>
+.avatar {
+  width: 50px;
+  height: 50px;
+  border: 1px solid #000;
+  border-radius: 50%;
+}
+</style>