VUE项目实战46完成参数的编辑和删除功能
Posted 光仔December
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE项目实战46完成参数的编辑和删除功能相关的知识,希望对你有一定的参考价值。
接上篇《45、编写添加参数和添加属性的功能》
上一篇我们完成了“添加参数”和“添加属性”的功能,本篇我们来完成参数的编辑和删除功能。
一、要实现的效果
我们要实现在点击“修改”按钮的时候,可以对动态参数或静态属性进行修改:
里面会自动带出当前的参数或属性信息。
思路:因为修改对话框和添加对话框的元素基本一致,可以复制添加对话框的代码修改为修改对话框。
二、绘制修改对话框
首先我们赋值添加对话框,在其下面粘贴修改为以下代码:
<!-- 修改参数的对话框 -->
<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区定义:
//控制修改对话框的显示与否
editDialogVisible: false,
//修改参数的表单数据对象
editForm:
attr_name: ''
,
//修改表单的验证规则对象
editFormRules:
attr_name: [required: true,message:'请输入参数名称',trigger: 'blur']
方法区定义“editDialogClosed”与“editParams”方法:
//监听修改对话框的关闭事件
editDialogClosed()
//重置表单的所有内容
this.$refs.editFormRef.resetFields();
,
//点击按钮,修改参数
editParams()
然后给动态参数和静态属性的修改按钮都添加一个名为“showEditDialog”的单击事件,用来触发修改对话框:
<el-button type="primary" size="mini" icon="el-icon-edit"
@click="showEditDialog()">编辑</el-button>
然后在方法区定义该方法:
//点击按钮,显示修改对话框
showEditDialog()
this.editDialogVisible = true;
效果:
三、在修改对话框中显示属性值
我们要在弹出修改对话框时,获取当前参数ID,以及当前的分类ID,去查询该参数的详情信息,带到编辑页面上。
首先在编辑按钮的触发事件中,通过作用域插槽scope对象,获取当前行属性的id“scope.row.attr_id”:
<el-table-column label="操作">
<template slot-scope="scope">
<el-button type="primary" size="mini"
icon="el-icon-edit" @click="showEditDialog(scope.row.attr_id)">编辑</el-button>
<el-button type="danger" size="mini"
icon="el-icon-delete">删除</el-button>
</template>
</el-table-column>
然后在showEditDialog方法中通过attr_id获取该参数的详情,API文档如下:
showEditDialog方法编写如下:
//点击按钮,显示修改对话框
async showEditDialog(attr_id)
const data:res = await this.$http.get("categories/"+this.cateId+"/attributes/"+attr_id,
params: attr_sel:this.activeName=="first"?"many":"only"
);
if(res.meta.status!==200)
return this.$message.error('获取参数信息失败!');
this.editForm = res.data;
this.editDialogVisible = true;
效果:
四、点击确定修改参数
我们最后一步来完成点击确定之后的修改入库操作,需要用到的API如下:
我们完善editParams方法,首先在提交之前先进行表单的校验,校验成功之后触发上面的API提交修改入库:
//点击按钮,修改参数
editParams()
this.$refs.editFormRef.validate(async valid =>
if(!valid) return;
let attr_id = this.editForm.attr_id;
const data:res = await this.$http.put("categories/"+this.cateId+"/attributes/"+attr_id,
attr_name: this.editForm.attr_name,
attr_sel: this.activeName=="first"?"many":"only"
);
if(res.meta.status!==200)
return this.$message.error('修改参数失败!');
this.$message.success("修改参数成功!");
this.editDialogVisible = false;//关闭对话框
this.getParamsData();//重新加载数据
)
,
效果:
五、完成参数的删除功能
我们要实现在点击某一行参数的删除按钮时,删除该行参数以及其下面所有选项:
需要调用的API如下:
我们只需要在删除按钮的点击事件里将参数id传入进去即可。首先我们在动态参数和静态属性的删除按钮中都指定一个名为“removeParams”的方法,然后利用作用域插槽scope传入attr_id参数:
<el-button type="danger" size="mini"
icon="el-icon-delete" @click="removeParams(scope.row.attr_id)">删除</el-button>
然后在方法区指定该方法,编写删除逻辑:
//点击按钮,删除参数
async removeParams(attr_id)
//弹框询问用户是否删除数据
this.$confirm('此操作将永久删除该参数, 是否继续?', '提示',
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
).then(async () =>
const data: res = await this.$http.delete("categories/"+this.cateId+"/attributes/"+attr_id);
if(res.meta.status!==200)
return this.$message.error('删除参数失败!');
this.$message(type: 'success',message: '删除参数成功!');
this.getParamsData();//重新加载数据
).catch(() =>
this.$message(type: 'info',message: '已取消删除' );
);
效果:
至此我们完成了参数的编辑和删除功能。
下一篇我们来完成渲染参数下面的选项。
参考:
黑马程序员(www.itheima.com)Vue项目实战教学视频
转载请注明出处:https://blog.csdn.net/u013517797/article/details/124213152
创作挑战赛 新人创作奖励来咯,坚持创作打卡瓜分现金大奖以上是关于VUE项目实战46完成参数的编辑和删除功能的主要内容,如果未能解决你的问题,请参考以下文章