62 lines
1.4 KiB
Vue
62 lines
1.4 KiB
Vue
<template>
|
|
<view class="gps-wrapper">
|
|
<view class="title">布放位置</view>
|
|
<view>江苏省苏州市姑苏区相门后庄1-13号 </view>
|
|
<image src="/pageDevice/static/devIconImg/icon-gps.svg" mode="scaleToFill" />
|
|
</view>
|
|
<view class="gps-wrapper edit-wrapper">
|
|
<view class="title">省市区</view>
|
|
<view>江苏省/苏州市/姑苏区 </view>
|
|
<image src="/pageDevice/static/devIconImg/icon-arrow-sex.svg" mode="scaleToFill" />
|
|
</view>
|
|
<view class="gps-wrapper edit-wrapper">
|
|
<view class="title">经纬度</view>
|
|
<view>116.78946/38.307682 </view>
|
|
</view>
|
|
<view class="confirm-button flex-center" hover-class="touch-button">确认修改</view>
|
|
</template>
|
|
|
|
<script setup></script>
|
|
|
|
<style lang="scss" scoped>
|
|
.gps-wrapper {
|
|
display: flex;
|
|
margin: 30rpx;
|
|
padding: 40rpx 0;
|
|
padding-left: 40rpx;
|
|
background-color: #f7f7f7;
|
|
font-size: 30rpx;
|
|
border-radius: 32rpx;
|
|
.title {
|
|
width: 198rpx;
|
|
white-space: nowrap;
|
|
color: #4c4c4c;
|
|
}
|
|
image {
|
|
flex-shrink: 0;
|
|
width: 108rpx;
|
|
height: 40rpx;
|
|
}
|
|
}
|
|
.edit-wrapper {
|
|
align-items: center;
|
|
padding: 0 0 0 40rpx;
|
|
height: 120rpx;
|
|
image {
|
|
width: 120rpx;
|
|
height: 120rpx;
|
|
}
|
|
}
|
|
.confirm-button {
|
|
margin: 0 auto;
|
|
margin-top: 90rpx;
|
|
width: 400rpx;
|
|
height: 110rpx;
|
|
border-radius: 20rpx;
|
|
font-size: 33rpx;
|
|
font-weight: 500;
|
|
color: #fff;
|
|
background: $jeepay-bg-primary;
|
|
}
|
|
</style>
|