zuypeng 1 anno fa
parent
commit
2a3f8be943

+ 1 - 0
src/App.vue

@@ -21,6 +21,7 @@ export default <any>{
       },
     });
     setTimeout(()=>{
+      console.log("onLaunch clean token")
       clearToken()
     })
 

+ 5 - 1
src/pages-user/wallet/index.vue

@@ -103,7 +103,11 @@ const tabs = ref([
 
 
 const handleRefund = () => {
-  to(`/pages-user/wallet/refund`)
+  uni.showToast({
+    icon: "none",
+    title: "请联系在线客服申请退款",
+  })
+  // to(`/pages-user/wallet/refund`)
 }
 
 

+ 4 - 3
src/pages-user/wallet/recharge.vue

@@ -125,11 +125,12 @@ const confirm = () => {
 .container {
   padding: 20px;
   margin-top: 100px;
+  display: flex;
+  flex-direction: column;
 }
 
 .title {
-  font-size: 24rpx;
-  font-weight: bold;
+  font-size: 17px;
   text-align: center;
   margin-bottom: 30px;
 }
@@ -172,9 +173,9 @@ const confirm = () => {
 }
 .gift-box{
   display: inline-flex;
+  justify-content: center;
   align-items: center;
   margin-top: 10px;
-  padding-left: 20px;
 }
 
 .recharge-pay {

+ 2 - 1
src/pages.json

@@ -219,7 +219,8 @@
   "globalStyle": {
     "navigationBarTextStyle": "black",
     "navigationBarBackgroundColor": "#F8F8F8",
-    "backgroundColor": "#F8F8F8"
+    "backgroundColor": "#F8F8F8",
+    "navigationStyle": "custom"
   }
 }
 

+ 2 - 2
src/pages/user/index.vue

@@ -253,9 +253,9 @@ page{
   position: absolute;
   left: 0;
   top: 0;
-  height: 100vh;
+  height: calc(100vh - 250rpx);
   width: 100%;
-  overflow-y: auto;
+  overflow-y: hidden;
 }
 
 .header {