Browse Source

Merge branch 'master' of http://git.cc-lotus.info/community/ruyi-ui

skym1024 1 year ago
parent
commit
79e4c8b496
2 changed files with 461 additions and 0 deletions
  1. 44 0
      src/api/community/merchant.js
  2. 417 0
      src/views/community/merchant/index.vue

+ 44 - 0
src/api/community/merchant.js

@@ -0,0 +1,44 @@
+import request from '@/utils/request'
+
+// 查询merchant列表
+export function listMerchant(query) {
+  return request({
+    url: '/community/merchant/list',
+    method: 'get',
+    params: query
+  })
+}
+
+// 查询merchant详细
+export function getMerchant(merchantId) {
+  return request({
+    url: '/community/merchant/' + merchantId,
+    method: 'get'
+  })
+}
+
+// 新增merchant
+export function addMerchant(data) {
+  return request({
+    url: '/community/merchant',
+    method: 'post',
+    data: data
+  })
+}
+
+// 修改merchant
+export function updateMerchant(data) {
+  return request({
+    url: '/community/merchant',
+    method: 'put',
+    data: data
+  })
+}
+
+// 删除merchant
+export function delMerchant(merchantId) {
+  return request({
+    url: '/community/merchant/' + merchantId,
+    method: 'delete'
+  })
+}

+ 417 - 0
src/views/community/merchant/index.vue

@@ -0,0 +1,417 @@
+<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="name">
+        <el-input
+          v-model="queryParams.name"
+          placeholder="请输入名称"
+          clearable
+          @keyup.enter.native="handleQuery"
+        />
+      </el-form-item>
+      <el-form-item label="类型" prop="type">
+        <el-select v-model="queryParams.type"  placeholder="请选择类型" clearable>
+          <el-option
+            v-for="dict in dict.type.community_merchant_type"
+            :key="dict.value"
+            :label="dict.label"
+            :value="dict.value"
+          />
+        </el-select>
+      </el-form-item>
+      <el-form-item label="所属社区">
+  <el-cascader
+    v-model="queryParams.affiliatedCommunitys"
+    :options="dict.type.community_merchant_belongs"
+    :props="{ multiple: true }"
+    clearable
+    collapse-tags
+    :check-strictly="true"
+    multiple
+    placeholder="请选择所属社区">
+  </el-cascader>
+</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="['community:merchant:add']"
+        >新增</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="['community:merchant:remove']"
+        >删除</el-button>
+      </el-col>
+
+      <el-col :span="1.5">
+            <el-button
+              type="info"
+              plain
+              icon="el-icon-upload2"
+              size="mini"
+              @click="handleImport"
+              v-hasPermi="['community:merchant:import']"
+            >导入</el-button>
+          </el-col>
+      <el-col :span="1.5">
+        <el-button
+          type="warning"
+          plain
+          icon="el-icon-download"
+          size="mini"
+          @click="handleExport"
+          v-hasPermi="['community:merchant:export']"
+        >导出</el-button>
+      </el-col>
+      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+    </el-row>
+ 
+
+    <el-table v-loading="loading" :data="merchantList" @selection-change="handleSelectionChange">
+      <el-table-column type="selection" width="55" align="center" />
+      <el-table-column label="序号" align="center" prop="merchantId" />
+      <el-table-column label="名称" align="center" prop="name" />
+      <el-table-column label="类型" align="center" prop="type">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.community_merchant_type" :value="scope.row.type"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="所属社区" align="center" prop="affiliatedCommunity">
+        <template slot-scope="scope">
+          <dict-tag :options="dict.type.community_merchant_belongs" :value="scope.row.affiliatedCommunity"/>
+        </template>
+      </el-table-column>
+      <el-table-column label="地址" align="center" prop="address" />
+      <el-table-column label="电话" align="center" prop="tel" />
+      <el-table-column label="联系人" align="center" prop="contact" />
+      <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="['community:merchant:edit']"
+          >修改</el-button>
+          <el-button
+            size="mini"
+            type="text"
+            icon="el-icon-delete"
+            @click="handleDelete(scope.row)"
+            v-hasPermi="['community:merchant: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"
+    />
+
+    <!-- 添加或修改merchant对话框 -->
+    <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="name">
+          <el-input v-model="form.name" placeholder="请输入名称" />
+        </el-form-item>
+        <el-form-item label="类型">
+          <el-radio-group v-model="form.type" >
+            <el-radio
+              v-for="dict in dict.type.community_merchant_type" 
+              :key="dict.value"
+:label="dict.value"
+v-show="dict.value!='全部'"
+            >{{dict.label}}</el-radio>
+          </el-radio-group>
+        </el-form-item>
+
+
+
+
+        <el-form-item label="所属社区" prop="affiliatedCommunity">
+        <el-select v-model="form.affiliatedCommunity"  placeholder="请选择所属社区" clearable>
+          <el-option
+            v-for="dict in dict.type.community_merchant_belongs"
+            :key="dict.value"
+            :label="dict.value"
+            :value="dict.value"
+          />
+        </el-select>
+      </el-form-item>
+        <el-form-item label="地址" prop="address">
+          <el-input v-model="form.address" placeholder="请输入地址" />
+        </el-form-item>
+        <el-form-item label="电话" prop="tel">
+          <el-input v-model="form.tel" placeholder="请输入电话" />
+        </el-form-item>
+        <el-form-item label="联系人" prop="contact">
+          <el-input v-model="form.contact" 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>
+    
+    <!-- 用户导入对话框 -->
+    <el-dialog :title="upload.title" :visible.sync="upload.open" width="400px" append-to-body>
+      <el-upload
+        ref="upload"
+        :limit="1"
+        accept=".xlsx, .xls"
+        :headers="upload.headers"
+        :action="upload.url + '?updateSupport=' + upload.updateSupport"
+        :disabled="upload.isUploading"
+        :on-progress="handleFileUploadProgress"
+        :on-success="handleFileSuccess"
+        :auto-upload="false"
+        drag
+      >
+        <i class="el-icon-upload"></i>
+        <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
+        <div class="el-upload__tip text-center" slot="tip">
+          <div class="el-upload__tip" slot="tip">
+            <el-checkbox v-model="upload.updateSupport" /> 是否更新已经存在的用户数据
+          </div>
+          <span>仅允许导入xls、xlsx格式文件。</span>
+          <el-link type="primary" :underline="false" style="font-size:12px;vertical-align: baseline;" @click="importTemplate">下载模板</el-link>
+        </div>
+      </el-upload>
+      <div slot="footer" class="dialog-footer">
+        <el-button type="primary" @click="submitFileForm">确 定</el-button>
+        <el-button @click="upload.open = false">取 消</el-button>
+      </div>
+    </el-dialog>
+  </div>
+</template>
+
+<script>
+import { listMerchant, getMerchant, delMerchant, addMerchant, updateMerchant } from "@/api/community/merchant";
+import { getToken } from "@/utils/auth";
+
+export default {
+  name: "Merchant",
+  dicts: ['community_merchant_belongs', 'community_merchant_type'],
+  data() {
+    return {
+      // 遮罩层
+      loading: true,
+      // 选中数组
+      ids: [],
+      // 非单个禁用
+      single: true,
+      // 非多个禁用
+      multiple: true,
+      // 显示搜索条件
+      showSearch: true,
+      // 总条数
+      total: 0,
+      // merchant表格数据
+      merchantList: [],
+      // 弹出层标题
+      title: "",
+      // 是否显示弹出层
+      open: false,
+      // 查询参数
+      queryParams: {
+        pageNum: 1,
+        pageSize: 10,
+        name: null,
+        type: null,
+        affiliatedCommunity:null,
+        affiliatedCommunitys:[],
+        address: null,
+        tel: null,
+        contact: null
+      },
+      // 表单参数
+      form: {},
+            // 用户导入参数
+      upload: {
+        // 是否显示弹出层(用户导入)
+        open: false,
+        // 弹出层标题(用户导入)
+        title: "",
+        // 是否禁用上传
+        isUploading: false,
+        // 是否更新已经存在的用户数据
+        updateSupport: 0,
+        // 设置上传的请求头部
+        headers: { Authorization: "Bearer " + getToken() },
+        // 上传的地址
+        url: process.env.VUE_APP_BASE_API + "/community/merchant/importData"
+      },
+      // 表单校验
+      rules: {
+        name: [
+          { required: true, message: "名称不能为空", trigger: "blur" }
+        ],
+        type: [
+          { required: true, message: "类型不能为空", trigger: "blur" }
+        ],
+        affiliatedCommunity: [
+          { required: true, message: "所属社区不能为空", trigger: "blur" }
+        ],
+        tel: [
+          { required: true, message: "电话不能为空", trigger: "blur" }
+        ],
+        contact: [
+          { required: true, message: "联系人不能为空", trigger: "blur" }
+        ]
+      }
+    };
+  },
+  created() {
+    this.getList();
+  },
+  methods: {
+    /** 查询merchant列表 */
+    getList() {
+      this.loading = true;
+      listMerchant(this.queryParams).then(response => {
+        this.merchantList = response.rows;
+        this.total = response.total;
+        this.loading = false;
+      });
+    },
+    // 取消按钮
+    cancel() {
+      this.open = false;
+      this.reset();
+    },
+    // 表单重置
+    reset() {
+      this.form = {
+        merchantId: null,
+        name: null,
+        type: "0",
+        affiliatedCommunity: null,
+        affiliatedCommunitys: [],
+        address: null,
+        tel: null,
+        contact: null
+      };
+      this.resetForm("form");
+    },
+    /** 搜索按钮操作 */
+    handleQuery() {
+      this.queryParams.pageNum = 1;
+      this.getList();
+    },
+    /** 重置按钮操作 */
+    resetQuery() {
+      this.resetForm("queryForm");
+      this.queryParams.affiliatedCommunitys=null;
+      this.handleQuery();
+    },
+    // 多选框选中数据
+    handleSelectionChange(selection) {
+      this.ids = selection.map(item => item.merchantId)
+      this.single = selection.length!==1
+      this.multiple = !selection.length
+    },
+    /** 新增按钮操作 */
+    handleAdd() {
+      this.reset();
+      this.open = true;
+      this.title = "添加商户信息";
+    },
+    /** 修改按钮操作 */
+    handleUpdate(row) {
+      this.reset();
+      const merchantId = row.merchantId || this.ids
+      getMerchant(merchantId).then(response => {
+        this.form = response.data;
+        this.open = true;
+        this.title = "修改商户信息";
+      });
+    },
+    /** 提交按钮 */
+    submitForm() {
+      this.$refs["form"].validate(valid => {
+        if (valid) {
+          if (this.form.merchantId != null) {
+            updateMerchant(this.form).then(response => {
+              this.$modal.msgSuccess("修改成功");
+              this.open = false;
+              this.getList();
+            });
+          } else {
+            addMerchant(this.form).then(response => {
+              this.$modal.msgSuccess("新增成功");
+              this.open = false;
+              this.getList();
+            });
+          }
+        }
+      });
+    },
+    /** 删除按钮操作 */
+    handleDelete(row) {
+      const merchantIds = row.merchantId || this.ids;
+      this.$modal.confirm('是否确认删除商户编号为"' + merchantIds + '"的数据项?').then(function() {
+        return delMerchant(merchantIds);
+      }).then(() => {
+        this.getList();
+        this.$modal.msgSuccess("删除成功");
+      }).catch(() => {});
+    },
+    /** 导出按钮操作 */
+    handleExport() {
+      this.download('community/merchant/export', {
+        ...this.queryParams
+      }, `merchant_${new Date().getTime()}.xlsx`)
+    },
+    /** 导入按钮操作 */
+    handleImport() {
+      this.upload.title = "用户导入";
+      this.upload.open = true;
+    },
+    /** 下载模板操作 */
+    importTemplate() {
+      this.download('community/merchant/importTemplate', {
+      }, `CommunityMerchant_template_${new Date().getTime()}.xlsx`)
+    },
+    // 文件上传中处理
+    handleFileUploadProgress(event, file, fileList) {
+      this.upload.isUploading = true;
+    },
+    // 文件上传成功处理
+    handleFileSuccess(response, file, fileList) {
+      this.upload.open = false;
+      this.upload.isUploading = false;
+      this.$refs.upload.clearFiles();
+      this.$alert("<div style='overflow: auto;overflow-x: hidden;max-height: 70vh;padding: 10px 20px 0;'>" + response.msg + "</div>", "导入结果", { dangerouslyUseHTMLString: true });
+      this.getList();
+    },
+    // 提交上传文件
+    submitFileForm() {
+      this.$refs.upload.submit();
+    }
+  }
+};
+</script>