当前位置:网站首页>El table column row button anti weight control loading
El table column row button anti weight control loading
2022-06-29 15:44:00 【*๛ก(ー ̀ω ー ́ ก) 】
No initialization is required el-table Of :data, Direct addition :loading="scope.row.installBtn" that will do !
<el-table-column label=" operation ">
<template slot-scope="scope">
<el-button
:loading="scope.row.installBtn" size="mini"
@click="handleInstall(scope.row)" type="primary"> install </el-button> </template> </el-table-column> handleInstall(row){
row.installBtn = true request ...{
row.installBtn = false
}
If requested, use request.js The package is special , On error row.installBtn = false Don't take effect , be :(el-table Of :data=dataList)
<el-table-column label=" operation ">
<template slot-scope="scope">
<el-button
:loading="scope.row.installBtn" size="mini"
@click="handleInstall(scope.row,scope.$index)" type="primary"> install </el-button> </template> </el-table-column> handleInstall(row,currentIndex){
this.$set(this.dataList[currentIndex],'installBtn',true) request ...{
this.$set(this.dataList[currentIndex],'installBtn',false)
}
边栏推荐
- Mingdeyang xilinx-k7-325t/410t core board data manual
- 11. application layer data transmission format / port number -bite
- Scroll, do you understand?
- Chapter IX app project test (the end of this chapter)
- Take another picture of cloud redis' improvement path
- Training mode of deep learning network
- 小程序判断数据为不为空
- 「游戏引擎 浅入浅出」98. SubstancePainter插件开发
- 14.ip protocol -bite
- File common tool class, stream related application (record)
猜你喜欢
随机推荐
深入理解 Promise 之手把手教你写一版
Development and application of NFT chain Games: Six noteworthy NFT trends in 2022
MCS: discrete random variable Pascal Distribution
.NET程序配置文件操作(ini,cfg,config)
JS will have variable promotion and function promotion
List集合详细讲解
MySQL开发规范.pdf
LeetCode笔记:Biweekly Contest 81
Bash summary online log
Kotlin annotation declaration and use
Neural network for remote sensing image processing
LeetCode-234-回文链表
MCS: discrete random variable - Hyper geometric distribution
LeetCode-1188. 设计有限阻塞队列
postgresql源码学习(24)—— 事务日志⑤-日志写入WAL Buffer
Training mode of deep learning network
极化SAR几种成像模式
Chapter IX app project test (4) test tools
Google 软件版本经历周期
Unity C basic review 28 - delegation with return (p449)








