get-app-base-info.uvue 1.7 KB
Newer Older
1
<template>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
2 3 4 5 6 7 8 9
  <page-head :title="title"></page-head>
  <view class="uni-common-mt">
    <view class="uni-list">
      <view class="uni-list-cell" v-for="(item,_) in items" style="align-items: center;">
        <view class="uni-pd">
          <view class="uni-label" style="width:180px;">{{item.label}}</view>
        </view>
        <view class="uni-list-cell-db">
雪洛's avatar
雪洛 已提交
10
          <text style="width: 100%;">{{ item.value == '' ? '未获取' : item.value }}</text>
DCloud-yinjiacheng's avatar
DCloud-yinjiacheng 已提交
11 12 13 14 15 16 17 18 19
        </view>
      </view>
    </view>
    <view class="uni-padding-wrap">
      <view class="uni-btn-v">
        <button type="primary" @tap="getAppBaseInfo">获取App基础信息</button>
      </view>
    </view>
  </view>
20 21
</template>
<script>
22 23 24 25
	type Item = {
		label : string,
		value : string,
	}
26 27 28 29
	export default {
		data() {
			return {
				title: 'getAppBaseInfo',
30
				items: [] as Item[],
31 32 33 34 35 36 37
			}
		},
		onUnload:function(){
		},
		methods: {
			getAppBaseInfo: function () {
				const res = uni.getAppBaseInfo();
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
38 39 40 41 42 43 44 45
        const res_str = JSON.stringify(res);
        const res_obj =  JSON.parseObject(res_str);
        const res_map = res_obj!.toMap();
        let keys = [] as string[]
        res_map.forEach((_, key) => {
           keys.push(key);
        });

46
        this.items = [] as Item[];
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
47
        keys.sort().forEach( key => {
48 49 50 51 52 53 54 55
          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);
          }
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
56 57
        });

58 59 60 61 62 63 64
			}
		}
	}
</script>

<style>
	.uni-pd {
H
hdx 已提交
65
		padding-left: 15px;
66 67
	}
</style>