get-app-base-info.uvue 1.4 KB
Newer Older
1 2 3 4
<template>
	<view>
		<page-head :title="title"></page-head>
		<view class="uni-common-mt">
5 6
			<view class="uni-list">
				<view class="uni-list-cell" v-for="(item,_) in items" style="align-items: center;">
7
					<view class="uni-pd">
8
						<view class="uni-label" style="width:180px;">{{item.label}}</view>
9 10
					</view>
					<view class="uni-list-cell-db">
11
						<textarea :auto-height="true" :disabled="true" placeholder="未获取" :value="item.value" />
12 13 14 15 16 17 18 19 20 21 22 23
					</view>
				</view>
			</view>
			<view class="uni-padding-wrap">
				<view class="uni-btn-v">
					<button type="primary" @tap="getAppBaseInfo">获取App基础信息</button>
				</view>
			</view>
		</view>
	</view>
</template>
<script>
24 25 26 27
	type Item = {
		label : string,
		value : string,
	}
28 29 30 31
	export default {
		data() {
			return {
				title: 'getAppBaseInfo',
32
				items: [] as Item[],
33 34 35 36 37 38 39
			}
		},
		onUnload:function(){
		},
		methods: {
			getAppBaseInfo: function () {
				const res = uni.getAppBaseInfo();
40
        this.items = [] as Item[];
41 42 43 44 45 46 47 48 49 50
        for(const key in res){
          const value = res[key];
          if(value != null){
            const item = {
            	label: key,
            	value: "" + ((typeof value == "object")? JSON.stringify(value) : value)
            } as Item;
            this.items.push(item);
          }
        }
51 52 53 54 55 56 57 58 59 60
			}
		}
	}
</script>

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