|
@@ -0,0 +1,327 @@
|
|
|
+<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="sort">
|
|
|
+ <el-input v-model="queryParams.sort" placeholder="请输入排序值" clearable @keyup.enter.native="handleQuery" />
|
|
|
+ </el-form-item> -->
|
|
|
+ <!-- <el-form-item label="状态" prop="status">
|
|
|
+ <el-select v-model="queryParams.status" placeholder="请选择是否启用" clearable size="small">
|
|
|
+ <el-option label="请选择字典生成" value="" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item> -->
|
|
|
+ <!-- <el-form-item label="说明" prop="remark">
|
|
|
+ <el-input v-model="queryParams.remark" placeholder="请输入说明" clearable @keyup.enter.native="handleQuery" />
|
|
|
+ </el-form-item> -->
|
|
|
+ <!-- <el-form-item label="商家数量" prop="number">
|
|
|
+ <el-input v-model="queryParams.number" placeholder="请输入商家数量" clearable @keyup.enter.native="handleQuery" />
|
|
|
+ </el-form-item> -->
|
|
|
+ <!-- <el-form-item label="父类id" prop="parentId">
|
|
|
+ <el-input v-model="queryParams.parentId" placeholder="请输入父类id" clearable @keyup.enter.native="handleQuery" />
|
|
|
+ </el-form-item> -->
|
|
|
+ <!-- <el-form-item label="创建时间" prop="createTime">
|
|
|
+ <el-date-picker v-model="queryParams.createTime" style="width: 240px" value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
+ type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"
|
|
|
+ :default-time="['00:00:00', '23:59:59']" />
|
|
|
+ </el-form-item> -->
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="el-icon-refresh" @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="['supplier:goods-category:create']">新增</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
|
|
|
+ :loading="exportLoading" v-hasPermi="['supplier:goods-category:export']">导出</el-button>
|
|
|
+ </el-col>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <!-- 列表 -->
|
|
|
+ <!-- <el-table v-loading="loading" :data="list"> -->
|
|
|
+ <el-table v-loading="loading" :data="list" row-key="id"
|
|
|
+ :tree-props="{ children: 'children', hasChildren: 'hasChildren' }">
|
|
|
+ <el-table-column label="序号" align="center" prop="id">
|
|
|
+ <!-- <template slot-scope="scope">{{ scope.$index + 1 }}</template> -->
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="分类名称" align="center" prop="name" />
|
|
|
+ <el-table-column label="排序值" align="center" prop="sort" />
|
|
|
+ <el-table-column label="状态" align="center" width="100">
|
|
|
+ <template v-slot="scope">
|
|
|
+ <el-switch v-model="scope.row.status" :active-value="0" :inactive-value="1"
|
|
|
+ @change="handleStatusChange(scope.row)" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="说明" align="center" prop="remark" />
|
|
|
+ <el-table-column label="商家数量" align="center" prop="number" />
|
|
|
+ <el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
+ <template v-slot="scope">
|
|
|
+ <span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" width="200">
|
|
|
+ <template v-slot="scope">
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-plus" @click="handleAdd(scope.row)"
|
|
|
+ v-hasPermi="['supplier:goods-category:create']">新增子分类</el-button>
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
|
+ v-hasPermi="['supplier:goods-category:update']">修改</el-button>
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
+ v-hasPermi="['supplier:goods-category:delete']">删除</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ <!-- 分页组件 -->
|
|
|
+ <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
|
|
|
+ @pagination="getList" />
|
|
|
+
|
|
|
+ <!-- 对话框(添加 / 修改) -->
|
|
|
+ <el-dialog :title="title" :visible.sync="open" width="500px" v-dialogDrag append-to-body>
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
+ <el-form-item label="上级分类" prop="parentId">
|
|
|
+ <treeselect v-model="form.parentId" :options="parentItems" :normalizer="normalizer" placeholder="选择上级分类" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="分类名称" prop="name">
|
|
|
+ <el-input v-model="form.name" placeholder="请输入分类名称" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="排序值" prop="sort">
|
|
|
+ <el-input-number v-model="form.sort" placeholder="请输入排序值" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="说明" prop="remark">
|
|
|
+ <el-input type="textarea" v-model="form.remark" placeholder="请输入说明" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="商家数量" prop="number">
|
|
|
+ <el-input-number v-model="form.number" 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 {
|
|
|
+ createGoodsCategory,
|
|
|
+ updateGoodsCategory,
|
|
|
+ deleteGoodsCategory,
|
|
|
+ getGoodsCategory,
|
|
|
+ getGoodsCategoryPage,
|
|
|
+ exportGoodsCategoryExcel,
|
|
|
+ changeCategoryStatus,
|
|
|
+ getGoodsCategoryListAll,
|
|
|
+} from "@/api/supplier/goodsCategory";
|
|
|
+import { CommonStatusEnum } from "@/utils/constants";
|
|
|
+import Treeselect from "@riophae/vue-treeselect";
|
|
|
+import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "GoodsCategory",
|
|
|
+ components: {
|
|
|
+ Treeselect,
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ SysCommonStatusEnum: CommonStatusEnum,
|
|
|
+ parentItems: [],
|
|
|
+ // 遮罩层
|
|
|
+ loading: true,
|
|
|
+ // 导出遮罩层
|
|
|
+ exportLoading: false,
|
|
|
+ // 显示搜索条件
|
|
|
+ showSearch: true,
|
|
|
+ // 总条数
|
|
|
+ total: 0,
|
|
|
+ // 商品分类列表
|
|
|
+ list: [],
|
|
|
+ // 弹出层标题
|
|
|
+ title: "",
|
|
|
+ // 是否显示弹出层
|
|
|
+ open: false,
|
|
|
+ // 查询参数
|
|
|
+ queryParams: {
|
|
|
+ pageNo: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ name: null,
|
|
|
+ sort: null,
|
|
|
+ status: null,
|
|
|
+ remark: null,
|
|
|
+ number: null,
|
|
|
+ parentId: null,
|
|
|
+ createTime: [],
|
|
|
+ },
|
|
|
+ // 表单参数
|
|
|
+ form: {},
|
|
|
+ // 表单校验
|
|
|
+ rules: {
|
|
|
+ name: [{ required: true, message: "分类名称不能为空", trigger: "blur" }],
|
|
|
+ status: [{ required: true, message: "是否启用(0正常 1停用)不能为空", trigger: "blur" }],
|
|
|
+ }
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getList();
|
|
|
+ this.getTemplate();
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ /** 转换商品分类结构 */
|
|
|
+ normalizer(node) {
|
|
|
+ if (node.children && !node.children.length) {
|
|
|
+ delete node.children;
|
|
|
+ }
|
|
|
+ return {
|
|
|
+ id: node.id,
|
|
|
+ label: node.name,
|
|
|
+ children: node.children
|
|
|
+ };
|
|
|
+ },
|
|
|
+ // 商品分类状态修改
|
|
|
+ handleStatusChange(row) {
|
|
|
+ // 此时,row 已经变成目标状态了,所以可以直接提交请求和提示
|
|
|
+ let text = row.status === CommonStatusEnum.ENABLE ? "启用" : "停用";
|
|
|
+ this.$modal
|
|
|
+ .confirm('确认要"' + text + '""' + row.name + '"商品分类吗?')
|
|
|
+ .then(function () {
|
|
|
+ return changeCategoryStatus(row.id, row.status);
|
|
|
+ })
|
|
|
+ .then(() => {
|
|
|
+ this.$modal.msgSuccess(text + "成功");
|
|
|
+ this.getList();
|
|
|
+ })
|
|
|
+ .catch(function () {
|
|
|
+ // 异常时,需要将 row.status 状态重置回之前的
|
|
|
+ row.status =
|
|
|
+ row.status === CommonStatusEnum.ENABLE
|
|
|
+ ? CommonStatusEnum.DISABLE
|
|
|
+ : CommonStatusEnum.ENABLE;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ //页面初始化所需数据
|
|
|
+ getTemplate() {
|
|
|
+ //获得父类分类选项
|
|
|
+ getGoodsCategoryListAll().then(res => {
|
|
|
+ this.parentItems = this.handleTree(res.data, "id");
|
|
|
+ })
|
|
|
+ },
|
|
|
+ /** 查询列表 */
|
|
|
+ getList() {
|
|
|
+ this.loading = true;
|
|
|
+ // 执行查询
|
|
|
+ getGoodsCategoryPage(this.queryParams).then(response => {
|
|
|
+ this.list = this.handleTree(response.data.list, "id");
|
|
|
+ // this.list = response.data.list;
|
|
|
+ this.total = response.data.total;
|
|
|
+ this.loading = false;
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 取消按钮 */
|
|
|
+ cancel() {
|
|
|
+ this.open = false;
|
|
|
+ this.reset();
|
|
|
+ },
|
|
|
+ /** 表单重置 */
|
|
|
+ reset() {
|
|
|
+ this.form = {
|
|
|
+ id: undefined,
|
|
|
+ name: undefined,
|
|
|
+ sort: undefined,
|
|
|
+ status: undefined,
|
|
|
+ remark: undefined,
|
|
|
+ number: undefined,
|
|
|
+ parentId: undefined,
|
|
|
+ };
|
|
|
+ this.resetForm("form");
|
|
|
+ },
|
|
|
+ /** 搜索按钮操作 */
|
|
|
+ handleQuery() {
|
|
|
+ this.queryParams.pageNo = 1;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ /** 重置按钮操作 */
|
|
|
+ resetQuery() {
|
|
|
+ this.resetForm("queryForm");
|
|
|
+ this.handleQuery();
|
|
|
+ },
|
|
|
+ /** 新增按钮操作 */
|
|
|
+ handleAdd(row) {
|
|
|
+ this.reset();
|
|
|
+ if (row !== undefined) {
|
|
|
+ this.form.parentId = row.id;
|
|
|
+ }
|
|
|
+ this.open = true;
|
|
|
+ this.title = "添加商品分类";
|
|
|
+ },
|
|
|
+ /** 修改按钮操作 */
|
|
|
+ handleUpdate(row) {
|
|
|
+ this.reset();
|
|
|
+ const id = row.id;
|
|
|
+ getGoodsCategory(id).then(response => {
|
|
|
+ this.form = response.data;
|
|
|
+ if (this.form.parentId === 0) { // 无父分类时,标记为 undefined,避免展示为 Unknown
|
|
|
+ this.form.parentId = undefined;
|
|
|
+ }
|
|
|
+ this.open = true;
|
|
|
+ this.title = "修改商品分类";
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 提交按钮 */
|
|
|
+ submitForm() {
|
|
|
+ this.$refs["form"].validate(valid => {
|
|
|
+ if (!valid) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 修改的提交
|
|
|
+ if (this.form.id != null) {
|
|
|
+ updateGoodsCategory(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("修改成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 添加的提交
|
|
|
+ createGoodsCategory(this.form).then(response => {
|
|
|
+ this.$modal.msgSuccess("新增成功");
|
|
|
+ this.open = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 删除按钮操作 */
|
|
|
+ handleDelete(row) {
|
|
|
+ const id = row.id;
|
|
|
+ this.$modal.confirm('是否确认删除商品分类编号为"' + id + '"的数据项?').then(function () {
|
|
|
+ return deleteGoodsCategory(id);
|
|
|
+ }).then(() => {
|
|
|
+ this.getList();
|
|
|
+ this.$modal.msgSuccess("删除成功");
|
|
|
+ }).catch(() => { });
|
|
|
+ },
|
|
|
+ /** 导出按钮操作 */
|
|
|
+ handleExport() {
|
|
|
+ // 处理查询参数
|
|
|
+ let params = { ...this.queryParams };
|
|
|
+ params.pageNo = undefined;
|
|
|
+ params.pageSize = undefined;
|
|
|
+ this.$modal.confirm('是否确认导出所有商品分类数据项?').then(() => {
|
|
|
+ this.exportLoading = true;
|
|
|
+ return exportGoodsCategoryExcel(params);
|
|
|
+ }).then(response => {
|
|
|
+ this.$download.excel(response, '商品分类.xls');
|
|
|
+ this.exportLoading = false;
|
|
|
+ }).catch(() => { });
|
|
|
+ }
|
|
|
+ }
|
|
|
+};
|
|
|
+</script>
|