hookehuyr

暂时隐藏点击弹框,等待后续接口提供更多字段 显示

<!--
* @Date: 2022-08-29 14:31:20
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-07-23 10:03:25
* @LastEditTime: 2024-07-25 16:33:14
* @FilePath: /data-table/src/components/OrgPickerField/MyComponent.vue
* @Description: 树形组件
-->
......@@ -322,13 +322,14 @@ const openTree = () => {
// TODO:等待后台数据显示更多详情字段
const clickNode = (node) => { // 点击显示选择详情
if (!props.component_props.readonly) return false; // 非只读不予许操作
showDialog({
title: '详情',
message: `${node.id}-${node.name}-${node.type}`,
confirmButtonColor: styleColor.baseColor
}).then(() => {
// on close
});
// TODO:暂时隐藏等待后续接口提供更多字段 显示
// showDialog({
// title: '详情',
// message: `${node.id}-${node.name}-${node.type}`,
// confirmButtonColor: styleColor.baseColor
// }).then(() => {
// // on close
// });
}
const emitCheckedGroup = ref({
......