You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

47 lines
756 B

<template>
<page-meta root-font-size="18px"></page-meta>
<view class="content">
<uni-list v-for="item in configList">
<uni-list-item :title="item.name" :rightText="item.value" />
</uni-list>
</view>
</template>
<script>
import {
goHome,
} from '@/common/basic.js';
export default {
data() {
return {
configList: []
}
},
onShow() {
this.configList = this.$configList;
console.log(this.configList)
},
onNavigationBarButtonTap(e) {
if (e.index === 0) {
goHome();
}
},
methods: {
}
}
</script>
<style scoped>
.item {
display: flex;
justify-content: space-between;
flex-direction: row;
}
.uni-list-item__content-title {
font-size: 50rpx;
color: #3b4144;
overflow: hidden;
}
</style>