{
type: "button",
icon: "fa fa-trash",
level: "link",
className: "p-0 delete-btn",
style: {
color: "#ff4d4f",
padding: "4px",
fontSize: "14px",
},
tooltip: "删除",
onEvent: {
click: {
actions: [
{
actionType: "confirmDialog",
dialog: {
title: "系统提示",
msg: '您确定要删除此模版吗?',
},
},
{
actionType: "custom",
script: window.AmisTableUtils['${this.instanceKey}'].deleteMModel('${item.id}'),
},
],
},
},
},
怎么让这个弹窗挂在指定的元素下