SystemAPI.vue 673 字节
Newer Older
杜庆泉's avatar
init  
杜庆泉 已提交
1 2
<template>
	<view>
杜庆泉's avatar
杜庆泉 已提交
3 4 5 6
		<page-head :title="title"></page-head>
			<view class="uni-btn-v uni-common-mt">
				<button type="primary"  @tap="testGetBatteryCapacity">获取电池电量</button>
			</view>
杜庆泉's avatar
init  
杜庆泉 已提交
7 8 9
	</view>
</template>
<script>
杜庆泉's avatar
杜庆泉 已提交
10 11 12 13
	import {
	  getBatteryCapacity
	} from "../../../uni_modules/uts-osapi";
	
杜庆泉's avatar
init  
杜庆泉 已提交
14 15 16
	export default {
		data() {
			return {
杜庆泉's avatar
杜庆泉 已提交
17
				title: '系统API示例',
杜庆泉's avatar
init  
杜庆泉 已提交
18 19
			}
		},
杜庆泉's avatar
杜庆泉 已提交
20 21
		onUnload:function(){
		},
杜庆泉's avatar
init  
杜庆泉 已提交
22
		methods: {
杜庆泉's avatar
杜庆泉 已提交
23 24 25 26 27 28 29 30 31
			testGetBatteryCapacity: function () {
				var capacity = getBatteryCapacity()
				console.log(capacity);
				uni.showToast({
					title:"当前电量:"+capacity,
					icon:'none'
				});
				
			},
杜庆泉's avatar
init  
杜庆泉 已提交
32 33 34 35 36 37 38
			
		}
	}
</script>

<style>

杜庆泉's avatar
杜庆泉 已提交
39
  
杜庆泉's avatar
init  
杜庆泉 已提交
40
</style>