acdr-ui/dist/dev/mp-weixin/modules/mall/sheep/ui/su-navbar/su-navbar.js

224 lines
6.7 KiB
JavaScript
Raw Normal View History

2024-09-19 07:20:14 +08:00
"use strict";
2024-10-01 09:15:35 +08:00
const common_vendor = require("../../../../../common/vendor.js");
const modules_mall_sheep_index = require("../../index.js");
const modules_mall_sheep_hooks_useModal = require("../../hooks/useModal.js");
2024-09-19 07:20:14 +08:00
if (!Array) {
const _easycom_su_status_bar2 = common_vendor.resolveComponent("su-status-bar");
const _easycom_uni_search_bar2 = common_vendor.resolveComponent("uni-search-bar");
(_easycom_su_status_bar2 + _easycom_uni_search_bar2)();
}
const _easycom_su_status_bar = () => "../su-status-bar/su-status-bar.js";
2024-10-01 09:15:35 +08:00
const _easycom_uni_search_bar = () => "../../../../../uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.js";
2024-09-19 07:20:14 +08:00
if (!Math) {
(_easycom_su_status_bar + _easycom_uni_search_bar)();
}
const _sfc_main = {
__name: "su-navbar",
props: {
dark: {
type: Boolean,
default: false
},
modelValue: {
type: String,
default: ""
},
title: {
type: String,
default: ""
},
titleAlign: {
type: String,
default: "center"
// left | center
},
rightText: {
type: String,
default: ""
},
leftIcon: {
type: String,
default: "left"
},
rightIcon: {
type: String,
default: ""
},
fixed: {
type: [Boolean, String],
default: true
},
placeholder: {
type: [Boolean, String],
default: true
},
color: {
type: String,
default: ""
},
backgroundColor: {
type: String,
default: ""
},
opacity: {
type: [Boolean, String],
default: false
},
opacityBgUi: {
type: String,
default: "bg-white"
},
statusBar: {
type: [Boolean, String],
default: false
},
shadow: {
type: [Boolean, String],
default: false
},
border: {
type: [Boolean, String],
default: false
},
height: {
type: [Number, String],
default: 44
},
leftWidth: {
type: [Number, String],
default: 80
},
rightWidth: {
type: [Number, String],
default: 0
},
tools: {
type: String,
default: "title"
},
defaultSearch: {
type: String,
default: ""
}
},
emits: ["clickLeft", "clickRight", "clickTitle", "search"],
setup(__props, { emit: __emit }) {
const getVal = (val) => typeof val === "number" ? val + "px" : val;
const emits = __emit;
const props = __props;
common_vendor.computed(() => {
return {
2024-10-01 09:15:35 +08:00
width: modules_mall_sheep_index.sheep.$platform.capsule.width + "px",
height: modules_mall_sheep_index.sheep.$platform.capsule.height + "px",
margin: "0 " + (modules_mall_sheep_index.sheep.$platform.device.windowWidth - modules_mall_sheep_index.sheep.$platform.capsule.right) + "px"
2024-09-19 07:20:14 +08:00
};
});
const searchModel = common_vendor.computed(() => {
return props.defaultSearch;
});
common_vendor.computed(() => {
if (props.dark) {
if (props.backgroundColor) {
return props.backgroundColor;
} else {
return props.dark ? "#333" : "#FFF";
}
}
return props.backgroundColor || "#FFF";
});
const themeColor = common_vendor.computed(() => {
if (props.dark) {
if (props.color) {
return props.color;
} else {
return props.dark ? "#fff" : "#333";
}
}
return props.color || "#333";
});
const navbarHeight = common_vendor.computed(() => {
return getVal(props.height);
});
const leftIconWidth = common_vendor.computed(() => {
return getVal(props.leftWidth);
});
common_vendor.computed(() => {
return getVal(props.rightWidth);
});
function onSearch(e) {
emits("search", e.value);
}
common_vendor.onLoad(() => {
if (common_vendor.index.report && props.title !== "") {
common_vendor.index.report("title", props.title);
}
});
2024-10-01 09:15:35 +08:00
const hasHistory = modules_mall_sheep_index.sheep.$router.hasHistory();
2024-09-19 07:20:14 +08:00
function onClickLeft() {
if (hasHistory) {
2024-10-01 09:15:35 +08:00
modules_mall_sheep_index.sheep.$router.back();
2024-09-19 07:20:14 +08:00
} else {
2024-10-01 09:15:35 +08:00
modules_mall_sheep_index.sheep.$router.go("/modules/mall/index/index");
2024-09-19 07:20:14 +08:00
}
emits("clickLeft");
}
function onClickTitle() {
emits("clickTitle");
}
return (_ctx, _cache) => {
return common_vendor.e({
a: common_vendor.n(__props.opacity ? "" : __props.opacityBgUi),
b: __props.statusBar
}, __props.statusBar ? {} : {}, {
c: __props.leftIcon.length > 0
}, __props.leftIcon.length > 0 ? common_vendor.e({
d: common_vendor.unref(hasHistory)
}, common_vendor.unref(hasHistory) ? {} : {}, {
e: common_vendor.o(onClickLeft),
2024-10-01 09:15:35 +08:00
f: common_vendor.o((...args) => common_vendor.unref(modules_mall_sheep_hooks_useModal.showMenuTools) && common_vendor.unref(modules_mall_sheep_hooks_useModal.showMenuTools)(...args))
2024-09-19 07:20:14 +08:00
}) : {}, {
2024-10-01 09:15:35 +08:00
g: __props.titleAlign === "left" && __props.title.length && common_vendor.unref(modules_mall_sheep_index.sheep).$platform.name !== "WechatOfficialAccount"
}, __props.titleAlign === "left" && __props.title.length && common_vendor.unref(modules_mall_sheep_index.sheep).$platform.name !== "WechatOfficialAccount" ? {
2024-09-19 07:20:14 +08:00
h: common_vendor.t(__props.title),
i: themeColor.value,
j: !__props.leftIcon.length > 0 ? 1 : ""
} : {}, {
k: leftIconWidth.value,
l: __props.tools === "search"
}, __props.tools === "search" ? {
m: common_vendor.o(onSearch),
n: common_vendor.o(($event) => searchModel.value = $event),
o: common_vendor.p({
radius: 20,
placeholder: "请输入关键词",
cancelButton: "none",
modelValue: searchModel.value
})
} : common_vendor.e({
p: __props.tools === "title" && __props.titleAlign === "center" && __props.title.length
}, __props.tools === "title" && __props.titleAlign === "center" && __props.title.length ? {
q: common_vendor.t(__props.title),
r: themeColor.value
} : {}, {
s: common_vendor.o(onClickTitle)
}), {
t: themeColor.value,
v: navbarHeight.value,
w: __props.backgroundColor,
x: __props.fixed ? 1 : "",
y: __props.shadow ? 1 : "",
z: __props.border ? 1 : "",
A: __props.placeholder
}, __props.placeholder ? common_vendor.e({
B: __props.statusBar
}, __props.statusBar ? {} : {}, {
C: navbarHeight.value
}) : {}, {
D: __props.dark ? 1 : ""
});
};
}
};
2024-10-01 09:15:35 +08:00
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-2cac6195"]]);
2024-09-19 07:20:14 +08:00
wx.createComponent(Component);