Showing
1 changed file
with
9 additions
and
8 deletions
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2022-08-29 14:31:20 | 2 | * @Date: 2022-08-29 14:31:20 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-07-23 10:03:25 | 4 | + * @LastEditTime: 2024-07-25 16:33:14 |
| 5 | * @FilePath: /data-table/src/components/OrgPickerField/MyComponent.vue | 5 | * @FilePath: /data-table/src/components/OrgPickerField/MyComponent.vue |
| 6 | * @Description: 树形组件 | 6 | * @Description: 树形组件 |
| 7 | --> | 7 | --> |
| ... | @@ -322,13 +322,14 @@ const openTree = () => { | ... | @@ -322,13 +322,14 @@ const openTree = () => { |
| 322 | // TODO:等待后台数据显示更多详情字段 | 322 | // TODO:等待后台数据显示更多详情字段 |
| 323 | const clickNode = (node) => { // 点击显示选择详情 | 323 | const clickNode = (node) => { // 点击显示选择详情 |
| 324 | if (!props.component_props.readonly) return false; // 非只读不予许操作 | 324 | if (!props.component_props.readonly) return false; // 非只读不予许操作 |
| 325 | - showDialog({ | 325 | + // TODO:暂时隐藏等待后续接口提供更多字段 显示 |
| 326 | - title: '详情', | 326 | + // showDialog({ |
| 327 | - message: `${node.id}-${node.name}-${node.type}`, | 327 | + // title: '详情', |
| 328 | - confirmButtonColor: styleColor.baseColor | 328 | + // message: `${node.id}-${node.name}-${node.type}`, |
| 329 | - }).then(() => { | 329 | + // confirmButtonColor: styleColor.baseColor |
| 330 | - // on close | 330 | + // }).then(() => { |
| 331 | - }); | 331 | + // // on close |
| 332 | + // }); | ||
| 332 | } | 333 | } |
| 333 | 334 | ||
| 334 | const emitCheckedGroup = ref({ | 335 | const emitCheckedGroup = ref({ | ... | ... |
-
Please register or login to post a comment