Browse Source

开发宝 UI问题修改

xinfeng 5 years ago
parent
commit
31afc2b072

+ 2 - 0
.nuxtignore

@@ -1,2 +1,4 @@
 node_modules/*
 .nuxt/*
+node_modules/**
+.nuxt/**

+ 0 - 1
assets/css/otherpage/money/introduce.scss

@@ -49,7 +49,6 @@
 
     .desc {
       width: pxtovw(342);
-      height: pxtovw(75);
       font-size: pxtovw(14);
       font-weight: 400;
       text-align: left;

+ 4 - 0
assets/css/otherpage/money/withdraw.scss

@@ -65,12 +65,14 @@
       .left {
         display: flex;
         align-items: flex-start;
+        overflow: visible;
         .pre {
           margin-top: pxtovw(10);
           font-size: pxtovw(20);
           font-weight: 700;
           text-align: left;
           color: #333333;
+          overflow: visible;
         }
         .nums {
           margin-left: pxtovw(6);
@@ -81,9 +83,11 @@
           text-align: left;
           color: #333333;
           line-height: pxtovw(37);
+          overflow: visible;
 
           &::placeholder {
             font-size: pxtovw(15);
+            overflow: visible;
           }
         }
       }

File diff suppressed because it is too large
+ 0 - 10
components/job/download.vue


+ 2 - 1
components/otherpage/money/bottom.vue

@@ -61,6 +61,7 @@ export default {
       flex-direction: column;
       align-items: center;
       justify-content: center;
+      overflow: visible;
 
       &:nth-child(2) {
         margin-left: pxtovw(120);
@@ -72,7 +73,7 @@ export default {
         background-size: cover;
       }
       .word {
-        width: pxtovw(48);
+        overflow: visible;
         height: pxtovw(16.8);
         font-size: pxtovw(12);
         font-weight: 600;

File diff suppressed because it is too large
+ 4381 - 1023
package-lock.json


+ 11 - 0
pages/otherpage/money/withdraw.vue

@@ -61,6 +61,10 @@
       <div class="sdesc">2.请确认银行卡账号和实名认证信息保持一致,如需修改银 行卡账号,请前往 <a href="">设置银行卡信息</a></div>
       <div class="sdesc">3.提现成功后,会在3-5个工作日内到账,节假日可能会稍有 延时,请耐心等待,如长时间未到账( 超过5个工作日),可联系 <a href="">在线客服</a></div>
     </div>
+
+    <div ref="testArea" class="testArea">
+
+    </div>
   </div>
 </template>
 
@@ -115,6 +119,9 @@
       this.getAccountBankAccountInfo()
       this.getWithdrawType()
     },
+    mounted() {
+      console.log("testArea", this.$refs.testArea)
+    },
     methods: {
       calcOkMoney(item) {
         return Math.floor(this.vCoins * (100 - item.kaifabao_rate)) / 100
@@ -218,5 +225,9 @@
 </script>
 
 <style lang="scss" scoped>
+  .testArea {
+    width: 1vw;
+    height: 1vh;
+  }
   @import "../../../assets/css/otherpage/money/withdraw";
 </style>