44 lines
674 B
Plaintext
44 lines
674 B
Plaintext
<template>
|
|
<view>
|
|
<image class="logo" src="/static/logo.png"></image>
|
|
<text class="title">{{title}}</text>
|
|
<button @click="goLogin()">去登陆</button>
|
|
<button @click="goLogin1()">加解密测试</button>
|
|
需要一个导航栏
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="uts">
|
|
const title = ref(true)
|
|
title.value = false
|
|
|
|
function goLogin() {
|
|
|
|
uni.navigateTo({
|
|
url: '/pages/auth/login'
|
|
})
|
|
|
|
}
|
|
|
|
function goLogin1() {
|
|
|
|
uni.navigateTo({
|
|
url: '/pages/test/index'
|
|
})
|
|
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
.logo {
|
|
height: 100px;
|
|
width: 100px;
|
|
margin: 100px auto 25px auto;
|
|
}
|
|
|
|
.title {
|
|
font-size: 18px;
|
|
color: #8f8f94;
|
|
text-align: center;
|
|
}
|
|
</style> |