|
@@ -1,15 +1,6 @@
|
|
<template>
|
|
<template>
|
|
- <view :style="{ minHeight: sys.windowHeight + 'px' }"
|
|
|
|
- :class="[$tm.vx.state().tmVuetify.black ? 'black' : 'grey text ']">
|
|
|
|
- <tm-menubars color="primary" title="tm-vuetify" :shadow="0" :showback="false">
|
|
|
|
- <template #left>
|
|
|
|
- <view class="pl-24">
|
|
|
|
- <tm-images :width="86" src="static/logowhite.png"></tm-images>
|
|
|
|
- </view>
|
|
|
|
- </template>
|
|
|
|
-
|
|
|
|
- </tm-menubars>
|
|
|
|
-
|
|
|
|
|
|
+ <view :style="{ minHeight: sys.windowHeight + 'px' }" :class="[$tm.vx.state().tmVuetify.black ? 'black' : ' ']">
|
|
|
|
+ <tm-menubars title="" :shadow="0" :showback="false"></tm-menubars>
|
|
<view>
|
|
<view>
|
|
<view class="fixed fulled overflow" style="z-index: 8;">
|
|
<view class="fixed fulled overflow" style="z-index: 8;">
|
|
<tm-search @confirm="openSearch" v-model="keyword" suffixIcon=" " :showRight="false" :fllowTheme="false"
|
|
<tm-search @confirm="openSearch" v-model="keyword" suffixIcon=" " :showRight="false" :fllowTheme="false"
|
|
@@ -29,9 +20,6 @@
|
|
<view :class="[$tm.vx.state().tmVuetify.black ? 'black' : $tm.vx.state().tmVuetify.color || 'primary']">
|
|
<view :class="[$tm.vx.state().tmVuetify.black ? 'black' : $tm.vx.state().tmVuetify.color || 'primary']">
|
|
<view class=" py-32" style=""
|
|
<view class=" py-32" style=""
|
|
:class="[$tm.vx.state().tmVuetify.black ? 'grey-darken-5 bk' : $tm.vx.state().tmVuetify.color || 'primary']">
|
|
:class="[$tm.vx.state().tmVuetify.black ? 'grey-darken-5 bk' : $tm.vx.state().tmVuetify.color || 'primary']">
|
|
- <!-- <navigator url="gonggao" class=" text-align-center text-white pb-12 flex-center mx-32" style="vertical-align: middle;">
|
|
|
|
- <text class="pr-32 text-weight-b text-size-s">来自作者的一条公告>></text>
|
|
|
|
- </navigator> -->
|
|
|
|
<view class="text-size-s text-align-center text-white opacity-8">
|
|
<view class="text-size-s text-align-center text-white opacity-8">
|
|
<text class="pr-24 ">当前版本:{{ ver }}</text>
|
|
<text class="pr-24 ">当前版本:{{ ver }}</text>
|
|
<text>更新时间:{{ time }}</text>
|
|
<text>更新时间:{{ time }}</text>
|
|
@@ -171,8 +159,14 @@
|
|
// #endif
|
|
// #endif
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
|
|
+ setTimeout(function(){
|
|
|
|
+ if(uni.getStorageSync("token")==""){
|
|
|
|
+ uni.redirectTo({
|
|
|
|
+ url:"/pages/login/index"
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ },2000)
|
|
this.sys = uni.getSystemInfoSync();
|
|
this.sys = uni.getSystemInfoSync();
|
|
- console.log(this.sys)
|
|
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
openSearch() {
|
|
openSearch() {
|
|
@@ -197,5 +191,7 @@
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss">
|
|
<style lang="scss">
|
|
-
|
|
|
|
|
|
+ /deep/ .tm-menubars .body{
|
|
|
|
+ background-color: #1b1b1b !important;
|
|
|
|
+ }
|
|
</style>
|
|
</style>
|