BF-202205051124\Administrator 3 rokov pred
rodič
commit
82c4325f46
58 zmenil súbory, kde vykonal 280 pridanie a 222 odobranie
  1. 22 0
      common/js/tools.js
  2. 1 1
      common/router/router.js
  3. 146 0
      components/en-utils/en-loading/en-loading.vue
  4. 8 2
      pages.json
  5. 65 0
      pages/index/error.vue
  6. 21 21
      pages/login/index.vue
  7. BIN
      static/bg/share.jpg
  8. 17 0
      static/css/icon-common.css
  9. BIN
      static/home/bg.png
  10. BIN
      static/home/blank-box.png
  11. BIN
      static/home/fh.png
  12. BIN
      static/home/five.png
  13. BIN
      static/home/four.png
  14. BIN
      static/home/jj.png
  15. BIN
      static/home/jl.png
  16. BIN
      static/home/ly.png
  17. BIN
      static/home/one.png
  18. BIN
      static/home/retreat.png
  19. BIN
      static/home/sf.png
  20. BIN
      static/home/six.png
  21. BIN
      static/home/three.png
  22. BIN
      static/home/two.png
  23. BIN
      static/icon/iconfont.ttf
  24. BIN
      static/img/2.jpg
  25. 0 198
      static/img/blank-box.svg
  26. BIN
      static/img/loading/loading_more.gif
  27. BIN
      static/img/toRight.png
  28. BIN
      static/login/Button@3x.png
  29. BIN
      static/login/Checked1@3x.png
  30. BIN
      static/login/Checked2@3x.png
  31. BIN
      static/login/icon-wechat@3x.png
  32. BIN
      static/login/logo@3x.png
  33. BIN
      static/my-case/arrows-bottom.png
  34. BIN
      static/my-case/arrows-top.png
  35. BIN
      static/my-case/xz.png
  36. BIN
      static/person-center/bg.png
  37. BIN
      static/person-center/bg2.png
  38. BIN
      static/person-center/bg3.png
  39. BIN
      static/person-center/bg4.png
  40. BIN
      static/person-center/fw1.png
  41. BIN
      static/person-center/fw2.png
  42. BIN
      static/person-center/fw3.png
  43. BIN
      static/person-center/fw4.png
  44. BIN
      static/person-center/news.png
  45. BIN
      static/person-center/right.png
  46. BIN
      static/person-center/user.png
  47. BIN
      static/person-center/vip-flower.png
  48. BIN
      static/person-center/vip.png
  49. BIN
      static/person-center/vip2.png
  50. BIN
      static/person-center/vip3.png
  51. BIN
      static/tabBar/business-highlight.png
  52. BIN
      static/tabBar/business.png
  53. BIN
      static/tabBar/home-highlight.png
  54. BIN
      static/tabBar/home.png
  55. BIN
      static/tabBar/my-highlight.png
  56. BIN
      static/tabBar/my.png
  57. BIN
      static/tabBar/news-highlight.png
  58. BIN
      static/tabBar/news.png

+ 22 - 0
common/js/tools.js

@@ -208,5 +208,27 @@ tools.getPlatform = function () {
 
 }
 
+tools.leftClick=function (){
+    let pages=getCurrentPages();
+    if(pages.length>1){
+        uni.navigateBack({
+            delta: 1
+        })
+    }else {
+        uni.reLaunch({
+            url: '/pages/index/index'
+        });
+    }
+}
+
+tools.toError=function (errorMsg){
+    if(!errorMsg){
+        errorMsg='出错啦!~~';
+    }
+    uni.reLaunch({
+        url: '/pages/index/error?errorMsg='+errorMsg
+    });
+}
+
 
 export default tools

+ 1 - 1
common/router/router.js

@@ -8,7 +8,7 @@ const router = createRouter({
     routes: [...ROUTES]
 });
 //全局路由前置守卫
-const whiteList = ['/','/pages/index/index','/pages/text/index']
+const whiteList = ['/','/pages/index/error']
 
 router.beforeEach((to, from, next) => {
     let token = to.query.token;

+ 146 - 0
components/en-utils/en-loading/en-loading.vue

@@ -0,0 +1,146 @@
+<template>
+  <view>
+    <view class="mine-dialog" :class="{'mine-dialog-black':isBlack}">
+      <view class="loader-inner ball-spin-fade-loader">
+        <view></view>
+        <view></view>
+        <view></view>
+        <view></view>
+        <view></view>
+        <view></view>
+        <view></view>
+        <view></view>
+      </view>
+    </view>
+  </view>
+</template>
+<script>
+export default {
+  name: "en-loading",
+  props: {
+    'isBlack':{
+      default:false
+    }
+  },
+  components: {},
+  data() {
+    return {}
+  },
+  mounted() {
+
+  },
+  methods: {}
+
+}
+</script>
+
+<style scoped lang="scss">
+.mine-dialog{
+  position: fixed;
+  left: 0;
+  top: 0;
+  right: 0;
+  bottom: 0;
+  z-index: 999;
+  .loader-inner{ position: absolute; left: 0; top: 0; right: 0; bottom: 0; width: 50px; height: 50px; margin: auto;}
+}
+.mine-dialog-black{
+  background: #17191D;
+}
+
+
+
+@-webkit-keyframes ball-spin-fade-loader {
+  50% {
+    opacity: 0.3;
+    -webkit-transform: scale(0.4);
+    transform: scale(0.4); }
+
+  100% {
+    opacity: 1;
+    -webkit-transform: scale(1);
+    transform: scale(1); } }
+
+@keyframes ball-spin-fade-loader {
+  50% {
+    opacity: 0.3;
+    -webkit-transform: scale(0.4);
+    transform: scale(0.4); }
+
+  100% {
+    opacity: 1;
+    -webkit-transform: scale(1);
+    transform: scale(1); } }
+
+.ball-spin-fade-loader {
+  position: relative;
+}
+
+.ball-spin-fade-loader > view:nth-child(1) {
+  top: 32px;
+  left: 17px;
+  -webkit-animation: ball-spin-fade-loader 1s 0s infinite linear;
+  animation: ball-spin-fade-loader 1s 0s infinite linear;
+}
+
+.ball-spin-fade-loader > view:nth-child(2) {
+  top: 28.04545px;
+  left: 28.04545px;
+  -webkit-animation: ball-spin-fade-loader 1s 0.12s infinite linear;
+  animation: ball-spin-fade-loader 1s 0.12s infinite linear;
+}
+
+.ball-spin-fade-loader > view:nth-child(3) {
+  top: 17px;
+  left: 32px;
+  -webkit-animation: ball-spin-fade-loader 1s 0.24s infinite linear;
+  animation: ball-spin-fade-loader 1s 0.24s infinite linear;
+}
+
+.ball-spin-fade-loader > view:nth-child(4) {
+  top: 6.04545px;
+  left: 28.04545px;
+  -webkit-animation: ball-spin-fade-loader 1s 0.36s infinite linear;
+  animation: ball-spin-fade-loader 1s 0.36s infinite linear;
+}
+
+.ball-spin-fade-loader > view:nth-child(5) {
+  top: 2px;
+  left: 17px;
+  -webkit-animation: ball-spin-fade-loader 1s 0.48s infinite linear;
+  animation: ball-spin-fade-loader 1s 0.48s infinite linear;
+}
+
+.ball-spin-fade-loader > view:nth-child(6) {
+  top: 6.04545px;
+  left: 6.04545px;
+  -webkit-animation: ball-spin-fade-loader 1s 0.6s infinite linear;
+  animation: ball-spin-fade-loader 1s 0.6s infinite linear;
+}
+
+.ball-spin-fade-loader > view:nth-child(7) {
+  top: 17px;
+  left: 2px;
+  -webkit-animation: ball-spin-fade-loader 1s 0.72s infinite linear;
+  animation: ball-spin-fade-loader 1s 0.72s infinite linear;
+}
+
+.ball-spin-fade-loader > view:nth-child(8) {
+  top: 28.04545px;
+  left: 6.04545px;
+  -webkit-animation: ball-spin-fade-loader 1s 0.84s infinite linear;
+  animation: ball-spin-fade-loader 1s 0.84s infinite linear;
+}
+
+.ball-spin-fade-loader > view {
+  background-color: #AAAAAA;
+  width: 10px;
+  height: 10px;
+  border-radius: 100%;
+  margin: 2px;
+  -webkit-animation-fill-mode: both;
+  animation-fill-mode: both;
+  position: absolute;
+}
+
+</style>

+ 8 - 2
pages.json

@@ -1,5 +1,11 @@
 {
 	"pages": [
+		{
+			"path": "pages/login/index",
+			"style": {
+				"navigationBarTitleText": "首页"
+			}
+		},
 		{
 			"path": "pages/index/index",
 			"style": {
@@ -7,9 +13,9 @@
 			}
 		},
 		{
-			"path": "pages/login/index",
+			"path": "pages/index/error",
 			"style": {
-				"navigationBarTitleText": "登陆"
+				"navigationBarTitleText": "出错啦..."
 			}
 		},
 		{

+ 65 - 0
pages/index/error.vue

@@ -0,0 +1,65 @@
+<template>
+  <view class="error-box">
+    <view class="error-content">
+      <view class="error-icon">
+        <text  class="iconfont">
+          &#xe678;
+        </text>
+      </view>
+      <view class="error-text">
+        {{errorMsg}}
+      </view>
+    </view>
+
+
+  </view>
+</template>
+<script>
+export default {
+  name: "error",
+  props: {},
+  components: {},
+  data() {
+    return {
+      errorMsg:'出错啦!~~'
+    }
+  },
+  onLoad(query) {
+    if(query.errorMsg!==undefined){
+      this.errorMsg=decodeURI(query.errorMsg);
+    }
+  },
+  mounted() {
+
+  },
+  methods: {}
+
+}
+</script>
+
+<style scoped lang="scss">
+@import url("/components/static/css/en-common.css") ;
+.error-box{
+  width: 100vw;
+  height: 100vh;
+  background: #131E30;
+  .error-content{
+    padding-top: 260rpx;
+    .error-icon{
+      text-align: center;
+      text{
+        font-size: 240rpx;
+        color: #7388a7;
+      }
+    }
+    .error-text{
+      font-size: 32rpx;
+      text-align: center;
+      font-weight: 600;
+      color: #7388a7;
+    }
+  }
+
+}
+
+</style>

+ 21 - 21
pages/login/index.vue

@@ -1,14 +1,15 @@
 <template>
   <view class="login">
-    登录页
-    <view class="logIn" @click="logIn">
-      登录
-    </view>
+    <en-loading></en-loading>
   </view>
 </template>
 <script>
+  import EnLoading from "../../components/en-utils/en-loading/en-loading";
+  import bitkeepTron from "../../common/wallet/bitkeep-wallet/bitkeep-tron";
+  import tools from "../../common/js/tools";
   export default {
     components: {
+      EnLoading
 
     },
     data() {
@@ -16,30 +17,29 @@
 
       }
     },
+    onLoad(query) {
+      this.getAccount()
+    },
     mounted() {
 
     },
     methods: {
-      logIn() {
-        uni.redirectTo({
-          url: '/pages/index/index'
+      getAccount(){
+        bitkeepTron.getAccounts().then((Address)=>{
+          if(Address){
+            console.log('Address:'+Address)
+
+          }else {
+            tools.toError('信息获取失败!')
+          }
+
+        }).catch((e)=>{
+          tools.toError('信息获取失败!')
         })
-      },
+      }
     },
   }
 </script>
 <style lang="scss" scoped>
-  .login {
-    width: 100%;
-    min-height: 100vh;
-    background: #fff;
-
-    .logIn {
-      width: 50%;
-      height: 40px;
-      text-align: center;
-      margin: 0 auto;
-      line-height: 40px;
-    }
-  }
+@import url("/static/css/icon-common.css") ;
 </style>

BIN
static/bg/share.jpg


+ 17 - 0
static/css/icon-common.css

@@ -0,0 +1,17 @@
+/*自定义弹出窗样式*/
+
+.loading_more{
+    display: block;
+    height: 1.5em;
+    width: 100%;
+}
+.loading_more:before {
+    display: inline-block; vertical-align: text-bottom;
+    content: ' '; height: 16px; width: 16px; margin-right: 6px;
+    background: url(/static/img/loading/loading_more.gif) no-repeat center;
+    -webkit-background-size: contain;
+    background-size: contain;
+}
+.loading_more:after {
+    content: '加载更多';
+}

BIN
static/home/bg.png


BIN
static/home/blank-box.png


BIN
static/home/fh.png


BIN
static/home/five.png


BIN
static/home/four.png


BIN
static/home/jj.png


BIN
static/home/jl.png


BIN
static/home/ly.png


BIN
static/home/one.png


BIN
static/home/retreat.png


BIN
static/home/sf.png


BIN
static/home/six.png


BIN
static/home/three.png


BIN
static/home/two.png


BIN
static/icon/iconfont.ttf


BIN
static/img/2.jpg


+ 0 - 198
static/img/blank-box.svg

@@ -1,198 +0,0 @@
-<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="386" height="261.57" viewBox="0 0 386 261.57">
-  <defs>
-    <style>
-      .cls-1 {
-        fill: #fff;
-        stroke: #707070;
-        opacity: 0;
-      }
-
-      .cls-2 {
-        fill: url(#linear-gradient);
-      }
-
-      .cls-3 {
-        fill: url(#linear-gradient-2);
-      }
-
-      .cls-4 {
-        fill: url(#linear-gradient-4);
-      }
-
-      .cls-5 {
-        fill: #74b0f9;
-      }
-
-      .cls-6 {
-        fill: #77b2fa;
-      }
-
-      .cls-7 {
-        fill: url(#linear-gradient-6);
-      }
-
-      .cls-8 {
-        fill: url(#linear-gradient-7);
-      }
-
-      .cls-9 {
-        fill: url(#linear-gradient-8);
-      }
-
-      .cls-10 {
-        fill: url(#linear-gradient-9);
-      }
-
-      .cls-11 {
-        fill: #a9d1fe;
-      }
-
-      .cls-12 {
-        fill: url(#linear-gradient-10);
-      }
-
-      .cls-13, .cls-17 {
-        fill: none;
-      }
-
-      .cls-13 {
-        stroke: #c4deff;
-        stroke-linecap: round;
-        stroke-miterlimit: 10;
-        stroke-width: 2px;
-        stroke-dasharray: 6;
-      }
-
-      .cls-14 {
-        fill: #8bbbf8;
-      }
-
-      .cls-15 {
-        fill: #649fe7;
-      }
-
-      .cls-16 {
-        stroke: none;
-      }
-
-      .cls-18 {
-        filter: url(#路径_233);
-      }
-
-      .cls-19 {
-        filter: url(#路径_232);
-      }
-
-      .cls-20 {
-        filter: url(#路径_231);
-      }
-
-      .cls-21 {
-        filter: url(#路径_230);
-      }
-    </style>
-    <linearGradient id="linear-gradient" x1="0.5" x2="0.5" y2="0.872" gradientUnits="objectBoundingBox">
-      <stop offset="0" stop-color="#add2ff"/>
-      <stop offset="1" stop-color="#a9cffd" stop-opacity="0"/>
-      <stop offset="1" stop-color="#bbd8fb" stop-opacity="0"/>
-    </linearGradient>
-    <linearGradient id="linear-gradient-2" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
-      <stop offset="0" stop-color="#c9e0fc"/>
-      <stop offset="1" stop-color="#f0f2f6" stop-opacity="0.745"/>
-    </linearGradient>
-    <linearGradient id="linear-gradient-4" x1="0.527" y1="0.081" x2="0.478" y2="1.073" gradientUnits="objectBoundingBox">
-      <stop offset="0" stop-color="#cbe1fc"/>
-      <stop offset="1" stop-color="#f0f2f6"/>
-    </linearGradient>
-    <linearGradient id="linear-gradient-6" x1="1" y1="-0.149" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
-      <stop offset="0" stop-color="#7cb3f6"/>
-      <stop offset="1" stop-color="#5ba0f6"/>
-    </linearGradient>
-    <linearGradient id="linear-gradient-7" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
-      <stop offset="0" stop-color="#78b4fd"/>
-      <stop offset="1" stop-color="#519af4"/>
-    </linearGradient>
-    <linearGradient id="linear-gradient-8" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
-      <stop offset="0" stop-color="#9ec9fc"/>
-      <stop offset="1" stop-color="#77b2f9"/>
-    </linearGradient>
-    <filter id="路径_230" x="108.315" y="103.784" width="83.731" height="120.119" filterUnits="userSpaceOnUse">
-      <feOffset dy="3" input="SourceAlpha"/>
-      <feGaussianBlur stdDeviation="3" result="blur"/>
-      <feFlood flood-color="#bdd7f4"/>
-      <feComposite operator="in" in2="blur"/>
-      <feComposite in="SourceGraphic"/>
-    </filter>
-    <linearGradient id="linear-gradient-9" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
-      <stop offset="0" stop-color="#a5cdfe"/>
-      <stop offset="1" stop-color="#a5cdfe"/>
-    </linearGradient>
-    <filter id="路径_231" x="171.928" y="105.196" width="109.17" height="118.707" filterUnits="userSpaceOnUse">
-      <feOffset dy="3" input="SourceAlpha"/>
-      <feGaussianBlur stdDeviation="3" result="blur-2"/>
-      <feFlood flood-color="#bdd7f4"/>
-      <feComposite operator="in" in2="blur-2"/>
-      <feComposite in="SourceGraphic"/>
-    </filter>
-    <filter id="路径_232" x="173.046" y="105.196" width="118.721" height="83.025" filterUnits="userSpaceOnUse">
-      <feOffset dx="-1" dy="3" input="SourceAlpha"/>
-      <feGaussianBlur stdDeviation="3" result="blur-3"/>
-      <feFlood flood-color="#5fa3f3"/>
-      <feComposite operator="in" in2="blur-3"/>
-      <feComposite in="SourceGraphic"/>
-    </filter>
-    <linearGradient id="linear-gradient-10" x1="0.5" x2="0.5" y2="1" gradientUnits="objectBoundingBox">
-      <stop offset="0" stop-color="#aacfff"/>
-      <stop offset="1" stop-color="#96c5ff"/>
-    </linearGradient>
-    <filter id="路径_233" x="87.111" y="103.784" width="104.935" height="77.364" filterUnits="userSpaceOnUse">
-      <feOffset dy="3" input="SourceAlpha"/>
-      <feGaussianBlur stdDeviation="3" result="blur-4"/>
-      <feFlood flood-color="#5294e5"/>
-      <feComposite operator="in" in2="blur-4"/>
-      <feComposite in="SourceGraphic"/>
-    </filter>
-  </defs>
-  <g id="组_61318" data-name="组 61318" transform="translate(-182 -501.43)">
-    <g id="组_9256" data-name="组 9256" transform="translate(13 203)">
-      <g id="矩形_3883" data-name="矩形 3883" class="cls-1" transform="translate(169 320)">
-        <rect class="cls-16" width="386" height="240"/>
-        <rect class="cls-17" x="0.5" y="0.5" width="385" height="239"/>
-      </g>
-      <path id="减去_3" data-name="减去 3" class="cls-2" d="M7565.395-1364h-294a71.953,71.953,0,0,1,4.728-18.924,83.272,83.272,0,0,1,9.66-17.542,102.912,102.912,0,0,1,14.075-15.809A128.163,128.163,0,0,1,7317.83-1430c27.377-17.413,63.091-27,100.563-27s73.188,9.59,100.564,27a128.139,128.139,0,0,1,17.974,13.723,102.855,102.855,0,0,1,14.075,15.809,83.288,83.288,0,0,1,9.66,17.542,71.955,71.955,0,0,1,4.728,18.922Z" transform="translate(-7056.395 1920)"/>
-      <path id="联合_24" data-name="联合 24" class="cls-3" d="M7267.247-1416A13.246,13.246,0,0,1,7254-1429.246a13.246,13.246,0,0,1,13.247-13.245h2.014A16.116,16.116,0,0,1,7285.316-1457a16.116,16.116,0,0,1,16.057,14.509h1.38A13.246,13.246,0,0,1,7316-1429.246,13.246,13.246,0,0,1,7302.753-1416Z" transform="translate(-7020 1786)"/>
-      <path id="联合_25" data-name="联合 25" class="cls-3" d="M7266.4-1418.616a12.4,12.4,0,0,1-12.4-12.4,12.4,12.4,0,0,1,12.4-12.4h1.875A15.081,15.081,0,0,1,7283.3-1457a15.081,15.081,0,0,1,15.021,13.581h1.283a12.4,12.4,0,0,1,12.4,12.4,12.4,12.4,0,0,1-12.4,12.4Z" transform="translate(-6780.001 1855.309)"/>
-      <g id="组_9252" data-name="组 9252" transform="translate(2 6)">
-        <path id="路径_223" data-name="路径 223" class="cls-4" d="M211.8,1300.035a10.286,10.286,0,0,0,1.519-5.382,10.4,10.4,0,0,0-20.7-1.418H192.5a7.527,7.527,0,1,0,6.611,11.167,13.26,13.26,0,0,0,1.474.458,8.442,8.442,0,1,0,11.167-4.757Z" transform="translate(45.653 -807.197)"/>
-        <path id="路径_224" data-name="路径 224" class="cls-5" d="M203.157,1298.645a1.2,1.2,0,0,0-1.6.514l-1.429,2.781V1297.8a1.117,1.117,0,0,0-2.233,0v5.17l-1.977-1.977a.79.79,0,1,0-1.117,1.117l2.97,2.982a.6.6,0,0,0,.112.067V1323.5a1.117,1.117,0,1,0,2.233,0v-16.416l3.54-6.89a1.2,1.2,0,0,0-.5-1.552Z" transform="translate(46.771 -805.74)"/>
-      </g>
-      <g id="组_9253" data-name="组 9253" transform="translate(227.388 3)">
-        <path id="路径_223-2" data-name="路径 223" class="cls-4" d="M211.8,1300.035a10.286,10.286,0,0,0,1.519-5.382,10.4,10.4,0,0,0-20.7-1.418H192.5a7.527,7.527,0,1,0,6.611,11.167,13.26,13.26,0,0,0,1.474.458,8.442,8.442,0,1,0,11.167-4.757Z" transform="translate(45.653 -807.197)"/>
-        <path id="路径_224-2" data-name="路径 224" class="cls-6" d="M203.157,1298.645a1.2,1.2,0,0,0-1.6.514l-1.429,2.781V1297.8a1.117,1.117,0,0,0-2.233,0v5.17l-1.977-1.977a.79.79,0,1,0-1.117,1.117l2.97,2.982a.6.6,0,0,0,.112.067V1323.5a1.117,1.117,0,1,0,2.233,0v-16.416l3.54-6.89a1.2,1.2,0,0,0-.5-1.552Z" transform="translate(46.771 -805.74)"/>
-      </g>
-    </g>
-    <g id="组_9259" data-name="组 9259" transform="translate(15.875 -370.604)">
-      <path id="路径_228" data-name="路径 228" class="cls-7" d="M236.4,1259.961l71.032-18.021-7.419,46.99Z" transform="translate(49.158 -278.142)"/>
-      <path id="路径_229" data-name="路径 229" class="cls-8" d="M368.949,1261.373,282.36,1288.93l7.419-46.99Z" transform="translate(66.811 -278.142)"/>
-      <g class="cls-21" transform="matrix(1, 0, 0, 1, 166.13, 872.03)">
-        <path id="路径_230-2" data-name="路径 230" class="cls-9" d="M298.483,1357.078l2.118-73.149-63.613-28.969L234.87,1332Z" transform="translate(-117.56 -1145.18)"/>
-      </g>
-      <g class="cls-20" transform="matrix(1, 0, 0, 1, 166.13, 872.03)">
-        <path id="路径_231-2" data-name="路径 231" class="cls-10" d="M372,1330.541l-91.17,26.146,2.118-73.149,86.589-27.557Z" transform="translate(-99.9 -1144.78)"/>
-      </g>
-      <g class="cls-19" transform="matrix(1, 0, 0, 1, 166.13, 872.03)">
-        <path id="路径_232-2" data-name="路径 232" class="cls-11" d="M383.081,1287.427,291.55,1321l-9.19-37.467,86.589-27.557Z" transform="translate(-99.31 -1144.78)"/>
-      </g>
-      <g class="cls-18" transform="matrix(1, 0, 0, 1, 166.13, 872.03)">
-        <path id="路径_233-2" data-name="路径 233" class="cls-12" d="M280.519,1314.324l25.966-30.395-63.613-28.969-23.322,29.675Z" transform="translate(-123.44 -1145.18)"/>
-      </g>
-    </g>
-    <g id="组_9260" data-name="组 9260" transform="translate(34.754 -372)">
-      <path id="路径_7574" data-name="路径 7574" class="cls-13" d="M83.744,31.84s-23.622,20.76-12.3,27.3S95.074,38.1,59,51.23c-37.344,13.59-26.395,49.551-26.395,49.551" transform="translate(299.227 886.821)"/>
-      <g id="组_9257" data-name="组 9257" transform="matrix(0.848, -0.53, 0.53, 0.848, -421.584, 345.67)">
-        <path id="多边形_6" data-name="多边形 6" class="cls-14" d="M18.167,0,36.334,35.649H0Z" transform="translate(427.315 889.339) rotate(90)"/>
-        <path id="路径_7576" data-name="路径 7576" class="cls-15" d="M-7096.332,2115.121l34.155-11.9-29.676,19.017,2.659,4.965-12.738,5.395Z" transform="matrix(0.875, 0.485, -0.485, 0.875, 7623.655, 2491.219)"/>
-      </g>
-    </g>
-  </g>
-</svg>

BIN
static/img/loading/loading_more.gif


BIN
static/img/toRight.png


BIN
static/login/Button@3x.png


BIN
static/login/Checked1@3x.png


BIN
static/login/Checked2@3x.png


BIN
static/login/icon-wechat@3x.png


BIN
static/login/logo@3x.png


BIN
static/my-case/arrows-bottom.png


BIN
static/my-case/arrows-top.png


BIN
static/my-case/xz.png


BIN
static/person-center/bg.png


BIN
static/person-center/bg2.png


BIN
static/person-center/bg3.png


BIN
static/person-center/bg4.png


BIN
static/person-center/fw1.png


BIN
static/person-center/fw2.png


BIN
static/person-center/fw3.png


BIN
static/person-center/fw4.png


BIN
static/person-center/news.png


BIN
static/person-center/right.png


BIN
static/person-center/user.png


BIN
static/person-center/vip-flower.png


BIN
static/person-center/vip.png


BIN
static/person-center/vip2.png


BIN
static/person-center/vip3.png


BIN
static/tabBar/business-highlight.png


BIN
static/tabBar/business.png


BIN
static/tabBar/home-highlight.png


BIN
static/tabBar/home.png


BIN
static/tabBar/my-highlight.png


BIN
static/tabBar/my.png


BIN
static/tabBar/news-highlight.png


BIN
static/tabBar/news.png