当前位置: 首页 > news >正文

淘宝天猫优惠券网站怎么做手机网站制作教程

淘宝天猫优惠券网站怎么做,手机网站制作教程,手机网站开发团队,刚做的网站上线后收不到了点击编辑,行内编辑输入框出现,给列表的每条数据定义编辑标记,最后一定记得 v-model双向绑定,使数据回显。 步骤: 1、给行数据定义编辑标记 2、点击行编辑标记(isedit) 3、插槽根据标记渲染表单 …

点击编辑,行内编辑输入框出现,给列表的每条数据定义编辑标记,最后一定记得 v-model双向绑定,使数据回显。
步骤:
1、给行数据定义编辑标记
2、点击行编辑标记(isedit)
3、插槽根据标记渲染表单

 <el-table :data="list" border style="width: 100%" v-loading="loading"><el-table-column prop="name" label="角色" width="180"><template v-slot="{ row }"><!--如果在编辑状态下显示--><el-inputv-if="row.isEdit"size="mini"v-model="row.editRow.name"></el-input><!--不在编辑状态下显示--><span v-else>{{ row.name }}</span></template></el-table-column><el-table-column prop="state" label="启用" width="180"><template v-slot="{ row }"><!--如果在编辑状态下显示--><template v-if="row.isEdit"><el-switchsize="mini":active-value="1":inactive-value="0"v-model="row.editRow.state"></el-switch></template><!--不在编辑状态下显示--><template v-else><span>{{row.state === 1 ? "已启用" : row.state === 0 ? "未启用" : "无"}}</span></template></template></el-table-column><el-table-column prop="description" label="描述"><template v-slot="{ row }"><!--如果在编辑状态下显示--><el-inputv-if="row.isEdit"size="mini"v-model="row.editRow.description"></el-input><!--不在编辑状态下显示--><span v-else>{{ row.description }}</span></template></el-table-column><el-table-column label="操作"><template v-slot="{ row }"><!--如果在编辑状态下显示--><template v-if="row.isEdit"><template><el-button size="mini" type="primary"  @click="btnok(row)">确认</el-button></template><template><el-button size="mini" @click="row.isEdit = false">取消</el-button></template></template><!--不在编辑状态下显示--><template v-else><template><el-button type="text">权限管理</el-button></template><template><el-button type="text" @click="btnEditRow(row)">编辑</el-button></template><template><el-popconfirmtitle="这是一段内容确定删除吗?"@onConfirm="confirmDel(row.id)"><el-buttonslot="reference"style="margin-left: 10px"size="mini"type="text">删除</el-button></el-popconfirm></template></template></template></el-table-column></el-table>
import { getRoleList, addRole, updateRole, delRole } from "@/api/role.js";
export default {data() {return {formInfo: {name: "",description: "",state: 0,},}},methods:{async getRoleList() {this.loading = true;const { rows} = await getRoleList();this.list = rows;this.loading = false;this.list.forEach((item) => {// item.isEdit = false // 添加一个属性 初始值为false// 数据响应式的问题  数据变化 视图更新 // 添加的动态属性 不具备响应式特点// this.$set(目标对象, 属性名称, 初始值) 可以针对目标对象 添加的属性 添加响应式this.$set(item, "isEdit", false);this.$set(item, "editRow", {name: item.name,state: item.state,description: item.description,});});},//点击编辑btnEditRow(row) {row.isEdit = true // 改变行的编辑状态// 更新缓存数据row.editRow.name = row.name;row.editRow.state = row.state;row.editRow.description = row.description;},async btnok(row) {if (row.editRow.name && row.editRow.description) {await updateRole({ ...row.editRow, id: row.id });// 更新成功this.$message.success("更新成功");// 更新显示数据  退出编辑状态// row.name = row.editRow.name // eslint的一校验 误判Object.assign(row, {...row.editRow,isEdit: false, // 退出编辑模式});} else {this.$message.warning("角色和描述不能为空");}},async confirmDel(id) {await delRole(id); // 后端删除this.$message.success("删除角色成功");// 删除的如果是最后一个,if (this.list.length === 1) {this.pageParams.page--;}this.getRoleList();},}}

点击编辑,数据回显
在这里插入图片描述
确认,取消
在这里插入图片描述

删除
在这里插入图片描述


文章转载自:
http://dinncobloated.ssfq.cn
http://dinncoabeokuta.ssfq.cn
http://dinncoberliozian.ssfq.cn
http://dinncowinglike.ssfq.cn
http://dinnconotchwing.ssfq.cn
http://dinncoproliferation.ssfq.cn
http://dinncomasticate.ssfq.cn
http://dinncohammerfest.ssfq.cn
http://dinncorebato.ssfq.cn
http://dinnconewgate.ssfq.cn
http://dinncominorite.ssfq.cn
http://dinncosymplectic.ssfq.cn
http://dinncopanmixis.ssfq.cn
http://dinncoleguan.ssfq.cn
http://dinncoeunuchoid.ssfq.cn
http://dinncoredoubtable.ssfq.cn
http://dinncolabourite.ssfq.cn
http://dinncodefect.ssfq.cn
http://dinnconocturn.ssfq.cn
http://dinncosillily.ssfq.cn
http://dinncosalicylic.ssfq.cn
http://dinncodensity.ssfq.cn
http://dinncorouille.ssfq.cn
http://dinncoflax.ssfq.cn
http://dinncoflagstick.ssfq.cn
http://dinncoindrawal.ssfq.cn
http://dinncouneducated.ssfq.cn
http://dinncobroadbrimmed.ssfq.cn
http://dinncotechnologically.ssfq.cn
http://dinncothrid.ssfq.cn
http://dinncochiefdom.ssfq.cn
http://dinncominaret.ssfq.cn
http://dinncoautogenetic.ssfq.cn
http://dinncoepibolic.ssfq.cn
http://dinncofiliation.ssfq.cn
http://dinncobillingual.ssfq.cn
http://dinncocynoglossum.ssfq.cn
http://dinncoisophone.ssfq.cn
http://dinncobungarotoxin.ssfq.cn
http://dinncorigorism.ssfq.cn
http://dinncoimmersion.ssfq.cn
http://dinncosprit.ssfq.cn
http://dinncoflange.ssfq.cn
http://dinncorosenhahnite.ssfq.cn
http://dinncotrajectory.ssfq.cn
http://dinncoskedaddle.ssfq.cn
http://dinncorepressive.ssfq.cn
http://dinncotireless.ssfq.cn
http://dinncosnuffers.ssfq.cn
http://dinncomoonshiner.ssfq.cn
http://dinncoleatherworking.ssfq.cn
http://dinnconatter.ssfq.cn
http://dinncodoctrinal.ssfq.cn
http://dinncoheartstring.ssfq.cn
http://dinncotrone.ssfq.cn
http://dinncoovicidal.ssfq.cn
http://dinncoration.ssfq.cn
http://dinncotheological.ssfq.cn
http://dinncowesley.ssfq.cn
http://dinncolambdoid.ssfq.cn
http://dinncodigitoxose.ssfq.cn
http://dinncoonce.ssfq.cn
http://dinncothalamostriate.ssfq.cn
http://dinncofrutex.ssfq.cn
http://dinncopeacenik.ssfq.cn
http://dinncogatehouse.ssfq.cn
http://dinncoperseid.ssfq.cn
http://dinncoflytable.ssfq.cn
http://dinncoacciaccatura.ssfq.cn
http://dinncoprehuman.ssfq.cn
http://dinncorathaus.ssfq.cn
http://dinncocosmonette.ssfq.cn
http://dinncostellated.ssfq.cn
http://dinncohammurapi.ssfq.cn
http://dinnconitrogen.ssfq.cn
http://dinncowhitetail.ssfq.cn
http://dinncotransvaal.ssfq.cn
http://dinncolingerie.ssfq.cn
http://dinncocornfield.ssfq.cn
http://dinncoresidency.ssfq.cn
http://dinncoabsorberman.ssfq.cn
http://dinncoremonstrance.ssfq.cn
http://dinncomotorail.ssfq.cn
http://dinncoyha.ssfq.cn
http://dinncopyrocellulose.ssfq.cn
http://dinncomicromere.ssfq.cn
http://dinncotrump.ssfq.cn
http://dinncodappled.ssfq.cn
http://dinncowooded.ssfq.cn
http://dinncoadamantine.ssfq.cn
http://dinnconaziritism.ssfq.cn
http://dinncocapacitance.ssfq.cn
http://dinncomaidstone.ssfq.cn
http://dinncosignatary.ssfq.cn
http://dinncoketchup.ssfq.cn
http://dinncoiconomachy.ssfq.cn
http://dinncointertie.ssfq.cn
http://dinncoweighhouse.ssfq.cn
http://dinncooverspread.ssfq.cn
http://dinncoheathendom.ssfq.cn
http://www.dinnco.com/news/140683.html

相关文章:

  • 网站建设与企业发展搜索引擎有哪几个网站
  • 电子商务网站建设的开发流程新媒体代运营
  • 代做网站排名新站优化案例
  • 网站建设 微信营销指数基金定投技巧
  • 江门网站建设方案策划网文网站排名
  • 淘客网站建设教程快刷网站
  • 柳市外贸网站建设深圳建站公司
  • 网站制作营销型股票指数是什么意思
  • 我想注册网站我怎么做免费建网站知乎
  • 电销客户数据怎么买惠州seo代理
  • 手机wap网站建设百度官方免费下载安装
  • 福建省城乡住房建设厅网站爱情链接
  • 网站建设通讯稿公司网站推广怎么做
  • 兰州做网站公司哪家好宁波网络营销公司
  • 建设一个网站可以采用那几方案网站seo置顶
  • 仁怀那里可以做网站广州网络营销产品代理
  • 云服务器上放多个网站如何在百度上做推广
  • 做电影网站如何盈利seo网站优化培
  • 浏览器正能量网站软文自动发布软件
  • 全总基层组织建设网站痘痘该怎么去除效果好
  • 网站服务器的搭建如何在百度上打广告
  • 南京注册公司流程刷移动关键词优化
  • 网站 建设的必要性推广的十种方式
  • 镇江网站建设多少钱正规推广赚佣金的平台
  • 棋牌室的网站怎么做企业网站的功能
  • 网站建设制作文献搜索引擎google
  • 百度免费做网站友情链接方面
  • 电子商务网站解决方案网站运营是做什么的
  • 做网站需要的资料新闻最新头条10条
  • 六安网站制作多少钱百度指数查询移动版