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.

60 lines
1001 B

2 years ago
<template>
<view class="container">
<view class="cell">
<view class="cell-lable">建设单位:</view>
<view class="cell-value">辽宁省市场监督管理局</view>
</view>
<view class="cell">
<view class="cell-lable">版本信息:</view>
<view class="cell-value">v{{globalConfig.appInfo.version}}</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
globalConfig: getApp().globalData.config,
};
},
onLoad() {},
}
</script>
<style lang="scss" scoped>
.container {
box-sizing: border-box;
padding-top: 10rpx;
&>view {
border-bottom: 1px solid #f7f7f7;
}
&>view:last-child {
border: 0;
}
.cell {
background-color: #fff;
min-height: 60rpx;
display: flex;
align-items: center;
box-sizing: border-box;
padding: 25rpx;
.cell-lable {
width: 150rpx;
font-size: 28rpx;
color: #34373B;
}
.cell-value {
flex: 1;
font-size: 27rpx;
color: #B0B4BB;
}
}
}
</style>