123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610 |
- <template>
- <view class="nav">
- <view class="nv_padding" v-if="!!mysNavConfig.navPadding" :style="{
- height: navBarHeight,
- }"></view>
- <view class="bg_box" style="background-color: #FFFFFF;" :style="{
- backgroundColor: mysNavConfig.bgColor,
- backgroundImage: mysNavConfig.bgImage,
- paddingTop: navBarTop,
- height: navBarHeight,
- opacity: opacity,
- }" :class="{ fixed: mysNavConfig.navFixed }"></view>
- <view class="mys_navBar" :style="{
- paddingTop: navBarTop,
- height: navBarHeight,
- paddingRight: navBarRight,
- }" :class="{ fixed: mysNavConfig.navFixed }">
- <view class="my_left_box" :style="{ height: btnHeight }">
- <!-- 左侧单图标 + text -->
- <view class="my_left_icon" @tap="onLeftHome" :style="{ height: btnHeight, paddingLeft: navBarLeft }"
- v-if="isHome">
- <image class="nv_icon" :src="mysNavConfig.homeIconPath || homeIconPath" />
- </view>
- <view class="my_left_icon" @tap="onLeftClick" v-if="mysNavConfig.btnType !== 'type2' && !isHome"
- :style="{ height: btnHeight, paddingLeft: navBarLeft }">
- <image class="nv_icon" :src="mysNavConfig.leftIconPath || backIconPath" />
- <view class="leftText" :style="{ height: btnHeight }"
- v-if="!!mysNavConfig.leftText && mysNavConfig.btnType !== 'type2'">
- <text :style="{
- color: mysNavConfig.leftText.color,
- fontSize: mysNavConfig.leftText.fontSize,
- fontWeight: mysNavConfig.leftText.fontWeight,
- }">{{ mysNavConfig.leftText.text }}</text>
- </view>
- </view>
- </view>
- <!-- 左slot -->
- <view class="my_left_custom" :style="{ height: btnHeight }">
- <slot name="left"></slot>
- </view>
- <view class="btn_type" :style="{ height: btnHeight }">
- <view class="btn_box nav_btn_t1" :style="{
- width: btnWidth,
- height: btnHeight,
- marginLeft: navBarLeft,
- borderRadius: mysNavConfig.type2Config.radius,
- }" v-if="mysNavConfig.btnType == 'type2' && !isHome">
- <view class="btn_back" @tap="onLeftClick">
- <image class="nv_icon" :src="mysNavConfig.type2Config.leftPath"
- :style="{ height: btnHeight, width: iconW }" mode="aspectFit" />
- </view>
- <view class="line"></view>
- <view class="btn_home" @tap="onLeftHome">
- <image class="nv_icon" :src="mysNavConfig.type2Config.rightPath"
- :style="{ height: btnHeight, width: iconW }" mode="aspectFit" />
- </view>
- </view>
- <!-- 中间slot -->
- <view class="my_custom_box" :style="{ height: btnHeight }">
- <!-- 搜索框 -->
- <view class="nv_search_box" v-if="!!mysNavConfig.searchConfig" :style="{
- height: inputHeight,
- backgroundColor: mysNavConfig.searchConfig.bgColor,
- marginRight: mysNavConfig.searchConfig.marginRight,
- marginLeft: mysNavConfig.searchConfig.marginLeft,
- }">
- <image class="nv_icon" :src="`/static/searchB.png`" mode="aspectFit" />
- <input type="text" :value="mysNavConfig.searchConfig.value"
- :placeholder="mysNavConfig.searchConfig.placeholder"
- :disabled="mysNavConfig.searchConfig.disabled" @tap="clickInput" @input="changeInput"
- @confirm="submitInput" @confirm-type="mysNavConfig.searchConfig.ctype || 'search'"
- :placeholder-style="mysNavConfig.searchConfig.placeholderStyle || ''" class="nv_input" />
- <view class="close" @tap="clearInput" :style="{ height: inputHeight }">
- <image v-if="mysNavConfig.searchConfig.value !== ''" class="nv_icon"
- :src="`/static/colse_fill.png`" mode="aspectFit" />
- </view>
- </view>
- <slot name="center1"></slot>
- </view>
- </view>
- <!-- 标题 -->
- <view class="title_container" v-if="!mysNavConfig.searchConfig"
- :style="{ top: navBarTop, height: btnHeight }">
- <text class="title_text" v-if="!!mysNavConfig.navTitle" :style="{
- color: mysNavConfig.navTitle.color,
- fontSize: mysNavConfig.navTitle.fontSize,
- fontWeight: mysNavConfig.navTitle.fontWeight,
- }">{{ mysNavConfig.navTitle.text }}</text>
- <slot name="center2"></slot>
- </view>
- <!-- 右边slot -->
- <view class="my_right_icon" :style="{ height: btnHeight }">
- <image v-if="mysNavConfig.rightIconPath" @tap="onRightClick" class="nv_icon"
- :src="mysNavConfig.rightIconPath" />
- <slot name="right"></slot>
- </view>
- </view>
- </view>
- </template>
- <script>
- /* 默认首页路径 */
- const homePath = "/pages/tasksquare/tasksquare";
- /* 默认首页图标路径 */
- const homeIconPath = "";
- /* 默认返回图标路径 */
- const backIconPath = "/static/img/png2.png";
- export default {
- props: {
- mysNavConfig: {
- type: Object,
- default () {
- return {
- /* 固定导航 */
- navFixed: true,
- /* 开启单页显示首页图标 */
- isHome: true,
- /* 占位开启 */
- navPadding: true,
- /* 背景 */
- bgColor: "#f8f8f8",
- /* 渐变色 */
- opacity: 1,
- /* 渐变开启 */
- isOpacity: false,
- /* 渐变延时效果 */
- opacityTime: 100,
- /* 左侧按钮样式 可选 type1 type2 (type2根据小程序胶囊位置调整) */
- btnType: "type1",
- onLeftClick: "",
- /* type1 左侧文字配置 */
- leftText: {
- text: "",
- color: "",
- fontSize: "", // px upx rpx
- fontWeight: "500", // blod
- },
- /* 标题 */
- navTitle: {
- text: "",
- color: "",
- fontSize: "32rpx", // px upx rpx
- fontWeight: "500", // blod
- },
- /* type2 按钮 */
- type2Config: {
- // 左图标
- leftPath: "/static/back_w.png",
- // 右图标
- rightPath: "/static/home.png",
- // 圆角
- radius: "40rpx",
- },
- /* 搜索框配置 */
- // searchConfig: {
- // value: "",
- // confirmType: "search",
- // placeholder: "",
- // disabled: true,
- // placeholderStyle: "",
- // // marginRight: "",
- // // marginLeft: "",
- // },
- /* 自定义事件开启 */
- // isCustomFn: false,
- /* 定义左侧图标 (大小是固定的16px ,想改变大小通过 slot 或 css ) */
- // leftIconPath: "/static/back_b.png",
- /* 定义右侧图标 */
- // rightIconPath: "/static/home.png",
- /* home图标 */
- // homeIconPath: "/static/home.png",
- };
- },
- },
- scrollTop: {
- type: Number,
- default: function() {
- return 0;
- },
- },
- },
- data() {
- return {
- iconW: undefined,
- iconH: undefined,
- btnWidth: undefined,
- btnHeight: undefined,
- navBarTop: undefined,
- navBarHeight: undefined,
- navBarLeft: undefined,
- navBarRight: undefined,
- inputHeight: undefined,
- opacity: 0,
- isHome: false,
- homeIconPath: homeIconPath,
- backIconPath: backIconPath,
- };
- },
- computed: {
- isSharePage() {},
- },
- watch: {
- scrollTop(val) {
- if (!this.mysNavConfig.isOpacity) {
- return;
- }
- this.setOpacity(val, this.mysNavConfig.opacityTime);
- },
- },
- methods: {
- init() {
- if (this.mysNavConfig.isHome) {
- let pages = getCurrentPages().length;
- /* 单页显示home图标 */
- pages == 1 ? (this.isHome = true) : (this.isHome = false);
- }
- // 开启渐变 强制fixed
- this.navBarTop = uni.getSystemInfoSync().statusBarHeight + "px";
- if (!this.mysNavConfig.opacity) {
- this.opacity = 1;
- !this.mysNavConfig.isOpacity ? (this.opacity = 1) : ((this.mysNavConfig.navFixed = true), (this
- .opacity = 0));
- } else {
- this.opacity = this.mysNavConfig.opacity;
- !this.mysNavConfig.isOpacity ? "" : ((this.mysNavConfig.navFixed = true), (this.opacity = 0));
- }
- // #ifdef MP
- this.initMP();
- // #endif
- // #ifdef APP-PLUS-NVUE
- this.navBarHeight = 44 + uni.getSystemInfoSync().statusBarHeight + "px";
- // #endif
- },
- /* 小程序初始化位置 */
- initMP() {
- let gS = uni.getSystemInfoSync();
- let rect = uni.getMenuButtonBoundingClientRect();
- let rectHeight = rect.height;
- this.btnWidth = rect.width + "px";
- this.iconW = Math.floor(rect.width / 4 - 5) + "px";
- this.iconH = rectHeight / 2 + "px";
- this.btnHeight = rectHeight + "px";
- this.inputHeight = rectHeight - 3 + "px";
- this.navBarTop = rect.top + "px";
- this.navBarLeft = gS.screenWidth - rect.right + "px";
- this.navBarRight = gS.screenWidth - rect.right + rect.width + "px";
- this.navBarHeight = gS.statusBarHeight + rectHeight + (rect.top - gS.statusBarHeight) * 2 + "px";
- },
- /* 点击左侧 */
- onLeftClick() {
- // if (this.mysNavConfig.isCustomFn) {
- // this.$emit("onLeftClick");
- // }
- if (this.mysNavConfig.onLeftClick != "") {
- console.log(this.mysNavConfig.onLeftClick)
- uni.switchTab({
- url: this.mysNavConfig.onLeftClick
- });
- } else {
- console.log("back");
- let pages = getCurrentPages(); // 当前页面
- let beforePage = pages[pages.length - 2]; // 上一页
- uni.navigateBack({
- success: function() {
- beforePage
- .onLoad(); // 执行上一页的onLoad方法
- }
- })
- // uni.navigateBack();
- }
- },
- /* type2 返回首页 */
- onLeftHome() {
- uni.switchTab({
- url: homePath,
- });
- },
- /* 点击右侧 */
- onRightClick() {
- console.log("onRightClick");
- uni.showToast({
- title: "onRightClick",
- duration: 1000,
- });
- this.$emit("onRightClick");
- },
- /**
- * @param scrollTop 页面顶部距离
- * @param down 滑动显示效果延时
- */
- setOpacity(scrollTop, down = 60) {
- if (scrollTop > 0) {
- if (scrollTop < down) {
- this.opacity = scrollTop / down;
- }
- if (scrollTop > down) {
- this.opacity = 1;
- }
- } else {
- this.opacity = 0;
- }
- },
- /* 搜索框改变值 */
- changeInput(e) {
- this.$emit("changeInput", e);
- },
- /* 搜索框提交 */
- submitInput(e) {
- this.$emit("submitInput", e);
- },
- /* 清空搜索 */
- clearInput() {
- this.$emit("clearInput");
- },
- /* 禁用状态下点击搜索框 */
- clickInput() {
- this.$emit("clickInput");
- },
- },
- created() {
- this.init();
- },
- onReady() {
- // setTimeout(() => {
- // // 改变手机状态栏颜色
- // uni.setNavigationBarColor({
- // frontColor: "#000000",
- // backgroundColor: "#FF4258",
- // });
- // }, 10);
- },
- };
- </script>
- <style lang="scss" scoped>
- .nav {
- position: relative;
- }
- .nv_padding {
- height: 88upx;
- background-color: transparent;
- }
- /* 图标默认大小 */
- .nv_icon {
- width: 16px;
- height: 16px;
- }
- .bg_box {
- position: absolute;
- width: 750upx;
- height: 88upx;
- z-index: 1010;
- top: 0;
- background-color: transparent;
- /* #ifdef MP */
- box-sizing: border-box;
- /* #endif */
- /* #ifndef APP-PLUS-NVUE */
- background-size: cover;
- background-repeat: no-repeat;
- background-position: center center;
- /* #endif */
- }
- .mys_navBar {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- height: 88upx;
- /* #endif */
- // #ifdef MP
- box-sizing: border-box;
- // #endif
- width: 750upx;
- flex-direction: row;
- background-color: transparent;
- position: absolute;
- z-index: 1010;
- top: 0;
- }
- .fixed {
- position: fixed;
- }
- /*
- left 按钮
- */
- .btn_type {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- /* #ifdef APP-PLUS-NVUE */
- margin-left: 16upx;
- /* #endif */
- // #ifndef MP
- align-items: center;
- // #endif
- flex: 1;
- // background-color: #fff;
- flex-direction: row;
- }
- .btn_box {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- margin-left: 16upx;
- /* #endif */
- flex-direction: row;
- // #ifndef MP
- align-items: center;
- // #endif
- }
- .btn_back,
- .btn_home {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- /* #ifndef APP-PLUS-NVUE */
- height: 100%;
- /* #endif */
- /* #ifdef APP-PLUS-NVUE */
- width: 76upx;
- height: 62upx;
- /* #endif */
- flex-direction: row;
- align-items: center;
- justify-content: center;
- flex: 1;
- }
- /* 按钮类型1 */
- .nav_btn_t1 {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- // #ifdef MP
- box-sizing: border-box;
- // #endif
- flex-direction: row;
- align-items: center;
- border-style: solid;
- border-width: 1px;
- border-color: #C0C0C0;
- // background-color: rgba(0, 0, 0, 0.2);
- background-color: #FFFFFF;
- width: 150upx;
- height: 45upx;
- }
- .line {
- width: 1upx;
- height: 60%;
- /* #ifdef APP-PLUS-NVUE */
- height: 30upx;
- /* #endif */
- background-color: #C0C0C0;
- }
- /*
- 标题
- */
- .title_container {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- position: absolute;
- left: 375upx;
- bottom: 0;
- transform: translateX(-50%);
- flex-direction: row;
- justify-content: center;
- align-items: center;
- }
- .title_text {
- // flex: 1;
- text-overflow: ellipsis;
- /* #ifndef APP-PLUS-NVUE */
- white-space: nowrap;
- overflow: hidden;
- font-weight: 550;
- /* #endif */
- /* #ifdef APP-PLUS-NVUE */
- lines: 1;
- /* #endif */
- }
- /*
- 左边自定义
- */
- .my_left_box {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- }
- .my_left_icon {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- justify-content: center;
- /* #ifndef MP */
- margin-left: 18upx;
- /* #endif */
- }
- .my_left_custom {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- // justify-content: center;
- }
- /* 文字 */
- .leftText {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- justify-content: center;
- padding-left: 4upx;
- font-size: 15px;
- }
- /*
- 中间
- */
- .my_custom_box {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- justify-content: center;
- flex: 1;
- }
- /*
- 搜索框
- */
- .nv_search_box {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- flex: 1;
- /* #ifndef MP */
- height: 60upx;
- /* #endif */
- background-color: #f8f8f8;
- padding-right: 20upx;
- padding-left: 20upx;
- border-radius: 60upx;
- margin-right: 15upx;
- margin-left: 15upx;
- }
- .nv_input {
- flex: 1;
- padding-left: 16upx;
- font-size: 13px;
- }
- .close {
- width: 50upx;
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- justify-content: center;
- /* #ifndef MP */
- height: 62upx;
- /* #endif */
- }
- /*
- 右边 自定义
- */
- .my_right_icon {
- /* #ifndef APP-PLUS-NVUE */
- display: flex;
- /* #endif */
- flex-direction: row;
- align-items: center;
- justify-content: center;
- /* #ifndef MP */
- // min-width: 70upx;
- /* #endif */
- padding-left: 6px;
- padding-right: 10px;
- }
- </style>
|