vue点击按钮向弹框中传该行的值

2023-04-10 18:29:37

一、点击按钮弹框,然后传进值id 
在button里面加一个点击事件@click="changedtime(scope.row.id,scope.row)"

<el-table-column prop="change" label="采样时间修改">
					<template v-slot="scope"><!-- v-if="scope.row.selfPayProof" -->
						<span v-if="scope.row.selfPayProof"
						 @click="changestime(scope.row.infoId,scope.row)" class="optGreen">时间更改</span>
					</template>		
				</el-table-column>

弹框设置:data=“Tabledata”

return中定义

调用方法显示弹框时,把当前行的数据赋给TableData

 

 

 

  • 作者:星羽xy
  • 原文链接:https://blog.csdn.net/qq_42485707/article/details/119924045
    更新时间:2023-04-10 18:29:37