From 7721e92d5fe6159c565e74fe973b52e6dae5dcb0 Mon Sep 17 00:00:00 2001 From: Vion Date: Thu, 20 Jan 2022 19:56:52 +0800 Subject: [PATCH 1/4] Global style updated / Header footer hyperlink completed / addressInput component bug fixed --- rc-busness/assets/css/global.less | 29 +++++ rc-busness/components/addressInput.vue | 104 ++++++++++++----- rc-busness/components/header.vue | 24 ++-- rc-busness/components/rc-footer.vue | 6 +- rc-busness/config/area.js | 16 +++ rc-busness/pages/index.vue | 122 +++++++++++++------- rc-busness/pages/useraddress/addaddress.vue | 7 +- rc-busness/static/favicon.ico | Bin 8636 -> 1150 bytes rc-busness/static/images/banner/four.jpg | Bin 87134 -> 51476 bytes rc-busness/static/images/banner/one.jpg | Bin 174140 -> 91903 bytes rc-busness/static/images/banner/three.jpg | Bin 1066841 -> 61753 bytes rc-busness/static/images/banner/two.jpg | Bin 293133 -> 67946 bytes 12 files changed, 216 insertions(+), 92 deletions(-) create mode 100644 rc-busness/config/area.js diff --git a/rc-busness/assets/css/global.less b/rc-busness/assets/css/global.less index 903d422d..fab7ae2a 100644 --- a/rc-busness/assets/css/global.less +++ b/rc-busness/assets/css/global.less @@ -8,6 +8,33 @@ body{ .fade-leave-active { opacity: 0; } +.ts-no-data{ + text-align: center; + margin:3rem 0; +} +.ts-mask{ + width:100%; + height:100%; + position: fixed; + top:0; + left:0; + display:flex; + flex-direction: column; + justify-content: center; + align-items: center; + z-index:99; + + .ts-mask-bg{ + background-color:#000; + opacity:.6; + width:100%; + height:100%; + z-index:0; + position:absolute; + left:0; + top:0; + } +} .userloding { background: url(../image/onloading.png) center center no-repeat; width: 3.12rem; @@ -260,6 +287,7 @@ img, picture { flex-direction: column; align-items: center; justify-content: center; + cursor: pointer; } } @@ -473,6 +501,7 @@ img, picture { li{ margin-top: .5rem; height:4.125rem; + cursor: pointer; img{ width:22px; height:auto; diff --git a/rc-busness/components/addressInput.vue b/rc-busness/components/addressInput.vue index 931ccb23..9f610a89 100644 --- a/rc-busness/components/addressInput.vue +++ b/rc-busness/components/addressInput.vue @@ -10,12 +10,12 @@
  • {{ returnValueArr[1]?returnValueArr[1].name:'请选择' }}
  • {{ returnValueArr[2]?returnValueArr[2].name:'请选择' }}
  • -
    +
    @@ -37,6 +37,9 @@