Переглянути джерело

Merge branch 'test' into feature_220511_ui_modify

nieyuge 2 роки тому
батько
коміт
bc2ac66fbf
2 змінених файлів з 17 додано та 9 видалено
  1. 16 8
      src/view/popup/popup.vue
  2. 1 1
      src/view/popup/withdraw/home.vue

+ 16 - 8
src/view/popup/popup.vue

@@ -9,6 +9,7 @@
                         <font>Balance Valuation</font>
                     </div>
                     <div class="bill" @click="showTransactions">
+                        <red-dot class="red-dot" v-if="unReadCountWallet > 0"></red-dot>
                         <img :src="require('@/assets/svg/icon-home-bill.svg')" />
                     </div>
                 </div>
@@ -270,15 +271,16 @@ let moreTabList = ref([
         icon: require("@/assets/svg/icon-twitter.svg"),
         label: "Twitter",
         href: 'https://twitter.com/denet2022'
-    }, {
-        icon: require("@/assets/svg/icon-discord.svg"),
-        label: "Discord",
-        href: 'https://discord.gg/wZSz9p8ddG'
-    }, {
-        icon: require("@/assets/svg/icon-telegram.svg"),
-        label: "Telegram",
-        href: 'https://t.me/denetpro'
     }
+    // , {
+    //     icon: require("@/assets/svg/icon-discord.svg"),
+    //     label: "Discord",
+    //     href: 'https://discord.gg/wZSz9p8ddG'
+    // }, {
+    //     icon: require("@/assets/svg/icon-telegram.svg"),
+    //     label: "Telegram",
+    //     href: 'https://t.me/denetpro'
+    // }
 ]);
 
 let tabList = ref([
@@ -651,11 +653,17 @@ body {
                 }
             }
             .bill {
+                position: relative;
                 img {
                     width: 24px;
                     height: 24px;
                     cursor: pointer;
                 }
+                .red-dot {
+                    position: absolute;
+                    right: 0px;
+                    top: -1px;
+                }
             }
         }
 

+ 1 - 1
src/view/popup/withdraw/home.vue

@@ -1,7 +1,7 @@
 <template>
     <!-- 公共组件 -->
     <div class="info">
-        <v-head :title="'Withdraw'" :show_more="true" :show_help="true" :back_url="'/'"></v-head>
+        <v-head :title="'Withdraw'" :show_more="true" :show_help="false" :back_url="'/'"></v-head>
         <currency-list style="height: calc(100% - 48px);" :filterEmptyBalance="true" @selectCurrency="selectCurrency" ></currency-list>
     </div>