123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126 |
- <template>
- <view @click="navTo()">
- <view style="height: 100%;">
- <view class="flex justify-center">
- <image class="content menuImageNoTask" src="/static/login/logo.png"></image>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- onLoad() {
- setTimeout(function(){
- uni.navigateTo({
- url:"/pages/user/login/login"
- })
- },1000)
-
- },
- methods:{
- navTo(){
- uni.navigateTo({
- url:"/pages/user/login/login"
- })
- }
- }
-
- }
- </script>
- <style lang="scss">
- page{background-color: #C6E6FF;}
- .status_bar{height: var(--status-bar-height);width:100%;background:#fff;z-index: 5;position: fixed;left: 0;right: 0;}
- .top_b{z-index: 5;background: #fff;position: fixed;left: 0;top:var(--status-bar-height);width: 750rpx;}
- .top_b_1{display: flex;justify-content: space-around;height: 90rpx;align-items: center;padding: 0 100rpx;}
- .text-blues{color: #AEAEAE;}
- .text-blue_one{position: absolute;bottom: -20rpx;left: 70rpx;width: 134rpx;height: 8rpx;border-radius: 30rpx;background-color: #0A8CD5;}
- .text-blue_ones{position: absolute;bottom: -20rpx;left: 70rpx;width: 134rpx;height: 8rpx;border-radius: 30rpx;background-color: #EF9D1E;}
- .text-blue1{color: #EF9D1E;}
- .tot_button{padding:0rpx 22rpx;}
- .tot_button_1{display: flex;justify-content: space-between;border-bottom: 2rpx solid #E3E1E1;padding: 28rpx 0rpx 20rpx;}
- .tot_button_1 button{width: 342rpx;height: 88rpx;font-size: 32rpx;border-radius: 10rpx;}
- .button_divisionName{color: #0A8CD5;background-color: #C6E6FF;}
- .button_stake{color: #EF9D1E;background-color: #FCF1E2;}
- uni-button:after {border: none;}
- .cu-list.grid {
- background-color: #F7F7F7;
- text-align: center;
- }
- .solid-type {
- border-bottom: 2upx solid black;
- }
- .solid-type-top {
- border-top: 2upx solid rgba(0, 0, 0, 0.1);
- }
- .dashed-type {
- border-bottom: 2upx dashed black;
- }
- .box {
- margin-top: -20rpx;
- }
- .box view.cu-bar {
- margin-top: 20upx;
- }
- .page {
- width: 100vw;
- }
- .page.show {
- overflow: hidden;
- }
- .menuImage {
- height: 110rpx;
- width: 110rpx;
- }
- .shadowType {
- -moz-box-shadow: 2px 2px 6px #D0D0D0;
- -webkit-box-shadow: 2px 2px 6px #D0D0D0;
- box-shadow: 2px 2px 6px #D0D0D0;
- }
- .cu-list.grid>.cu-item uni-text {
- display: block;
- margin-top: 4px;
- color: black;
- font-size: 14px;
- line-height: 17px;
- }
- .cu-dialog {
- position: relative;
- display: inline-block;
- vertical-align: middle;
- margin-left: auto;
- margin-right: auto;
- width: 100%;
- max-width: 100%;
- /* height: 100%; */
- background-color: #f8f8f8;
- border-radius: 4px;
- overflow: hidden;
- }
- .bg-diy-yellow {
- background-color: #FDF1DF;
- }
- .bg-diy-blue {
- background-color: #D7ECF8;
- }
- .menuImageNoTask{width:120px;height: 120px;margin-top: 215rpx;}
- </style>
|