Files
frontend-app/unpackage/dist/dev/mp-weixin/components/choiceness/choiceness.js
T

77 lines
2.0 KiB
JavaScript
Raw Normal View History

2025-03-20 08:46:07 +08:00
"use strict";
2025-08-06 20:25:41 +08:00
const common_vendor = require("../../common/vendor.js");
const api_product = require("../../api/product.js");
const _sfc_main = {
2025-03-20 08:46:07 +08:00
name: "choiceness",
2025-08-06 20:25:41 +08:00
data() {
2025-03-20 08:46:07 +08:00
return {
2025-05-07 09:54:33 +08:00
productList: []
2025-03-20 08:46:07 +08:00
};
},
2025-08-06 20:25:41 +08:00
mounted() {
2025-05-07 09:54:33 +08:00
this.getSearchList();
},
2025-03-20 08:46:07 +08:00
methods: {
2025-08-06 20:25:41 +08:00
//
jumpInfo(item) {
common_vendor.index.navigateTo({
url: "/pages/other_package/productInfo/productInfo?id=" + item.id
2025-03-20 08:46:07 +08:00
});
2025-05-07 09:54:33 +08:00
},
2025-08-06 20:25:41 +08:00
async getSearchList() {
const params = {
isRecomm: true,
page: 1,
pageSize: 66
};
const resp = await api_product.searchList(params);
if (resp && resp.bizcode === 100) {
this.productList = resp.data;
}
2025-03-20 08:46:07 +08:00
}
}
};
2025-08-06 20:25:41 +08:00
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.p({
src: "/static/common/jingxuan_left.png",
width: "24",
height: "8",
bgColor: "#f1f6ff00"
}),
b: common_vendor.p({
src: "/static/common/jingxuan_right.png",
width: "24",
height: "8",
bgColor: "#f1f6ff00"
}),
c: common_vendor.f($data.productList, (item, k0, i0) => {
return {
a: "3619806e-2-" + i0,
b: common_vendor.p({
src: item.url,
width: "100%",
height: "140",
bgColor: "#f1f6ff00"
}),
c: common_vendor.t(item.title),
d: common_vendor.t(item.adPrice),
e: common_vendor.t(item.sales),
f: item.id,
g: common_vendor.o(($event) => $options.jumpInfo(item), item.id)
};
})
};
}
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-3619806e"]]);
wx.createComponent(Component);
2025-03-20 08:46:07 +08:00
//# sourceMappingURL=../../../.sourcemap/mp-weixin/components/choiceness/choiceness.js.map