Commit 9f3d936febc9927c5309824deb2c82ef3d3d42f3
Merge branch 'ww' into 'main'
feat: dynamic data source panel See merge request huang/thingskit-drawio!24
Showing
3 changed files
with
9 additions
and
2 deletions
Too many changes to show.
To preserve performance only 3 of 21 files are displayed.
.DS_Store
deleted
100644 → 0
No preview for this file type
| @@ -31,7 +31,6 @@ | @@ -31,7 +31,6 @@ | ||
| 31 | 31 | ||
| 32 | <script src="./plugins/axios.min.js"></script> | 32 | <script src="./plugins/axios.min.js"></script> |
| 33 | <!-- <script src="./js/jquery/jquery-3.3.1.min.js"></script>--> | 33 | <!-- <script src="./js/jquery/jquery-3.3.1.min.js"></script>--> |
| 34 | - <!-- <script src="./js/jquery.easyui.min.js"></script>--> | ||
| 35 | <link rel="stylesheet" href="https://cdnjs.loli.net/ajax/libs/layui/2.6.8/css/layui.min.css" | 34 | <link rel="stylesheet" href="https://cdnjs.loli.net/ajax/libs/layui/2.6.8/css/layui.min.css" |
| 36 | integrity="sha512-iQBJbsNHXUcgEIgWThd2dr8tOdKPvICwqjPEZYY81z3eMya44A5MiAqfWSCh+Ee1YzNYkdrI982Qhwgr8LEYOQ==" | 35 | integrity="sha512-iQBJbsNHXUcgEIgWThd2dr8tOdKPvICwqjPEZYY81z3eMya44A5MiAqfWSCh+Ee1YzNYkdrI982Qhwgr8LEYOQ==" |
| 37 | crossorigin="anonymous" referrerpolicy="no-referrer"/> | 36 | crossorigin="anonymous" referrerpolicy="no-referrer"/> |
| @@ -345,7 +344,6 @@ | @@ -345,7 +344,6 @@ | ||
| 345 | <!-- <link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">--> | 344 | <!-- <link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">--> |
| 346 | <link rel="mask-icon" href="images/safari-pinned-tab.svg" color="#d89000"> | 345 | <link rel="mask-icon" href="images/safari-pinned-tab.svg" color="#d89000"> |
| 347 | <link rel="stylesheet" type="text/css" href="styles/grapheditor.css"> | 346 | <link rel="stylesheet" type="text/css" href="styles/grapheditor.css"> |
| 348 | - <link rel="stylesheet" type="text/css" href="styles/easyui.css"> | ||
| 349 | <link rel="preconnect" href="https://storage.googleapis.com"> | 347 | <link rel="preconnect" href="https://storage.googleapis.com"> |
| 350 | <link rel="canonical" href="https://app.diagrams.net"> | 348 | <link rel="canonical" href="https://app.diagrams.net"> |
| 351 | <link rel="manifest" href="images/manifest.json"> | 349 | <link rel="manifest" href="images/manifest.json"> |
| @@ -36,6 +36,15 @@ class ConfigurationNodeApi { | @@ -36,6 +36,15 @@ class ConfigurationNodeApi { | ||
| 36 | } | 36 | } |
| 37 | 37 | ||
| 38 | /** | 38 | /** |
| 39 | + * @description 获取所有的网关设备和直连设备 | ||
| 40 | + * @param {string} orgId | ||
| 41 | + * @returns | ||
| 42 | + */ | ||
| 43 | + static getAllGatewayDeviceAndConnectionDevice(orgId) { | ||
| 44 | + return defHttp.get(`/yt/device/list/master/${orgId}`) | ||
| 45 | + } | ||
| 46 | + | ||
| 47 | + /** | ||
| 39 | * @description 查询设备的子设备 | 48 | * @description 查询设备的子设备 |
| 40 | * @param deviceId 设备ID | 49 | * @param deviceId 设备ID |
| 41 | * @returns {Promise<*>} | 50 | * @returns {Promise<*>} |