Commit a9d3dbb5 authored by 皮倩雯's avatar 皮倩雯

fix: '网关配置万能模板双击打开仅支持查看'

parent 117b7339
Pipeline #62687 passed with stages
......@@ -527,8 +527,13 @@ const GateConfig = () => {
scroll={{ y: 'calc(100vh - 380px)', x: 'max-content' }}
onRow={record => ({
onDoubleClick: event => {
console.log(record);
event.stopPropagation();
edit(record);
if (record.key == 'CityServer') {
look(record);
} else {
edit(record);
}
}, // 双击
})}
pagination={{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment