This commit is contained in:
Gdpao 2020-08-03 21:40:22 +08:00
parent 0ee518854c
commit 48b7219954
3 changed files with 40 additions and 25 deletions

10
App.vue
View File

@ -18,10 +18,10 @@
<style lang="scss"> <style lang="scss">
/* #ifndef APP-PLUS-NVUE */ /* #ifndef APP-PLUS-NVUE */
@import "/static/css/normalize"; @import "/static/css/normalize";
/* 顶部自定义导航留白 */
.status_bar {
width: 100%;
height: var(--status-bar-height);
}
/* #endif */ /* #endif */
/* 顶部自定义导航留白 */
.status_bar {
width: 100%;
height: var(--status-bar-height);
}
</style> </style>

View File

@ -105,12 +105,12 @@
.action { .action {
z-index: 19; z-index: 19;
position: absolute; position: absolute;
right: 0rpx; right: -10rpx;
bottom: 55rpx; bottom: 60rpx;
// width: 234rpx; // width: 234rpx;
border-radius: 6rpx;
background: rgba(255,255,255,1); background: rgba(255,255,255,1);
box-shadow: 0rpx 0rpx 6rpx 0rpx rgba(35,24,21,0.12); box-shadow: 0rpx 0rpx 6rpx 0rpx rgba(35,24,21,0.12);
border-radius: 6rpx;
.bubble { .bubble {
position: relative; position: relative;
background-color: #fff; background-color: #fff;
@ -128,9 +128,10 @@
box-shadow: 0rpx 0rpx 6rpx 0rpx rgba(35,24,21,0.12); box-shadow: 0rpx 0rpx 6rpx 0rpx rgba(35,24,21,0.12);
} }
> view { > view {
padding: 9rpx 12rpx;
display: flex; display: flex;
align-items: center; align-items: center;
height: 52rpx;
padding: 10rpx 20rpx;
&:not(:last-child) { &:not(:last-child) {
border-bottom: 2rpx #ECECEC solid; border-bottom: 2rpx #ECECEC solid;
} }

View File

@ -38,7 +38,8 @@
</view> </view>
<!-- denglu QQ weixin --> <!-- denglu QQ weixin -->
<view class="buttones"> <view class="buttones">
<view @click="loginOn">{{login}}</view> <view @click="loginOn" class="btn">{{login}}</view>
<view class="a-go" @click="goIndex">暂不登录</view>
</view> </view>
<u-mask :show="show" @click="show = false"> <u-mask :show="show" @click="show = false">
<view class="warp"> <view class="warp">
@ -302,7 +303,12 @@
}, },
tochange() { tochange() {
} },
goIndex() {
uni.switchTab({
url: "/pages/index/index"
})
}
}, },
components: { components: {
identifying identifying
@ -446,20 +452,28 @@
height: 22rpx; height: 22rpx;
} }
.buttones>view { .buttones {
width: 628rpx; .btn {
height: 98rpx; width: 628rpx;
background: rgba(255, 120, 15, 1) !important; height: 98rpx;
border-radius: 49rpx; background: rgba(255, 120, 15, 1) !important;
margin: 0 auto; border-radius: 49rpx;
font-size: 36rpx; margin: 0 auto;
color: rgba(255, 255, 255, 1) !important; font-size: 36rpx;
line-height: 98rpx; color: rgba(255, 255, 255, 1) !important;
border: 1px #ff780f solid; line-height: 98rpx;
outline: none; border: 1px #ff780f solid;
border-color: rgba(255, 120, 15, 1) !important; outline: none;
text-align: center; border-color: rgba(255, 120, 15, 1) !important;
} text-align: center;
}
.a-go {
margin-top: 24rpx;
text-align: center;
font-size: 26rpx;
color: #f2f2f2;
}
}
.warp { .warp {
display: flex; display: flex;