适配顶部导航

pull/50/head
owen 2024-03-13 22:46:46 +08:00
parent b7c38be5b3
commit 13986f3943
5 changed files with 38 additions and 34 deletions

View File

@ -2,7 +2,7 @@
<template> <template>
<view v-if="template"> <view v-if="template">
<s-layout title="首页" navbar="custom" tabbar="/pages/index/index" :bgStyle="template.page" <s-layout title="首页" navbar="custom" tabbar="/pages/index/index" :bgStyle="template.page"
:navbarStyle="template.style?.navbar" onShareAppMessage> :navbarStyle="template.navigationBar" onShareAppMessage>
<s-block v-for="(item, index) in template.components" :key="index" :styles="item.property.style"> <s-block v-for="(item, index) in template.components" :key="index" :styles="item.property.style">
<s-block-item :type="item.id" :data="item.property" :styles="item.property.style" /> <s-block-item :type="item.id" :data="item.property" :styles="item.property.style" />
</s-block> </s-block>

View File

@ -5,7 +5,7 @@
tabbar="/pages/index/user" tabbar="/pages/index/user"
navbar="custom" navbar="custom"
:bgStyle="template.page" :bgStyle="template.page"
:navbarStyle="template.style?.navbar" :navbarStyle="template.navigationBar"
onShareAppMessage onShareAppMessage
> >
<s-block v-for="(item, index) in template.components" :key="index" :styles="item.property.style"> <s-block v-for="(item, index) in template.components" :key="index" :styles="item.property.style">

View File

@ -1,5 +1,7 @@
<!-- 顶部导航栏 - 单元格 -->
<template> <template>
<view class="ss-flex ss-col-center"> <view class="ss-flex ss-col-center">
<!-- 类型一 文字 -->
<view <view
v-if="data.type === 'text'" v-if="data.type === 'text'"
class="nav-title inline" class="nav-title inline"
@ -7,15 +9,17 @@
> >
{{ data.text }} {{ data.text }}
</view> </view>
<!-- 类型二 图片 -->
<view <view
v-if="data.type === 'image'" v-if="data.type === 'image'"
:style="[{ width: width }]" :style="[{ width: width }]"
class="menu-icon-wrap ss-flex ss-row-center ss-col-center" class="menu-icon-wrap ss-flex ss-row-center ss-col-center"
@tap="sheep.$router.go(data.url)" @tap="sheep.$router.go(data.url)"
> >
<image class="nav-image" :src="sheep.$url.cdn(data.src)" mode="aspectFit"></image> <image class="nav-image" :src="sheep.$url.cdn(data.imgUrl)" mode="aspectFit"></image>
</view> </view>
<view class="ss-flex-1" v-if="data.type == 'search'" :style="[{ width: width }]"> <!-- 类型三 搜索框 -->
<view class="ss-flex-1" v-if="data.type === 'search'" :style="[{ width: width }]">
<s-search-block <s-search-block
:placeholder="data.placeholder || '搜索关键字'" :placeholder="data.placeholder || '搜索关键字'"
:radius="data.borderRadius" :radius="data.borderRadius"

View File

@ -1,7 +1,7 @@
<!-- 顶部导航栏 --> <!-- 顶部导航栏 -->
<template> <template>
<navbar <navbar
:alway="isAlway" :alway="isAlways"
:back="false" :back="false"
bg="" bg=""
:placeholder="isPlaceholder" :placeholder="isPlaceholder"
@ -12,7 +12,7 @@
<template #item> <template #item>
<view class="nav-box"> <view class="nav-box">
<view class="nav-icon" v-if="showLeftButton"> <view class="nav-icon" v-if="showLeftButton">
<view class="icon-box ss-flex" :class="{ 'inner-icon-box': data.mode == 'inner' }"> <view class="icon-box ss-flex" :class="{ 'inner-icon-box': data.styleType === 'inner' }">
<view class="icon-button icon-button-left ss-flex ss-row-center" @tap="onClickLeft"> <view class="icon-button icon-button-left ss-flex ss-row-center" @tap="onClickLeft">
<text class="sicon-back" v-if="hasHistory" /> <text class="sicon-back" v-if="hasHistory" />
<text class="sicon-home" v-else /> <text class="sicon-home" v-else />
@ -43,7 +43,7 @@
* *
* *
* @property {Number | String} alwaysShow = [0,1] - 是否常驻 * @property {Number | String} alwaysShow = [0,1] - 是否常驻
* @property {Number | String} mode = [inner] - 是否沉浸式 * @property {Number | String} styleType = [inner] - 是否沉浸式
* @property {String | Number} type - 标题背景模式 * @property {String | Number} type - 标题背景模式
* @property {String} color - 页面背景色 * @property {String} color - 页面背景色
* @property {String} src - 页面背景图片 * @property {String} src - 页面背景图片
@ -66,26 +66,27 @@
}); });
const hasHistory = sheep.$router.hasHistory(); const hasHistory = sheep.$router.hasHistory();
const sticky = computed(() => { const sticky = computed(() => {
if (props.data.mode == 'inner') { if (props.data.styleType === 'inner') {
if (props.data.alway) { if (props.data.alwaysShow) {
return false; return false;
} }
} }
if (props.data.mode == 'normal') { if (props.data.styleType === 'normal') {
return false; return false;
} }
}); });
const navList = computed(() => { const navList = computed(() => {
if (!props.data.list) return [];
// #ifdef MP // #ifdef MP
return props.data.list.mp; return props.data.mapCells || [];
// #endif // #endif
return props.data.list.app; return props.data.otherCells || [];
}); });
// //
const windowWidth = sheep.$platform.device.windowWidth; const windowWidth = sheep.$platform.device.windowWidth;
//
const cell = computed(() => { const cell = computed(() => {
if (unref(navList).length) { if (unref(navList).length) {
// 86
let cell = (windowWidth - 90) / 8; let cell = (windowWidth - 90) / 8;
// #ifdef MP // #ifdef MP
cell = (windowWidth - 80 - unref(sheep.$platform.capsule).width) / 6; cell = (windowWidth - 80 - unref(sheep.$platform.capsule).width) / 6;
@ -102,28 +103,26 @@
}; };
return obj; return obj;
}; };
const isAlway = computed(() => const isAlways = computed(() =>
props.data.mode === 'inner' ? Boolean(props.data.alwaysShow) : true, props.data.styleType === 'inner' ? Boolean(props.data.alwaysShow) : true,
); );
const isOpacity = computed(() => const isOpacity = computed(() =>
props.data.mode === 'normal' props.data.styleType === 'normal'
? false ? false
: props.showLeftButton : props.showLeftButton
? false ? false
: props.data.mode === 'inner', : props.data.styleType === 'inner',
); );
const isPlaceholder = computed(() => props.data.mode === 'normal'); const isPlaceholder = computed(() => props.data.styleType === 'normal');
const bgStyles = computed(() => { const bgStyles = computed(() => {
if (props.data.type) { return {
return { background:
background: props.data.bgType === 'img' && props.data.bgImg
props.data.type == 'color' ? `url(${sheep.$url.cdn(props.data.bgImg)}) no-repeat top center / 100% 100%`
? props.data.color : props.data.bgColor
: `url(${sheep.$url.cdn(props.data.src)}) no-repeat top center / 100% 100%`, };
};
}
}); });
//
function onClickLeft() { function onClickLeft() {
if (hasHistory) { if (hasHistory) {
sheep.$router.back(); sheep.$router.back();
@ -131,6 +130,7 @@
sheep.$router.go('/pages/index/index'); sheep.$router.go('/pages/index/index');
} }
} }
//
function onClickRight() { function onClickRight() {
showMenuTools(); showMenuTools();
} }

View File

@ -4,7 +4,7 @@
:class="['theme-' + sys.mode, 'main-' + sys.theme, 'font-' + sys.fontSize]" :class="['theme-' + sys.mode, 'main-' + sys.theme, 'font-' + sys.fontSize]"
> >
<view class="page-main" :style="[bgMain]"> <view class="page-main" :style="[bgMain]">
<!-- 默认通用顶部导航栏 --> <!-- 顶部导航栏-情况1默认通用顶部导航栏 -->
<su-navbar <su-navbar
v-if="navbar === 'normal'" v-if="navbar === 'normal'"
:title="title" :title="title"
@ -16,21 +16,21 @@
:defaultSearch="defaultSearch" :defaultSearch="defaultSearch"
/> />
<!-- 装修组件导航栏-普通 --> <!-- 顶部导航栏-情况2装修组件导航栏-标准 -->
<s-custom-navbar <s-custom-navbar
v-else-if="navbar === 'custom' && navbarMode === 'normal'" v-else-if="navbar === 'custom' && navbarMode === 'normal'"
:data="navbarStyle" :data="navbarStyle"
:showLeftButton="showLeftButton" :showLeftButton="showLeftButton"
/> />
<view class="page-body" :style="[bgBody]"> <view class="page-body" :style="[bgBody]">
<!-- 沉浸式头部 --> <!-- 顶部导航栏-情况3沉浸式头部 -->
<su-inner-navbar v-if="navbar === 'inner'" :title="title" /> <su-inner-navbar v-if="navbar === 'inner'" :title="title" />
<view <view
v-if="navbar === 'inner'" v-if="navbar === 'inner'"
:style="[{ paddingTop: sheep.$platform.navbar + 'px' }]" :style="[{ paddingTop: sheep.$platform.navbar + 'px' }]"
></view> ></view>
<!-- 装修组件导航栏-沉浸式 --> <!-- 顶部导航栏-情况4装修组件导航栏-沉浸式 -->
<s-custom-navbar v-if="navbar === 'custom' && navbarMode === 'inner'" :data="navbarStyle" :showLeftButton="showLeftButton" /> <s-custom-navbar v-if="navbar === 'custom' && navbarMode === 'inner'" :data="navbarStyle" :showLeftButton="showLeftButton" />
<!-- 页面内容插槽 --> <!-- 页面内容插槽 -->
@ -92,7 +92,7 @@
navbarStyle: { navbarStyle: {
type: Object, type: Object,
default: () => ({ default: () => ({
mode: '', styleType: '',
type: '', type: '',
color: '', color: '',
src: '', src: '',
@ -143,7 +143,7 @@
// ( ) // ( )
const navbarMode = computed(() => { const navbarMode = computed(() => {
if (props.navbar === 'normal' || props.navbarStyle.mode === 'normal') { if (props.navbar === 'normal' || props.navbarStyle.styleType === 'normal') {
return 'normal'; return 'normal';
} }
return 'inner'; return 'inner';