Commit 9f3d936febc9927c5309824deb2c82ef3d3d42f3

Authored by xp.Huang
2 parents 7e9943df 3bb78c8a

Merge branch 'ww' into 'main'

feat: dynamic data source panel

See merge request huang/thingskit-drawio!24

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 31
32 32 <script src="./plugins/axios.min.js"></script>
33 33 <!-- <script src="./js/jquery/jquery-3.3.1.min.js"></script>-->
34   - <!-- <script src="./js/jquery.easyui.min.js"></script>-->
35 34 <link rel="stylesheet" href="https://cdnjs.loli.net/ajax/libs/layui/2.6.8/css/layui.min.css"
36 35 integrity="sha512-iQBJbsNHXUcgEIgWThd2dr8tOdKPvICwqjPEZYY81z3eMya44A5MiAqfWSCh+Ee1YzNYkdrI982Qhwgr8LEYOQ=="
37 36 crossorigin="anonymous" referrerpolicy="no-referrer"/>
... ... @@ -345,7 +344,6 @@
345 344 <!-- <link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">-->
346 345 <link rel="mask-icon" href="images/safari-pinned-tab.svg" color="#d89000">
347 346 <link rel="stylesheet" type="text/css" href="styles/grapheditor.css">
348   - <link rel="stylesheet" type="text/css" href="styles/easyui.css">
349 347 <link rel="preconnect" href="https://storage.googleapis.com">
350 348 <link rel="canonical" href="https://app.diagrams.net">
351 349 <link rel="manifest" href="images/manifest.json">
... ...
... ... @@ -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 48 * @description 查询设备的子设备
40 49 * @param deviceId 设备ID
41 50 * @returns {Promise<*>}
... ...