55 lines
1.1 KiB
Vue
55 lines
1.1 KiB
Vue
<script setup>
|
||
const emit = defineEmits(["authorize"]);
|
||
</script>
|
||
|
||
<template>
|
||
<view class="location-state">
|
||
<image
|
||
src="https://static.shelingxingqiu.com/shootmini/static/coin/location-permission.png"
|
||
mode="aspectFit"
|
||
/>
|
||
<text>授权获取你的定位,以便推荐附近门店。</text>
|
||
<button hover-class="none" @click="emit('authorize')">立即授权</button>
|
||
</view>
|
||
</template>
|
||
|
||
<style scoped>
|
||
.location-state {
|
||
width: 100%;
|
||
padding-top: 190rpx;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
color: #ffffff;
|
||
font-size: 32rpx;
|
||
line-height: 44rpx;
|
||
font-weight: 600;
|
||
}
|
||
|
||
.location-state > image {
|
||
width: 168rpx;
|
||
height: 190rpx;
|
||
margin-bottom: 52rpx;
|
||
}
|
||
|
||
.location-state > button {
|
||
width: 360rpx;
|
||
height: 72rpx;
|
||
margin-top: 44rpx;
|
||
padding: 0;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
border-radius: 36rpx;
|
||
background-color: #ffd947;
|
||
color: #22222e;
|
||
font-size: 26rpx;
|
||
line-height: 72rpx;
|
||
font-weight: 500;
|
||
}
|
||
|
||
.location-state > button::after {
|
||
border: none;
|
||
}
|
||
</style>
|