Blame view

pages/API/choose-location/choose-location.vue 1.54 KB
4b045f7c   刘淇   江阴初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  <template>
  	<view>
  		<page-head :title="title"></page-head>
  		<view class="uni-padding-wrap">
  			<view style="background:#FFFFFF; padding:40rpx;">
  				<view class="uni-hello-text uni-center">当前位置信息</view>
  				<block v-if="hasLocation === false">
  					<view class="uni-h2 uni-center uni-common-mt">未选择位置</view>
  				</block>
  				<block v-if="hasLocation === true">
  					<view class="uni-hello-text uni-center" style="margin-top:10px;">
  						{{locationAddress}}
  					</view>
  					<view class="uni-h2 uni-center uni-common-mt">
  						<text>E: {{location.longitude[0]}}°{{location.longitude[1]}}′</text>
  						<text>\nN: {{location.latitude[0]}}°{{location.latitude[1]}}′</text>
  					</view>
  				</block>
  			</view>
  			<view class="uni-btn-v">
  				<button type="primary" @tap="chooseLocation">选择位置</button>
  				<button @tap="clear">清空</button>
  			</view>
  		</view>
  	</view>
  </template>
  <script>
  	import * as util from '../../../common/util.js'
  	var formatLocation = util.formatLocation;
  
  	export default {
  		data() {
  			return {
  				title: 'chooseLocation',
  				hasLocation: false,
  				location: {},
  				locationAddress: ''
  			}
  		},
  		methods: {
  			chooseLocation: function () {
  				uni.chooseLocation({
  					success: (res) => {
  						this.hasLocation = true,
  							this.location = formatLocation(res.longitude, res.latitude),
  							this.locationAddress = res.address
  					}
  				})
  			},
  			clear: function () {
  				this.hasLocation = false
  			}
  		}
  	}
  </script>
  
  <style>
  	.page-body-info {
  		padding-bottom: 0;
  		height: 440rpx;
  	}
  </style>