123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219 |
- <script>
- import Vue from 'vue'
- import appUpdate from 'common/util/appUpdate.js'
- import api from "@/api/api";
- import store from '@/store/index.js'
- export default {
- created() {
- uni.getSystemInfo({
- success: function(e) {
- // #ifdef APP-PLUS
- // 检测升级
- appUpdate()
- // #endif
- // #ifndef MP
- Vue.prototype.StatusBar = e.statusBarHeight;
- if (e.platform == 'android') {
- Vue.prototype.CustomBar = e.statusBarHeight + 50;
- } else {
- Vue.prototype.CustomBar = e.statusBarHeight + 45;
- };
- // #endif
- // #ifdef MP-WEIXIN
- Vue.prototype.StatusBar = e.statusBarHeight;
- let custom = wx.getMenuButtonBoundingClientRect();
- Vue.prototype.Custom = custom;
- Vue.prototype.CustomBar = custom.bottom + custom.top - e.statusBarHeight;
- // #endif
- // #ifdef MP-ALIPAY
- Vue.prototype.StatusBar = e.statusBarHeight;
- Vue.prototype.CustomBar = e.statusBarHeight + e.titleBarHeight;
- // #endif
- // #ifdef APP-PLUS
- // #endif
- },
- })
- },
- mounted() {
- /**
- *判断浏览器窗口是刷新或者关闭操作
- * 无论任何浏览器不管是刷新或者是关闭都会执行下面两个方法 onbiforeunload onunload
- * 根据时间差来实现
- * 在点击刷新或者关闭时开始计时记录下这一刻的时间戳
- * 因为刷新和关闭 在执行onunload方法时的时间不一样,一般情况下经过测试
- * 关闭时时间差不大于3毫秒
- * 刷新时即使只有一个简单的helloworld页面都不少于10毫秒
- * 而一般网站网页内容更多,时间差达到了100多毫秒
- *
- *
- * 下面方法的缺点是不管你开了多少窗口,都会在关闭一个窗口时清空所有localStorage缓存
- * 造成所有页面都需要重新登录,其实这也是针对项目而言的,目前本项目就不认为这是缺点
- * 而能更好的保护用户信息
- **/
- let beginTime = 0; //开始时间
- let differTime = 0; //时间差
- window.onunload = function() {
- differTime = new Date().getTime() - beginTime;
- if (differTime <= 5) {
- api.logout().then(res => {
- /* uni.clearStorageSync() */
- /* store.commit('SET_TOKEN', ""); */
- })
- }
- };
- window.onbeforeunload = function() {
- beginTime = new Date().getTime();
- };
- }
- }
- </script>
- <style>
- @import "plugin/colorui/main.css";
- @import "plugin/colorui/icon.css";
- @import "plugin/colorui/animation.css";
- .nav-list {
- display: flex;
- flex-wrap: wrap;
- padding: 0px 40upx 0px;
- justify-content: space-between;
- }
- .nav-li {
- padding: 30upx;
- border-radius: 12upx;
- width: 45%;
- margin: 0 2.5% 40upx;
- background-image: url(https://cdn.nlark.com/yuque/0/2019/png/280374/1552996358352-assets/web-upload/cc3b1807-c684-4b83-8f80-80e5b8a6b975.png);
- background-size: cover;
- background-position: center;
- position: relative;
- z-index: 1;
- }
- .nav-li::after {
- content: "";
- position: absolute;
- z-index: -1;
- background-color: inherit;
- width: 100%;
- height: 100%;
- left: 0;
- bottom: -10%;
- border-radius: 10upx;
- opacity: 0.2;
- transform: scale(0.9, 0.9);
- }
- .nav-li.cur {
- color: #fff;
- background: rgb(94, 185, 94);
- box-shadow: 4upx 4upx 6upx rgba(94, 185, 94, 0.4);
- }
- .nav-title {
- font-size: 32upx;
- font-weight: 300;
- }
- .nav-title::first-letter {
- font-size: 40upx;
- margin-right: 4upx;
- }
- .nav-name {
- font-size: 28upx;
- text-transform: Capitalize;
- margin-top: 20upx;
- position: relative;
- }
- .nav-name::before {
- content: "";
- position: absolute;
- display: block;
- width: 40upx;
- height: 6upx;
- background: #fff;
- bottom: 0;
- right: 0;
- opacity: 0.5;
- }
- .nav-name::after {
- content: "";
- position: absolute;
- display: block;
- width: 100upx;
- height: 1px;
- background: #fff;
- bottom: 0;
- right: 40upx;
- opacity: 0.3;
- }
- .nav-name::first-letter {
- font-weight: bold;
- font-size: 36upx;
- margin-right: 1px;
- }
- .nav-li text {
- position: absolute;
- right: 30upx;
- top: 30upx;
- font-size: 52upx;
- width: 60upx;
- height: 60upx;
- text-align: center;
- line-height: 60upx;
- }
- .text-light {
- font-weight: 300;
- }
- @keyframes show {
- 0% {
- transform: translateY(-50px);
- }
- 60% {
- transform: translateY(40upx);
- }
- 100% {
- transform: translateY(0px);
- }
- }
- @-webkit-keyframes show {
- 0% {
- transform: translateY(-50px);
- }
- 60% {
- transform: translateY(40upx);
- }
- 100% {
- transform: translateY(0px);
- }
- }
-
-
- </style>
|