Vue项目实战之电商后台管理系统(六) 分类参数管理模块

前言

一、分类参数管理模块

1.1 效果图

在这里插入图片描述

1.2 新建组件

在src-components-goods中添加Params.vue子组件,并在router.js中引入该组件并设置路由规则

1.3 整体布局

其中警告提示信息使用了el-alert,在element.js引入该组件并注册
<div>
	<!-- 面包屑导航 -->
	<el-breadcrumb separator="/">
		<el-breadcrumb-item :to="{ path: '/home' }">首页</el-breadcrumb-item>
		<el-breadcrumb-item>商品管理</el-breadcrumb-item>
		<el-breadcrumb-item>分类参数</el-breadcrumb-item>
	</el-breadcrumb>
	<!-- 卡片视图区域 -->
	<el-card>
		<!-- 警告区域 :closable="false"(是否展示“X”号) show-icon(显示图标) -->
		<el-alert title="注意:只允许为第三级分类设置相关参数" type="warning" :closable="false" show-icon>
		</el-alert>

		<!-- 选择商品分类区域 -->
		<el-row class="cat_opt">
			<el-col>
				<span>选择商品分类:</span>
				<!-- 选择商品分类的级联选择框 -->
			</el-col>
			<el-col></el-col>
		</el-row>
	</el-card>
</div>

1.4 完成选择商品分类区域的级联选择框

<!-- 选择商品分类区域 -->
<el-row class="cat_opt">
	<el-col>
		<span>选择商品分类:</span>
		<!-- 选择商品分类的级联选择框 -->
		<el-cascader expand-trigger="hover" :options="catelist" :props="cateProps" v-model="selectedCateKeys" @change="handleChange">
		</el-cascader>
	</el-col>
</el-row>

data() {
	return {
		//分类列表
		cateList:[],
		//用户在级联下拉菜单中选中的分类id
		selectedCateKeys:[],
		//配置级联菜单中数据如何展示
		cateProps: {
			value: 'cat_id',
			label: 'cat_name',
			children: 'children'
		}
	}
},
created() {
	this.getCateList()
},
methods: {
	async getCateList(){
		//获取所有的商品分类列表
		const { data: res } = await this.$http.get('categories')

		if (res.meta.status !== 200) {
			return this.$message.error('获取分类数据失败')
		}
		//将数据列表赋值给cateList
		this.cateList = res.data
	},
	handleChange(){
		//当用户在级联菜单中选择内容改变时触发
		console.log(this.selectedCateKeys);
	}
}

1.5 展示动态参数以及静态属性数据

<!-- tab页签区域 -->
<el-tabs v-model="activeName" @tab-click="handleTabClick">
	<!-- 添加动态参数的面板 将标签页改为many -->
	<el-tab-pane label="动态参数" name="many">
		<el-button size="mini" type="primary" :disabled="isButtonDisabled">添加参数</el-button>
		<!-- 动态参数表格 -->
		<el-table :data="manyTableData" border stripe>
			<!-- 展开行 -->
			<el-table-column type="expand"></el-table-column>
			<!-- 索引列 -->
			<el-table-column type="index"></el-table-column>
			<el-table-column label="参数名称" prop="attr_name"></el-table-column>
			<el-table-column label="操作">
				<template slot-scope="scope">
					<el-button size="mini" type="primary" icon="el-icon-edit">编辑</el-button>
					<el-button size="mini" type="danger" icon="el-icon-delete">删除</el-button>
				</template>
			</el-table-column>
		</el-table>
	</el-tab-pane>
	<!-- 添加静态属性的面板 将标签页改为only -->
	<el-tab-pane label="静态属性" name="only">
		<el-button size="mini" type="primary" :disabled="isButtonDisabled">添加属性</el-button>
		<!-- 静态属性表格 -->
		<el-table :data="onlyTableData" border stripe>
			<!-- 展开行 -->
			<el-table-column type="expand"></el-table-column>
			<!-- 索引列 -->
			<el-table-column type="index"></el-table-column>
			<el-table-column label="属性名称" prop="attr_name"></el-table-column>
			<el-table-column label="操作">
				<template slot-scope="scope">
					<el-button size="mini" type="primary" icon="el-icon-edit">编辑</el-button>
					<el-button size="mini" type="danger" icon="el-icon-delete">删除</el-button>
				</template>
			</el-table-column>
		</el-table>
	</el-tab-pane>
</el-tabs>

data() {
	return {
		//tab页签激活显示的页签项
		activeName: 'many',
		//用来保存动态参数数据
		manyTableData: [],
		//用来保存静态属性数据
		onlyTableData: []
	}
},

methods: {
	// 级联选择框选中项变化,会触发这个函数
	handleChange() {
		this.getParamsData()
	},
	// tab 页签点击事件的处理函数
	handleTabClick() {
		this.getParamsData()
	},
	// 获取参数的列表数据
	async getParamsData() {
		// 证明选中的不是三级分类
		if (this.selectedCateKeys.length !== 3) {
			this.selectedCateKeys = []
			this.manyTableData = []
			this.onlyTableData = []
			return
		}
		// 证明选中的是三级分类
		// 根据所选分类的Id,和当前所处的面板,获取对应的参数
		const { data: res } = await this.$http.get(`categories/${this.cateId}/attributes`,{params: { sel: this.activeName }})
		if (res.meta.status !== 200) {
			return this.$message.error('获取参数列表失败!')
		}

		if (this.activeName === 'many') {
			this.manyTableData = res.data
		} else {
			this.onlyTableData = res.data
		}
	}
},

computed: {
	// 如果按钮需要被禁用,则返回true,否则返回false
	isBtnDisabled() {
		if (this.selectedCateKeys.length !== 3) {
			return true
		}
		return false
	},
	// 当前选中的三级分类的Id
	cateId() {
		if (this.selectedCateKeys.length === 3) {
			return this.selectedCateKeys[2]
		}
		return null
	},
}

1.6 实现添加动态参数和静态属性功能

<!-- 添加参数的对话框 -->
<el-dialog :title="'添加' + titleText" :visible.sync="addDialogVisible" width="50%" @close="addDialogClosed">
	<!-- 添加参数的表单 -->
	<el-form :model="addForm" :rules="addFormRules" ref="addFormRef" label-width="100px">
		<el-form-item :label="titleText" prop="attr_name">
			<el-input v-model="addForm.attr_name"></el-input>
		</el-form-item>
	</el-form>
	<span slot="footer" class="dialog-footer">
		<el-button @click="addDialogVisible = false">取 消</el-button>
		<el-button type="primary" @click="addParams">确 定</el-button>
	</span>
</el-dialog>

data() {
	return {
		//控制添加参数.属性对话框的显示或隐藏
		addDialogVisible: false,
		//添加参数的表单数据对象
		addForm: {
			attr_name: ''
		},
		//添加表单验证规则
		addFormRules: {
			attr_name: [{ required: true, message: '请输入名称', trigger: 'blur' }]
		}
	}
}

// 监听添加对话框的关闭事件
addDialogClosed() {
	this.$refs.addFormRef.resetFields()
},
// 点击按钮,添加参数
addParams() {
	this.$refs.addFormRef.validate(async valid => {
		if (!valid) return
		const { data: res } = await this.$http.post(`categories/${this.cateId}/attributes`,
			{
				attr_name: this.addForm.attr_name,
				attr_sel: this.activeName
			}
		)
		if (res.meta.status !== 201) {
			return this.$message.error('添加参数失败!')
		}
		this.$message.success('添加参数成功!')
		this.addDialogVisible = false
		this.getParamsData()
	})
},

computed: {
	// 动态计算标题的文本
	titleText() {
		if (this.activeName === 'many') {
			return '动态参数'
		}
		return '静态属性'
	}
}

1.7 实现编辑动态参数和静态属性功能

<!-- 修改参数的对话框 -->
<el-dialog :title="'修改' + titleText" :visible.sync="editDialogVisible" width="50%" @close="editDialogClosed">
	<!-- 添加参数的对话框 -->
	<el-form :model="editForm" :rules="editFormRules" ref="editFormRef" label-width="100px">
		<el-form-item :label="titleText" prop="attr_name">
			<el-input v-model="editForm.attr_name"></el-input>
		</el-form-item>
	</el-form>
	<span slot="footer" class="dialog-footer">
		<el-button @click="editDialogVisible = false">取 消</el-button>
		<el-button type="primary" @click="editParams">确 定</el-button>
	</span>
</el-dialog>

data() {
	return {
		//控制修改参数.属性对话框的显示或隐藏
		editDialogVisible:false,
		//修改参数.属性对话框中的表单
		editForm:{
			attr_name:''
		},
		//修改表单的验证规则
		editFormRules:{
			attr_name:[{ required: true, message: '请输入名称', trigger: 'blur' }]
		}
	}
}

// 点击按钮,展示修改的对话框
async showEditDialog(attr_id) {
	// 查询当前参数的信息
	const { data: res } = await this.$http.get(`categories/${this.cateId}/attributes/${attr_id}`,
		{params: { attr_sel: this.activeName }})

	if (res.meta.status !== 200) {
		return this.$message.error('获取参数信息失败!')
	}
	this.editForm = res.data
	this.editDialogVisible = true
},
// 重置修改的表单
editDialogClosed() {
	this.$refs.editFormRef.resetFields()
},
// 点击按钮,修改参数信息
editParams() {
	this.$refs.editFormRef.validate(async valid => {
		if (!valid) return
		const { data: res } = await this.$http.put(
			`categories/${this.cateId}/attributes/${this.editForm.attr_id}`,
			{ attr_name: this.editForm.attr_name, attr_sel: this.activeName }
		)

		if (res.meta.status !== 200) {
			return this.$message.error('修改参数失败!')
		}
		this.$message.success('修改参数成功!')
		this.getParamsData()
		this.editDialogVisible = false
	})
},

1.8 实现删除动态参数和静态属性功能

<el-button size="mini" type="danger" icon="el-icon-delete" @click="removeParams(scope.row.attr_id)">删除</el-button>

// 根据Id删除对应的参数项
async removeParams(attr_id) {
	const confirmResult = await this.$confirm(
		'此操作将永久删除该参数, 是否继续?',
		'提示',
		{
			confirmButtonText: '确定',
			cancelButtonText: '取消',
			type: 'warning'
		}
	).catch(err => err)

	// 用户取消了删除的操作
	if (confirmResult !== 'confirm') {
		return this.$message.info('已取消删除!')
	}

	// 删除的业务逻辑
	const { data: res } = await this.$http.delete(`categories/${this.cateId}/attributes/${attr_id}`)

	if (res.meta.status !== 200) {
		return this.$message.error('删除参数失败!')
	}

	this.$message.success('删除参数成功!')
	this.getParamsData()
},

总结

今天的内容主要是分类参数的增删改查操作,要注意标签页和下拉菜单的使用方法。总体来说比较简单,易于掌握。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小陈工

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值