-
-
加载中
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/projects/IoTCenter/wwwroot/index.js b/projects/IoTCenter/wwwroot/index.js
new file mode 100644
index 00000000..60c5cecf
--- /dev/null
+++ b/projects/IoTCenter/wwwroot/index.js
@@ -0,0 +1,21 @@
+function IoTCenter_index() {
+ return Vue.component('IoTCenter_index', function (resolve, reject) {
+ axios.get("/IoTCenter/index.html").then(function (response) {
+ resolve({
+ template: response.data,
+ data() {
+ return {
+ name: 'home'
+ };
+ },
+ mounted: function () {
+ $('.weui-tabbar__item').on('click', function () {
+ $(this).addClass('weui-bar__item_on').siblings('.weui-bar__item_on').removeClass('weui-bar__item_on');
+ });
+ },
+ methods: {
+ }
+ })
+ });
+ });
+}
\ No newline at end of file
diff --git a/projects/IoTCenter/wwwroot/pages/home.html b/projects/IoTCenter/wwwroot/pages/home.html
deleted file mode 100644
index 0f3d57aa..00000000
--- a/projects/IoTCenter/wwwroot/pages/home.html
+++ /dev/null
@@ -1,23 +0,0 @@
-
\ No newline at end of file
diff --git a/projects/IoTCenter/wwwroot/pages/home.html.js b/projects/IoTCenter/wwwroot/pages/home.html.js
deleted file mode 100644
index 083a73cd..00000000
--- a/projects/IoTCenter/wwwroot/pages/home.html.js
+++ /dev/null
@@ -1,19 +0,0 @@
-var home = Vue.component('home', function (resolve, reject) {
- axios.get("/pages/home.html").then(function (response) {
- resolve({
- template: response.data,
- data() {
- return {
- name: 'home'
- };
- },
- mounted: function () {
- $('.weui-tabbar__item').on('click', function () {
- $(this).addClass('weui-bar__item_on').siblings('.weui-bar__item_on').removeClass('weui-bar__item_on');
- });
- },
- methods: {
- }
- })
- });
-});
\ No newline at end of file
diff --git a/projects/gateway/src/main/resources/static/index.html b/projects/gateway/src/main/resources/static/index.html
index 04754d20..91500030 100644
--- a/projects/gateway/src/main/resources/static/index.html
+++ b/projects/gateway/src/main/resources/static/index.html
@@ -19,13 +19,12 @@
加载中