<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="description">
|
<el-input
|
v-model="queryParams.description"
|
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="iconUrl">
|
<el-input
|
v-model="queryParams.iconUrl"
|
placeholder="请输入类目图标"
|
clearable
|
@keyup.enter.native="handleQuery"
|
/>
|
</el-form-item> -->
|
<!-- <el-form-item label="类目图片" prop="picUrl">
|
<el-input
|
v-model="queryParams.picUrl"
|
placeholder="请输入类目图片"
|
clearable
|
@keyup.enter.native="handleQuery"
|
/>
|
</el-form-item> -->
|
<!-- <el-form-item label="排序" prop="sortOrder">
|
<el-input
|
v-model="queryParams.sortOrder"
|
placeholder="请输入排序"
|
clearable
|
@keyup.enter.native="handleQuery"
|
/>
|
</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"
|
icon="el-icon-plus"
|
size="mini"
|
@click="handleAdd"
|
v-hasPermi="['mall:category:add']"
|
>新增
|
</el-button>
|
</el-col>
|
<el-col :span="1.5">
|
<el-button
|
type="primary"
|
icon="el-icon-edit"
|
size="mini"
|
:disabled="single"
|
@click="handleUpdate"
|
v-hasPermi="['mall:category:edit']"
|
>修改
|
</el-button>
|
</el-col>
|
<el-col :span="1.5">
|
<el-button
|
type="primary"
|
icon="el-icon-delete"
|
size="mini"
|
:disabled="multiple"
|
@click="handleDelete"
|
v-hasPermi="['mall:category:remove']"
|
>删除
|
</el-button>
|
</el-col>
|
<!-- <el-col :span="1.5">
|
<el-button
|
type="warning"
|
plain
|
icon="el-icon-download"
|
size="mini"
|
@click="handleExport"
|
v-hasPermi="['mall:category:export']"
|
>导出
|
</el-button>
|
</el-col> -->
|
<right-toolbar
|
:showSearch.sync="showSearch"
|
@queryTable="getList"
|
></right-toolbar>
|
</el-row>
|
|
<el-table
|
border
|
v-loading="loading"
|
:data="categoryList"
|
@selection-change="handleSelectionChange"
|
>
|
<el-table-column type="selection" width="50" align="center" />
|
<el-table-column label="序号" width="55" align="center" prop="newID" />
|
<el-table-column label="套餐类别" align="center" prop="name" />
|
<!-- <el-table-column
|
label="类目关键字"
|
align="center"
|
prop="keywords"
|
/> -->
|
<el-table-column
|
label="分类介绍"
|
align="center"
|
prop="description"
|
/>
|
<!-- <el-table-column label="父类目ID" align="center" prop="parentId" /> -->
|
<!-- <el-table-column label="类目图标" align="center" prop="iconUrl" /> -->
|
<!-- <el-table-column label="类目图片" align="center" prop="picUrl" /> -->
|
<!-- <el-table-column label="排序" align="center" prop="sortOrder" /> -->
|
<el-table-column
|
width="80"
|
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="['mall:category:edit']"
|
title="修改"
|
>
|
</el-button>
|
<el-button
|
size="mini"
|
type="text"
|
icon="el-icon-delete"
|
@click="handleDelete(scope.row)"
|
v-hasPermi="['mall:category:remove']"
|
title="删除"
|
>
|
</el-button>
|
</template>
|
</el-table-column>
|
</el-table>
|
|
<div class="pag">
|
<div class="pag1">
|
<pagination
|
v-show="total > 0"
|
:total="total"
|
:page.sync="queryParams.pageNum"
|
:limit.sync="queryParams.pageSize"
|
@pagination="getList"
|
/>
|
</div>
|
</div>
|
|
<!-- 添加或修改类目对话框 -->
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px" :inline = "true">
|
<el-form-item label="套餐类别" prop="name">
|
<el-input v-model="form.name" placeholder="请输入套餐类别" />
|
</el-form-item>
|
<!-- <el-form-item label="类目关键字" prop="keywords">
|
<el-input
|
v-model="form.keywords"
|
type="textarea"
|
placeholder="请输入内容"
|
/>
|
</el-form-item> -->
|
<el-form-item label="类目介绍" prop="description">
|
<el-input
|
v-model="form.description"
|
placeholder="请输入类目广告语介绍"
|
/>
|
</el-form-item>
|
<!-- <el-form-item label="父类目ID" prop="parentId">
|
<el-input v-model="form.parentId" placeholder="请输入父类目ID" />
|
</el-form-item> -->
|
<!-- <el-form-item label="类目图标" prop="iconUrl">
|
<el-input v-model="form.iconUrl" placeholder="请输入类目图标" />
|
</el-form-item> -->
|
<!-- <el-form-item label="类目图片" prop="picUrl">
|
<el-input v-model="form.picUrl" placeholder="请输入类目图片" />
|
</el-form-item> -->
|
<!-- <el-form-item label="排序" prop="sortOrder">
|
<el-input v-model="form.sortOrder" 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 {
|
listCategory,
|
getCategory,
|
delCategory,
|
addCategory,
|
updateCategory,
|
} from "@/api/mall/category";
|
|
export default {
|
name: "Category",
|
data() {
|
return {
|
// 遮罩层
|
loading: true,
|
// 选中数组
|
ids: [],
|
// 非单个禁用
|
single: true,
|
// 非多个禁用
|
multiple: true,
|
// 显示搜索条件
|
showSearch: true,
|
// 总条数
|
total: 0,
|
// 类目表格数据
|
categoryList: [],
|
// 弹出层标题
|
title: "",
|
// 是否显示弹出层
|
open: false,
|
// 查询参数
|
queryParams: {
|
pageNum: 1,
|
pageSize: 10,
|
name: null,
|
keywords: null,
|
description: null,
|
parentId: null,
|
iconUrl: null,
|
picUrl: null,
|
level: null,
|
sortOrder: null,
|
deptId: null,
|
},
|
// 表单参数
|
form: {},
|
// 表单校验
|
rules: {},
|
};
|
},
|
created() {
|
this.getList();
|
},
|
methods: {
|
/** 查询类目列表 */
|
getList() {
|
this.loading = true;
|
listCategory(this.queryParams).then((response) => {
|
response.rows.forEach((item, index) => {
|
item.newID =
|
(this.queryParams.pageNum - 1) * this.queryParams.pageSize +
|
index +
|
1;
|
});
|
this.categoryList = response.rows;
|
this.total = response.total;
|
this.loading = false;
|
});
|
},
|
// 取消按钮
|
cancel() {
|
this.open = false;
|
this.reset();
|
},
|
// 表单重置
|
reset() {
|
this.form = {
|
id: null,
|
name: null,
|
keywords: null,
|
description: null,
|
parentId: null,
|
iconUrl: null,
|
picUrl: null,
|
level: null,
|
sortOrder: null,
|
deptId: null,
|
createTime: null,
|
createBy: null,
|
updateTime: null,
|
updateBy: null,
|
deleted: null,
|
};
|
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;
|
getCategory(id).then((response) => {
|
this.form = response.data;
|
this.open = true;
|
this.title = "修改类目";
|
});
|
},
|
/** 删除按钮操作 */
|
handleDelete(row) {
|
const ids = row.id || this.ids;
|
this.$modal.confirm('是否确认类目编号为"' + ids + '"的数据项?').then(function() {
|
return delCategory(ids);
|
}).then(() => {
|
this.getList();
|
this.$modal.msgSuccess("删除成功");
|
}).catch(() => {});
|
},
|
/** 提交按钮 */
|
submitForm() {
|
this.$refs["form"].validate(valid => {
|
if (valid) {
|
if (this.form.id != null) {
|
updateCategory(this.form).then(response => {
|
this.$modal.msgSuccess("修改成功");
|
this.open = false;
|
this.getList();
|
});
|
} else {
|
addCategory(this.form).then(response => {
|
this.$modal.msgSuccess("新增成功");
|
this.open = false;
|
this.getList();
|
});
|
}
|
}
|
});
|
},
|
},
|
};
|
</script>
|
<style scoped>
|
.pag {
|
width: 100%;
|
display: flex;
|
justify-content: center;
|
}
|
.pag1 {
|
width: 20%;
|
}
|
</style>
|