From c611231a3ddea5b6bfc3da8372c14a34f002392d Mon Sep 17 00:00:00 2001 From: wanggang <76527413@qq.com> Date: Thu, 3 Dec 2020 10:21:07 +0800 Subject: [PATCH] Platform:1.1.0.7 IoTNode:1.1.0.3 Former-commit-id: 79d11e009a449e6acb807e155a92cbe8ea1455c0 Former-commit-id: 8469b4624af821a71379e1c064d0c6b3ac1ca56f --- projects/IoTNode/IoTNode.csproj | 48 ++-- .../Areas/IoTCenter/Views/Shared/_Menu.cshtml | 8 +- projects/Platform/Platform.csproj | 2 +- .../Platform/Views/Shared/_TopMenu.cshtml | 4 +- .../wwwroot/components/shared/layout.html | 265 +++++++++--------- projects/WebMVC/wwwroot/js/iot.js | 2 +- .../wwwroot/routes/admin/command/detail.html | 7 - .../wwwroot/routes/admin/command/index.html | 7 - .../wwwroot/routes/admin/record/index.html | 7 - .../wwwroot/routes/admin/setting/detail.html | 7 - .../wwwroot/routes/admin/setting/index.html | 7 - projects/WebMVC/wwwroot/routes/home.html | 4 +- .../routes/iotcenter/command/detail.html | 7 + .../{admin => iotcenter}/command/edit.html | 2 +- .../routes/iotcenter/command/index.html | 7 + .../routes/{iot => iotcenter}/device.html | 4 +- .../routes/{admin => iotcenter}/index.html | 8 +- .../routes/{iot => iotcenter}/node.html | 6 +- .../routes/{iot => iotcenter}/nodes.html | 2 +- .../routes/{iot => iotcenter}/organs.html | 0 .../routes/{iot => iotcenter}/product.html | 4 +- .../{admin => iotcenter}/record/detail.html | 6 +- .../{admin => iotcenter}/record/edit.html | 0 .../routes/iotcenter/record/index.html | 7 + .../routes/{admin => iotcenter}/system.html | 0 .../routes/settings/setting/detail.html | 7 + .../{admin => settings}/setting/edit.html | 2 +- .../routes/settings/setting/index.html | 7 + 28 files changed, 219 insertions(+), 218 deletions(-) delete mode 100644 projects/WebMVC/wwwroot/routes/admin/command/detail.html delete mode 100644 projects/WebMVC/wwwroot/routes/admin/command/index.html delete mode 100644 projects/WebMVC/wwwroot/routes/admin/record/index.html delete mode 100644 projects/WebMVC/wwwroot/routes/admin/setting/detail.html delete mode 100644 projects/WebMVC/wwwroot/routes/admin/setting/index.html create mode 100644 projects/WebMVC/wwwroot/routes/iotcenter/command/detail.html rename projects/WebMVC/wwwroot/routes/{admin => iotcenter}/command/edit.html (99%) create mode 100644 projects/WebMVC/wwwroot/routes/iotcenter/command/index.html rename projects/WebMVC/wwwroot/routes/{iot => iotcenter}/device.html (98%) rename projects/WebMVC/wwwroot/routes/{admin => iotcenter}/index.html (91%) rename projects/WebMVC/wwwroot/routes/{iot => iotcenter}/node.html (98%) rename projects/WebMVC/wwwroot/routes/{iot => iotcenter}/nodes.html (95%) rename projects/WebMVC/wwwroot/routes/{iot => iotcenter}/organs.html (100%) rename projects/WebMVC/wwwroot/routes/{iot => iotcenter}/product.html (97%) rename projects/WebMVC/wwwroot/routes/{admin => iotcenter}/record/detail.html (74%) rename projects/WebMVC/wwwroot/routes/{admin => iotcenter}/record/edit.html (100%) create mode 100644 projects/WebMVC/wwwroot/routes/iotcenter/record/index.html rename projects/WebMVC/wwwroot/routes/{admin => iotcenter}/system.html (100%) create mode 100644 projects/WebMVC/wwwroot/routes/settings/setting/detail.html rename projects/WebMVC/wwwroot/routes/{admin => settings}/setting/edit.html (99%) create mode 100644 projects/WebMVC/wwwroot/routes/settings/setting/index.html diff --git a/projects/IoTNode/IoTNode.csproj b/projects/IoTNode/IoTNode.csproj index 710f7b39..ba685e75 100644 --- a/projects/IoTNode/IoTNode.csproj +++ b/projects/IoTNode/IoTNode.csproj @@ -4,18 +4,18 @@ true en true - 1.1.0.2 + 1.1.0.3 - - - - + + + + - - - + + + @@ -32,36 +32,36 @@ - true - PreserveNewest + true + PreserveNewest - true - PreserveNewest + true + PreserveNewest - true - PreserveNewest + true + PreserveNewest - true - PreserveNewest + true + PreserveNewest - true - PreserveNewest + true + PreserveNewest - true - PreserveNewest + true + PreserveNewest - true - PreserveNewest + true + PreserveNewest - true - PreserveNewest + true + PreserveNewest diff --git a/projects/Platform/Areas/IoTCenter/Views/Shared/_Menu.cshtml b/projects/Platform/Areas/IoTCenter/Views/Shared/_Menu.cshtml index 0be90f42..ad3ae356 100644 --- a/projects/Platform/Areas/IoTCenter/Views/Shared/_Menu.cshtml +++ b/projects/Platform/Areas/IoTCenter/Views/Shared/_Menu.cshtml @@ -28,14 +28,14 @@ { } - @if (HasPermission("Read-LiveRecord")) - { - - } @if (HasPermission("Read-Command")) { } + @if (HasPermission("Read-LiveRecord")) + { + + } @if (HasPermission("Read-Scene", "Read-SceneCommand", "Read-SceneTimer", "Read-SceneTigger")) {
  • diff --git a/projects/Platform/Platform.csproj b/projects/Platform/Platform.csproj index 7b5ed6e7..efcb213b 100644 --- a/projects/Platform/Platform.csproj +++ b/projects/Platform/Platform.csproj @@ -4,7 +4,7 @@ Zh-CN true true - 1.1.0.6 + 1.1.0.7 diff --git a/projects/Platform/Views/Shared/_TopMenu.cshtml b/projects/Platform/Views/Shared/_TopMenu.cshtml index 75b773c0..b7f1cb05 100644 --- a/projects/Platform/Views/Shared/_TopMenu.cshtml +++ b/projects/Platform/Views/Shared/_TopMenu.cshtml @@ -6,12 +6,12 @@ 首页
  • \ No newline at end of file diff --git a/projects/WebMVC/wwwroot/components/shared/layout.html b/projects/WebMVC/wwwroot/components/shared/layout.html index f1fe02c1..9e8942d6 100644 --- a/projects/WebMVC/wwwroot/components/shared/layout.html +++ b/projects/WebMVC/wwwroot/components/shared/layout.html @@ -9,7 +9,13 @@ 首页 + +