no message

SPY×FAMILY
鹿和sa0ChunLuyu 4 years ago
parent 42b979abe2
commit 59e649bd8a

@ -0,0 +1,28 @@
<script setup>
/**
* name
* usersa0ChunLuyu
* date2022-04-19 14:58:23
*/
import {
ref
} from 'vue'
const mask_show = ref(true)
const login_show = ref(true)
const toLogin = () => {
uni.navigateTo({
url: '/pages/main/login/login'
})
}
</script>
<template>
<view v-if="login_show">
<u-mask :show="mask_show" @click="toLogin()"></u-mask>
<u-mask :custom-style="{
opacity: 0
}" :show="!mask_show" @click="mask_show = true"></u-mask>
</view>
</template>
<style scoped>
</style>

@ -11,7 +11,16 @@
"navigationBarTitleText": "我的",
"enablePullDownRefresh": false
}
}],
} ,{
"path" : "pages/main/login/login",
"style" :
{
"navigationBarTitleText": "",
"enablePullDownRefresh": false
}
}
],
"subPackages": [{
"root": "pages/dev",
"pages": [{
@ -46,5 +55,8 @@
"navigationBarTitleText": "uni-app",
"navigationBarBackgroundColor": "#F8F8F8",
"backgroundColor": "#F8F8F8"
},
"easycom": {
"Login": "@/components/Login/Login.vue"
}
}

@ -0,0 +1,12 @@
<script setup>
/**
* name
* usersa0ChunLuyu
* date2022-04-22 22:29:07
*/
</script>
<template>
Login
</template>
<style scoped>
</style>

@ -9,7 +9,8 @@
} from 'vue'
import config from '@/config.js'
</script>
<template>
<template>
<Login ></Login>
<view class="home_wrapper u-text-center">
<view class="home_logo_wrapper">
<u-image width="200rpx" height="200rpx" src="/static/logo.png"></u-image>

Loading…
Cancel
Save