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

55 lines
933 B
Vue

<template>
<view class="work-container">
<homebar titlenav="我的"></homebar>
<tabBar :value='2' :identity='1'></tabBar>
</view>
</template>
<script>
import tabBar from "@/components/tabbar.vue"
import config from '@/config.js'
export default {
components: {
tabBar
},
data() {
return {
}
},
onShow() {
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.work-container {
height: 100vh;
// padding: 0 20rpx;
font-size: 30rpx;
overflow: hidden;
background-size: 100%;
background-repeat: no-repeat;
.item_class {
margin: 40rpx 20rpx;
padding: 20rpx;
border-radius: 10rpx;
line-height: 60rpx;
background-color: #ffffff;
box-shadow: 0px 0px 8px rgba(38, 38, 38, 0.08);
.btn_class {
border-top: 1px solid #bbbbbb;
text-align: center;
margin-top: 20rpx;
padding: 10rpx 5rpx 0 0;
color: rgba(18, 155, 252, 1);
}
}
}
</style>