28 lines
372 B
Vue
28 lines
372 B
Vue
<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>
|