123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283 |
- "use strict";
- const common_vendor = require("../../../common/vendor.js");
- const sheep_index = require("../../index.js");
- const sheep_hooks_useModal = require("../../hooks/useModal.js");
- require("../../api/index.js");
- require("../../api/distri/score.js");
- require("../../request/index.js");
- require("../../config/index.js");
- require("../../store/index.js");
- require("../../store/app.js");
- require("../../api/promotion/diy.js");
- require("../../platform/index.js");
- require("../../platform/provider/wechat/index.js");
- require("../../platform/provider/wechat/miniProgram.js");
- require("../../api/member/auth.js");
- require("../../api/member/social.js");
- require("../../api/member/user.js");
- require("../../platform/provider/apple/index.js");
- require("../../platform/share.js");
- require("../../router/index.js");
- require("../../helper/throttle.js");
- require("../../url/index.js");
- require("../../platform/pay.js");
- require("../../helper/index.js");
- require("../../helper/test.js");
- require("../../helper/digit.js");
- require("../../api/pay/order.js");
- require("../../store/user.js");
- require("../../store/cart.js");
- require("../../api/trade/cart.js");
- require("../../api/pay/wallet.js");
- require("../../api/trade/order.js");
- require("../../api/promotion/coupon.js");
- require("../../store/sys.js");
- require("../../store/modal.js");
- require("../../api/distri/share.js");
- require("../../api/distri/team.js");
- require("../../api/infra/file.js");
- require("../../api/member/address.js");
- require("../../api/member/point.js");
- require("../../api/member/signin.js");
- require("../../api/migration/app.js");
- require("../../api/migration/chat.js");
- require("../../api/migration/index.js");
- require("../../api/migration/third.js");
- require("../../api/pay/channel.js");
- require("../../api/product/category.js");
- require("../../api/product/comment.js");
- require("../../api/product/favorite.js");
- require("../../api/product/history.js");
- require("../../api/product/spu.js");
- require("../../api/promotion/activity.js");
- require("../../api/promotion/article.js");
- require("../../api/promotion/bargain.js");
- require("../../api/promotion/combination.js");
- require("../../api/promotion/rewardActivity.js");
- require("../../api/promotion/seckill.js");
- require("../../api/system/area.js");
- require("../../api/system/voice.js");
- require("../../api/trade/afterSale.js");
- require("../../api/trade/brokerage.js");
- require("../../api/trade/config.js");
- require("../../api/trade/delivery.js");
- require("../../config/zIndex.js");
- 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";
- const _easycom_uni_search_bar = () => "../../../uni_modules/uni-search-bar/components/uni-search-bar/uni-search-bar.js";
- 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 {
- width: sheep_index.sheep.$platform.capsule.width + "px",
- height: sheep_index.sheep.$platform.capsule.height + "px",
- margin: "0 " + (sheep_index.sheep.$platform.device.windowWidth - sheep_index.sheep.$platform.capsule.right) + "px"
- };
- });
- 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);
- }
- });
- const hasHistory = sheep_index.sheep.$router.hasHistory();
- function onClickLeft() {
- if (hasHistory) {
- sheep_index.sheep.$router.back();
- } else {
- sheep_index.sheep.$router.go("/pages/index/index");
- }
- 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),
- f: common_vendor.o((...args) => common_vendor.unref(sheep_hooks_useModal.showMenuTools) && common_vendor.unref(sheep_hooks_useModal.showMenuTools)(...args))
- }) : {}, {
- g: __props.titleAlign === "left" && __props.title.length && common_vendor.unref(sheep_index.sheep).$platform.name !== "WechatOfficialAccount"
- }, __props.titleAlign === "left" && __props.title.length && common_vendor.unref(sheep_index.sheep).$platform.name !== "WechatOfficialAccount" ? {
- 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 : ""
- });
- };
- }
- };
- const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-305eaf98"], ["__file", "D:/zx/mall-front-app/sheep/ui/su-navbar/su-navbar.vue"]]);
- wx.createComponent(Component);
|