xy 10 months ago
parent ae697f0a18
commit c50e8d3fff

@ -493,6 +493,23 @@ export default {
};
},
methods: {
contextMenuClickEvent({ menu, row, column }) {
switch (menu.code) {
case 'edit':
//
if (row && column) {
const target = this.$router.resolve({
path: '/flow/edit',
query: {
flow_id: row.id
}
})
window.open(target.href, '_blank')
}
break
default:
}
},
contentFormatter(row) {
const { data, fields } = row
let text = ''

Loading…
Cancel
Save