From a8c03746e6bd8ac1d46dc48c1b10bceff543664f Mon Sep 17 00:00:00 2001
From: liukangdong <898885815@qq.com>
Date: 星期二, 10 十二月 2024 20:16:12 +0800
Subject: [PATCH] ll
---
h5/App.vue | 39 ++++++++++++++++++++++++++++++++-------
1 files changed, 32 insertions(+), 7 deletions(-)
diff --git a/h5/App.vue b/h5/App.vue
index 0d25d8c..04a031d 100644
--- a/h5/App.vue
+++ b/h5/App.vue
@@ -1,8 +1,13 @@
<script>
-import { wxAuthorize, refreshToken } from '@/api'
+import { wxAuthorize, refreshToken, app_url } from '@/api'
export default {
onLaunch: function () {
-
+ window.addEventListener("popstate", (event) => {
+ const path = this.$route.fullPath
+ if(path == '/pages/login/login' || path == '/'){
+ window.location.href = app_url
+ }
+ })
},
onShow: function () {
console.log('App Show')
@@ -16,7 +21,11 @@
<style lang="scss">
/*姣忎釜椤甸潰鍏叡css */
@import "uview-ui/index.scss";
-
+html, body {
+ height: auto;
+ min-height: 100%;
+ overflow: visible;
+}
.flex-cb {
display: flex;
justify-content: space-between;
@@ -29,7 +38,18 @@
max-width: 800rpx;
overflow-y: auto;
}
-
+.empty_wrap{
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ color: #666666;
+ min-height: 600rpx;
+ image{
+ width: 300rpx;
+ height: 300rpx;
+ }
+}
.doumee-container .ivu-tabs-nav {
width: 100%;
}
@@ -122,8 +142,11 @@
}
.placeholder9 {
- color: #999999;
+ color: #999999 !important;
font-size: 28rpx;
+}
+.red{
+ color: red !important;
}
//璁剧疆鍦嗚
@@ -177,7 +200,7 @@
}
.main_app {
- padding: 0 30rpx 30rpx;
+ padding: 10rpx 30rpx 30rpx;
font-size: 28rpx;
color: #333333;
}
@@ -197,7 +220,6 @@
width: 64rpx;
height: 64rpx;
border-radius: 50%;
- overflow: hidden;
margin-right: 20rpx;
display: flex;
justify-content: center;
@@ -226,6 +248,9 @@
.ml12 {
margin-left: 12rpx;
}
+.ml6 {
+ margin-left: 6rpx;
+}
.mt6 {
margin-top: 6rpx;
}
--
Gitblit v1.9.3