Merge pull request 'xbx' (#3) from xbx into master

Reviewed-on: http://git.luyuan.tk/luyuan/demingshangjia/pulls/3
This commit was merged in pull request #3.
This commit is contained in:
2020-06-12 15:13:08 +08:00
5 changed files with 181 additions and 0 deletions

29
components/user/navs.vue Normal file
View File

@@ -0,0 +1,29 @@
<template>
<view class="nav">
<text>dsadasdas</text>
<image></image>
</view>
</template>
<script>
export default {
name:"navs"
}
</script>
<style lang="scss" scoped>
.nav{
width: 100%;
height: 100rpx;
display: flex;
padding: 30rpx;
align-items: center;
justify-content: space-between;
font-size: 30rpx;
margin-bottom: 2rpx;
color:#333;
background-color: #fff;
>image{
width: 13rpx;
height: 25rpx;
}
}
</style>