32 lines
721 B
Vue
32 lines
721 B
Vue
|
<template>
|
||
|
<div class="main">
|
||
|
<image src="@/static/bg2.png" mode="aspectFill" class="img" />
|
||
|
<up-button type="primary" :text="'审核员'" shape="circle" color="#AB2F23"
|
||
|
style="width:700rpx ;margin-top: 50rpx;"></up-button>
|
||
|
<up-button type="primary" text="扫一扫" shape="circle" color="#000" style="width:700rpx ;margin-top: 50rpx"
|
||
|
@click="goScan"></up-button>
|
||
|
</div>
|
||
|
</template>
|
||
|
<script setup>
|
||
|
|
||
|
const goScan = () => {
|
||
|
uni.navigateTo({
|
||
|
url: '/pages/scan/index'
|
||
|
})
|
||
|
}
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.main {
|
||
|
width: 100%;
|
||
|
height: 100vh;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
background: url('@/static/bg.png');
|
||
|
background-size: cover;
|
||
|
|
||
|
.img {
|
||
|
width: 100%;
|
||
|
height: 1256rpx;
|
||
|
}
|
||
|
}
|
||
|
</style>
|