SystemAPI.vue 937 字节
Newer Older
杜庆泉's avatar
init  
杜庆泉 已提交
1
<template>
杜庆泉's avatar
杜庆泉 已提交
2 3 4 5 6 7
    <view>
        <page-head :title="title"></page-head>
        <view class="uni-btn-v uni-common-mt">
            <button type="primary" @tap="testGetBatteryCapacity">获取电池电量</button>
        </view>
    </view>
杜庆泉's avatar
init  
杜庆泉 已提交
8 9
</template>
<script>
杜庆泉's avatar
杜庆泉 已提交
10
    import getBatteryInfo from "@/uni_modules/uni-getbatteryinfo";
杜庆泉's avatar
杜庆泉 已提交
11 12 13 14 15 16 17 18 19

    export default {
        data() {
            return {
                title: '系统API示例',
            }
        },
        onUnload: function() {},
        methods: {
杜庆泉's avatar
杜庆泉 已提交
20 21 22 23 24 25 26 27 28 29
            testGetBatteryCapacity() {
                getBatteryInfo({
                    success(res) {
                        console.log(res);
                        uni.showToast({
                            title: "当前电量:" + res.level + '%',
                            icon: 'none'
                        });
                    }
                })
杜庆泉's avatar
杜庆泉 已提交
30 31 32 33
            },

        }
    }
杜庆泉's avatar
init  
杜庆泉 已提交
34 35 36 37
</script>

<style>

杜庆泉's avatar
杜庆泉 已提交
38

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