YZProjectCloud/yanzhu-ui-app/pages/mine/index.vue

70 lines
1.1 KiB
Vue

<template>
<view class="work-container">
<homebar titlenav="我的"></homebar>
<tabBar :value='2' :identity='0'></tabBar>
</view>
</template>
<script>
import tabBar from "@/components/tabbar.vue"
import config from '@/config.js'
export default {
components: {
tabBar
},
data() {
return {
baseUrl:config.baseUrl,
}
},
onLoad() {
},
methods: {
},
}
</script>
<style lang="scss" scoped>
.work-container {
height: 100vh;
font-size: 30rpx;
background-size: 100% 200rpx;
background-repeat: no-repeat;
background-position: 0 44px;
background-color: rgba(243, 245, 247, 1);
.headerbox {
margin: 40rpx;
display: flex;
align-items: center;
justify-content: space-between;
}
.center {
margin: 40rpx;
padding: 0 20rpx;
background-color: #ffffff;
border-radius: 20rpx;
.item-text {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2rpx solid #E5E6EB;
height: 100rpx;
.imgs {
width: 20px;
height: 20px;
vertical-align: middle;
margin-right: 20rpx;
}
}
}
}
</style>