12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <template>
- <view class="nav" :style="{background:navBcg,color:textColor}">
- <image v-if="showback" :src="imgUrl" @click="back" mode="widthFix" style="width: 48rpx;position: absolute;left: 12rpx;bottom: 20rpx;"></image>
- <view class="title">
- <slot></slot>
- </view>
- <view class="right" v-if="showright && rightIcon" @click="rightClick">
- <image :src="rightLogo" mode="" style="width: 48rpx;height: 48rpx;"></image>
- </view>
- <view class="right" v-if="showright && rightIcon==false " @click="rightClick">
- {{rightText}}
- </view>
- </view>
- </template>
- <script>
- export default{
- props:{
- // 显示标题还是图标
- rightIcon:{
- typeof:Boolean,
- default:true
- },
- rightText:{
- typeof:String,
- default:"右侧标题"
- },
- showright:{
- typeof:Boolean,
- default:false
- },
- showback:{
- type:Boolean,
- default:true
- },
- rightLogo:{
- type:String,
- default:'/static/market/search.png'
- },
- imgUrl:{
- type:String,
- // default:require('@/static/index/details/arrow_back.png')
- default:require('@/static/2.png')
- },
- navBcg:{
- type:String,
- default:'#171918'
- },
- textColor:{
- type:String,
- default:'#fff'
- }
- },
- methods:{
- rightClick(){
- this.$emit("rightClick")
- }
- }
- }
- </script>
- <style scoped>
- .nav{
- width: 750rpx;
- height: 100rpx;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9;
- background: #FFFFFF;
-
- }
- .title{
- font-size: 36rpx;
- font-weight: bold;
- text-align: center;
- line-height: 100rpx;
- letter-spacing: 4rpx;
- /* color: #000; */
- }
- .right{
- position: absolute;
- right: 40rpx;
- top: 50%;
- transform: translateY(-50%);
- font-size: 30rpx;
- }
- </style>
|