Commit 96545af776e462137a83fc73e0ffba871c4b907e
1 parent
cd3df1f7
fix: hideen import && export function
Showing
2 changed files
with
14 additions
and
14 deletions
... | ... | @@ -22,26 +22,26 @@ |
22 | 22 | <meta name="mobile-web-app-capable" content="yes"> |
23 | 23 | <meta name="theme-color" content="#d89000"> |
24 | 24 | |
25 | - <link rel="stylesheet" href="./js/plugin/layui/css/layui.css?v=1664184574262"> | |
25 | + <link rel="stylesheet" href="./js/plugin/layui/css/layui.css?v=1670325027797"> | |
26 | 26 | |
27 | 27 | <!-- load configure file --> |
28 | - <script src="./js/config/config.js?v=1664184574262"></script> | |
28 | + <script src="./js/config/config.js?v=1670325027797"></script> | |
29 | 29 | |
30 | 30 | <!-- crypto-js --> |
31 | - <script src="./js/plugin/crypto-js/crypto-js.js?v=1664184574262"></script> | |
31 | + <script src="./js/plugin/crypto-js/crypto-js.js?v=1670325027797"></script> | |
32 | 32 | |
33 | 33 | <!-- storage persistent --> |
34 | - <script src="./js/const/persistentStorage.js?v=1664184574262"></script> | |
34 | + <script src="./js/const/persistentStorage.js?v=1670325027797"></script> | |
35 | 35 | <!-- Global const --> |
36 | - <script src="./js/const/const.js?v=1664184574262"></script> | |
36 | + <script src="./js/const/const.js?v=1670325027797"></script> | |
37 | 37 | |
38 | 38 | <!-- Axios --> |
39 | - <script src="./js/plugin/axios/axios.min.js?v=1664184574262"></script> | |
40 | - <script src="./js/plugin/axios/DefHttp.js?v=1664184574262"></script> | |
41 | - <script src="./js/api/index.js?v=1664184574262"></script> | |
39 | + <script src="./js/plugin/axios/axios.min.js?v=1670325027797"></script> | |
40 | + <script src="./js/plugin/axios/DefHttp.js?v=1670325027797"></script> | |
41 | + <script src="./js/api/index.js?v=1670325027797"></script> | |
42 | 42 | |
43 | 43 | <!-- load script --> |
44 | - <script src="./js/config/loadScript.js?v=1664184574262"></script> | |
44 | + <script src="./js/config/loadScript.js?v=1670325027797"></script> | |
45 | 45 | |
46 | 46 | <!-- act editor --> |
47 | 47 | <!-- <script src="https://oss.yuntengcloud.com/iotdocs/thingskit-scada/ace.js"></script> --> |
... | ... | @@ -54,7 +54,7 @@ |
54 | 54 | <!-- <script src="https://vjs.zencdn.net/7.10.2/video.min.js"></script> --> |
55 | 55 | <!-- <script src="https://oss.yuntengcloud.com/iotdocs/thingskit-scada/video.min.js"></script> --> |
56 | 56 | |
57 | - <script src="./js/plugin/layui/layui.js?v=1664184574262"></script> | |
57 | + <script src="./js/plugin/layui/layui.js?v=1670325027797"></script> | |
58 | 58 | <!-- <link rel="stylesheet" href="https://cdnjs.loli.net/ajax/libs/layui/2.6.8/css/layui.min.css" |
59 | 59 | integrity="sha512-iQBJbsNHXUcgEIgWThd2dr8tOdKPvICwqjPEZYY81z3eMya44A5MiAqfWSCh+Ee1YzNYkdrI982Qhwgr8LEYOQ==" |
60 | 60 | crossorigin="anonymous" referrerpolicy="no-referrer" /> |
... | ... | @@ -63,7 +63,7 @@ |
63 | 63 | crossorigin="anonymous" referrerpolicy="no-referrer"></script> --> |
64 | 64 | |
65 | 65 | <!-- 引入修改样式 --> |
66 | - <link rel="stylesheet" href="./styles/formatChange.css?v=1664184574262"> | |
66 | + <link rel="stylesheet" href="./styles/formatChange.css?v=1670325027797"> | |
67 | 67 | |
68 | 68 | <script type="text/javascript"> |
69 | 69 | /** |
... | ... | @@ -306,7 +306,7 @@ |
306 | 306 | var supportedDomain = (hostName.substring(hostName.length - 8, hostName.length) === '.draw.io') || |
307 | 307 | (hostName.substring(hostName.length - 13, hostName.length) === '.diagrams.net'); |
308 | 308 | |
309 | - const releaseVersion = '1664184574262' | |
309 | + const releaseVersion = '1670325027797' | |
310 | 310 | const appMinSrc = Enable_OSS ? `${OSS_Prefix}app.min.js?v=${releaseVersion}` : `js/app.min.js?v=${releaseVersion}` |
311 | 311 | function loadAppJS() { |
312 | 312 | mxscript(appMinSrc, function () { | ... | ... |
... | ... | @@ -5053,7 +5053,7 @@ App.prototype.updateButtonContainer = function () { |
5053 | 5053 | this.currentFile.ui.actions.get('open').funct() |
5054 | 5054 | console.log(this) |
5055 | 5055 | })); |
5056 | - this.leftContainer.appendChild(this.importButton); | |
5056 | + // this.leftContainer.appendChild(this.importButton); | |
5057 | 5057 | |
5058 | 5058 | // TODO thingsKit 导出案例 |
5059 | 5059 | this.exportButton = document.createElement('div'); |
... | ... | @@ -5083,7 +5083,7 @@ App.prototype.updateButtonContainer = function () { |
5083 | 5083 | |
5084 | 5084 | savefiles(this.currentFile.data, '未命名.xml') |
5085 | 5085 | })); |
5086 | - this.leftContainer.appendChild(this.exportButton); | |
5086 | + // this.leftContainer.appendChild(this.exportButton); | |
5087 | 5087 | |
5088 | 5088 | // TODO thingsKit 锁定 / 解锁 按钮 |
5089 | 5089 | this.lockButton = document.createElement('div'); | ... | ... |