From 27e5e66df56e076039688d613a82600131da7959 Mon Sep 17 00:00:00 2001 From: lucky Date: Tue, 15 Dec 2020 13:20:41 +0800 Subject: [PATCH] RFID --- public/index.html | 1 + src/common/index.styl | 7 +- src/components/FastEd/FastEd.vue | 13 +- src/components/LoadCells/LoadCells.vue | 7 +- src/components/Panel/Panel.vue | 32 ++- src/components/RFID/RFID++.vue | 98 --------- src/components/RFID/RFID.styl | 142 +++++++++++++ src/components/RFID/RFID.vue | 270 ++++++------------------- src/plugins/ant-design-vue.js | 2 + src/views/Index/Index.vue | 54 ++++- 10 files changed, 307 insertions(+), 319 deletions(-) delete mode 100644 src/components/RFID/RFID++.vue create mode 100644 src/components/RFID/RFID.styl diff --git a/public/index.html b/public/index.html index 4123528..8336979 100644 --- a/public/index.html +++ b/public/index.html @@ -5,6 +5,7 @@ + <%= htmlWebpackPlugin.options.title %> diff --git a/src/common/index.styl b/src/common/index.styl index ad54672..5d6b91d 100644 --- a/src/common/index.styl +++ b/src/common/index.styl @@ -96,17 +96,18 @@ .box-top{ width:100%; height: 10px; - background: url('assets/box-top.png') repeat fixed center; + background: url('assets/box-top.png') no-repeat center; + background-size: 100% 100%; text-align: center; } .box-top span{ display: inline-block; position: relative; - top: -11px; + top: -10px; text-shadow: rgb(0, 117, 255) 0px 0px 8px; font-family: SourceHanSansCN-Bold; - font-size: 20px; + font-size: 1.2rem; font-weight: bold; text-align: center; letter-spacing: 0px; diff --git a/src/components/FastEd/FastEd.vue b/src/components/FastEd/FastEd.vue index 18c0431..55b558b 100644 --- a/src/components/FastEd/FastEd.vue +++ b/src/components/FastEd/FastEd.vue @@ -1,15 +1,20 @@