From a26a322ca3622550cd79e5e5060a9147748c19f4 Mon Sep 17 00:00:00 2001 From: song Date: Wed, 1 Sep 2021 18:09:17 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=88=97=E8=A1=A8=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/index.html | 2 +- rest/project.http | 10 +- src/App.vue | 11 +- src/common/portrait.styl | 14 +- src/components/HeadNav/HeadNav.vue | 3 +- src/components/List/List.vue | 303 ++++++++++++++++++----- src/components/TimePicker/TimePicker.vue | 2 +- src/config/api.js | 3 + src/main.js | 3 + src/plugins/ant-design-vue.js | 2 + 10 files changed, 267 insertions(+), 86 deletions(-) diff --git a/public/index.html b/public/index.html index d05e911..137c6ea 100644 --- a/public/index.html +++ b/public/index.html @@ -1,5 +1,5 @@ - + diff --git a/rest/project.http b/rest/project.http index 7d99a56..c69c535 100644 --- a/rest/project.http +++ b/rest/project.http @@ -1,14 +1,14 @@ ### login # @name login -POST https://www.tall.wiki/gateway/tall/v1.0/users/signin +POST https://test.tall.wiki/gateway/tall/v1.0/users/signin content-type: application/json;charset=utf-8 { "client": 1, "data": { - "credential": "song", - "identifier": "999999" + "credential": "123456", + "identifier": "zb" }, "scene": 0, "type": 3 @@ -18,7 +18,7 @@ content-type: application/json;charset=utf-8 ### 导入插件 # POST http://127.0.0.1:7220/plugin/import -POST http://www.tall.wiki/gateway/pluginshop/plugin/import +POST http://test.tall.wiki/gateway/pluginshop/plugin/import Content-Type: multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW Authorization: Bearer {{login.response.body.$.data.token}} @@ -34,6 +34,6 @@ Content-Type: xlsx ### 更新redis内的插件信息 -POST http://www.tall.wiki/gateway/pluginshop/plugin/updatePluginOfRedis +POST http://test.tall.wiki/gateway/pluginshop/plugin/updatePluginOfRedis content-type: application/json;charset=utf-8 Authorization: Bearer {{login.response.body.$.data.token}} diff --git a/src/App.vue b/src/App.vue index 66d268e..bf8b36c 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,5 +1,5 @@