This commit is contained in:
2022-10-10 19:58:07 +08:00
parent e7806048b7
commit 1702a7c6a3
9 changed files with 142 additions and 42 deletions

27
components/NavBar.vue Normal file
View File

@@ -0,0 +1,27 @@
<template>
<view class="header">
<text class="icon-back"></text>
<text></text>
<text class="icon-home"></text>
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="stylus">
@import '@/common/style/mixin.styl';
.header
_fj()
position fixed
_wh(100%, 86rpx)
background-color $red
z-index 100
</style>