添加新文件
This commit is contained in:
@@ -0,0 +1,94 @@
|
||||
"use strict";
|
||||
const common_vendor = require("../common/vendor.js");
|
||||
const _sfc_main = {
|
||||
name: "header",
|
||||
props: {
|
||||
leftTitle: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
leftPath: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
leftPathType: {
|
||||
type: String,
|
||||
default: "navigateTo"
|
||||
},
|
||||
rightTitle: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
rightPath: {
|
||||
type: String,
|
||||
default: null
|
||||
},
|
||||
rightPathType: {
|
||||
type: String,
|
||||
default: "navigateTo"
|
||||
}
|
||||
},
|
||||
data() {
|
||||
return {};
|
||||
},
|
||||
methods: {
|
||||
leftJump() {
|
||||
const leftPath = this.leftPath;
|
||||
if (!leftPath) {
|
||||
return;
|
||||
}
|
||||
const leftPathType = this.leftPathType;
|
||||
if (leftPathType === "navigateTo") {
|
||||
common_vendor.index.navigateTo({
|
||||
url: leftPath
|
||||
});
|
||||
} else if (leftPathType === "switchTab") {
|
||||
common_vendor.index.switchTab({
|
||||
url: leftPath
|
||||
});
|
||||
}
|
||||
},
|
||||
rightJump() {
|
||||
const rightPath = this.rightPath;
|
||||
if (!rightPath) {
|
||||
return;
|
||||
}
|
||||
const rightPathType = this.rightPathType;
|
||||
if (rightPathType === "navigateTo") {
|
||||
common_vendor.index.navigateTo({
|
||||
url: rightPath
|
||||
});
|
||||
} else if (rightPathType === "switchTab") {
|
||||
common_vendor.index.switchTab({
|
||||
url: rightPath
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
if (!Array) {
|
||||
const _easycom_up_image2 = common_vendor.resolveComponent("up-image");
|
||||
_easycom_up_image2();
|
||||
}
|
||||
const _easycom_up_image = () => "../uni_modules/uview-plus/components/u-image/u-image.js";
|
||||
if (!Math) {
|
||||
_easycom_up_image();
|
||||
}
|
||||
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
||||
return {
|
||||
a: common_vendor.o(_ctx.jumpMine),
|
||||
b: common_vendor.p({
|
||||
src: "/static/common/left.png",
|
||||
width: "18",
|
||||
height: "20",
|
||||
bgColor: "#f1f6ff00"
|
||||
}),
|
||||
c: common_vendor.o((...args) => $options.leftJump && $options.leftJump(...args)),
|
||||
d: common_vendor.t($props.leftTitle),
|
||||
e: common_vendor.t($props.rightTitle),
|
||||
f: common_vendor.o((...args) => $options.rightJump && $options.rightJump(...args))
|
||||
};
|
||||
}
|
||||
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-5be51a94"]]);
|
||||
wx.createComponent(Component);
|
||||
//# sourceMappingURL=../../.sourcemap/mp-weixin/components/header.js.map
|
||||
Reference in New Issue
Block a user