get-system-setting.uvue 2.3 KB
Newer Older
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
<template>
	<view>
		<page-head :title="title"></page-head>
		<view class="uni-common-mt">
			<view class="uni-list">
				<view class="uni-list-cell">
					<view class="uni-pd">
						<view class="uni-label" style="width:180px;">蓝牙的系统开关</view>
					</view>
					<view class="uni-list-cell-db">
						<input class="uni-input" type="text" :disabled="true" placeholder="未获取" :value="bluetoothEnabled"/>
					</view>
				</view>
				<view class="uni-list-cell">
					<view class="uni-pd">
						<view class="uni-label" style="width:180px;">地理位置的系统开关</view>
					</view>
					<view class="uni-list-cell-db">
						<input class="uni-input" type="text" :disabled="true" placeholder="未获取" :value="locationEnabled"/>
					</view>
				</view>
				<view class="uni-list-cell">
					<view class="uni-pd">
						<view class="uni-label" style="width:180px;">Wi-Fi 的系统开关</view>
					</view>
					<view class="uni-list-cell-db">
						<input class="uni-input" type="text" :disabled="true" placeholder="未获取" :value="wifiEnabled"/>
					</view>
				</view>
				<view class="uni-list-cell">
					<view class="uni-pd">
						<view class="uni-label" style="width:180px;">设备方向</view>
					</view>
					<view class="uni-list-cell-db">
						<input class="uni-input" type="text" :disabled="true" placeholder="未获取" :value="deviceOrientation"/>
					</view>
				</view>
			</view>
			<view class="uni-padding-wrap">
				<view class="uni-btn-v">
W
wanganxp 已提交
41
					<button type="primary" @tap="getSystemSetting">获取系统设置</button>
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
				</view>
			</view>
		</view>
	</view>
</template>
<script>
	export default {
		data() {
			return {
				title: 'getSystemSetting',
				bluetoothEnabled:"",
				locationEnabled:"",
				wifiEnabled:"",
				deviceOrientation:""
			}
		},
		onUnload:function(){
		},
		methods: {
			getSystemSetting: function () {
				const res = uni.getSystemSetting();
				this.bluetoothEnabled = (res.bluetoothEnabled ?? false) ? "开启" : "关闭";
				this.locationEnabled = (res.locationEnabled ?? false) ? "开启" : "关闭";
				this.wifiEnabled = (res.wifiEnabled ?? false) ? "开启" : "关闭";
				this.deviceOrientation = res.deviceOrientation ?? "";
			}
		}
	}
</script>

<style>
	.uni-pd {
		padding-left: 30rpx;
	}
</style>