| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167 |
- <template>
- <view>
- <!-- 自定义导航栏 -->
- <view class="contentView">
- <!-- 状态栏占位 -->
- <view class="navBarBox" :style="{marginTop:statusBarHeight+'rpx'}">
- <!-- 直正的导航栏内容 -->
- <view v-if="shownav" class="navBar" >
- <view class="leftconten">
- <image class="logo" src="/static/images/fanhuiz@3x.png" mode="aspectFit" @click="leftbuttonsel(1)"></image>
- <view v-if="titledetl==''" class="textlableR">
- <view class="lableTR">
- <text class="titleT" style="color: white;">{{title}}</text>
- </view>
- </view>
- <view v-if="titledetl!=''" class="textlable">
- <view class="lableT">{{title}}</view>
- <view class="lableB">{{titledetl}}</view>
- </view>
- </view>
- <view class="rightconten">
- <!-- <image v-if="shareBT==1" class="mycart" src="/static/images/fenxiang@3x.png" mode="aspectFit" @click="leftbuttonsel(2)"></image> -->
- <image v-if="faverBT==1" class="mycart" :src="isfaver==0?'/static/images/faver@3x.png':'/static/images/faverr@3x.png'" mode="aspectFit" @click="leftbuttonsel(3)"></image>
- <!-- <image v-if="addBT==1" class="mycart" src="/static/images/plus-circle-fill@3x.png" mode="aspectFit" @click="leftbuttonsel(4)"></image> -->
- <text v-if="xinzeng==1" class="xinzengTxt" @click="leftbuttonsel(5)">{{$t('schema.add')}}</text>
- <uni-icons v-if="addBT==1" custom-prefix="custom-icon" color="white" type="plus" size="26" @click="leftbuttonsel(4)"></uni-icons>
- </view>
- </view>
- </view>
- </view>
- <view v-if="shownav" :style="{height:navBarHeight+'rpx'}">
- </view>
- <view v-if="!shownav" :style="{height:yincbtHeight+'rpx'}">
- </view>
- </view>
-
- </template>
- <script>
- export default
- {
- props:{
- shownav:true,
- title:'',
- titledetl:'',
- faverBT:0,
- shareBT:0,
- isfaver:0,
- addBT:0,
- xinzeng:0
- },
- data() {
- return{
- // 状态栏高度
- statusBarHeight:0,
- // 导航栏高度
- navBarHeight: 50,
- yincbtHeight:0,
- };
- },
- //第一次加载时调用
- created() {
- //获取手机状态栏高度
- var systemInfo = uni.getSystemInfoSync();
- this.statusBarHeight=systemInfo.statusBarHeight*2+30;
- this.navBarHeight = 50+this.statusBarHeight;
- this.yincbtHeight=this.statusBarHeight;
- },
- methods:{
- leftbuttonsel(item){
- //触发一个更新事件
- if(item==1){
- uni.navigateBack();
- }
- this.$emit('Enavbarsel',item);
- }
-
- },
- }
- </script>
- <style>
- .contentView{
- position: fixed;
- left: 0;
- right: 0;
- top: 0;
- z-index: 9999;
- background-color: #00A6FF;
- }
- .navBarBox{
- display: flex;
- width: 750upx;
- background-color: #00A6FF;
- }
-
- .navBar {
- display: flex;
- width: 690upx;
- margin-left: 30upx;
- margin-bottom: 20rpx;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center
- }
- .logo {
- width: 50rpx;
- height: 50rpx;
- margin-left: 6rpx;
- }
- .textlable{
- flex-direction:column;
- margin-left: 20rpx;
- }
- .textlableR{
- flex-direction:column;
- margin-left: 20rpx;
- }
- .lableTR{
- font-size: 32rpx;
- color: rgb(255, 255, 255);
- }
- .lableT{
- font-size: 30rpx;
- color: rgb(255, 255, 255);
- }
- .lableB{
- font-size: 22rpx;
- color: rgb(255, 255, 255);
- }
- .leftconten{
- display: flex;
- flex-direction: row;
- justify-content:flex-start;
- margin-left: 20rpx;
- }
- .rightconten{
- display: flex;
- flex-direction: row;
- justify-content:flex-end;
- }
- .mycart {
- margin-right: 10rpx;
- width: 50rpx;
- height: 50rpx;
- }
- .xinzengTxt{
- margin-right: 10rpx;
- color: white;
- font-size: 28rpx;
- }
-
- .titleT{
- /* width: 580upx; */
- overflow: hidden;
- text-overflow: ellipsis;
- /* #ifndef APP-PLUS-NVUE */
- display: -webkit-box;
- -webkit-line-clamp: 1;
- -webkit-box-orient: vertical;
- /* #endif */
- }
- </style>
|