Files
frontend-app/unpackage/dist/dev/mp-weixin/components/choiceness/choiceness.js
T
2025-05-23 18:03:45 +08:00

77 lines
2.0 KiB
JavaScript

"use strict";
const common_vendor = require("../../common/vendor.js");
const api_product = require("../../api/product.js");
const _sfc_main = {
name: "choiceness",
data() {
return {
productList: []
};
},
mounted() {
this.getSearchList();
},
methods: {
//
jumpInfo(item) {
common_vendor.index.navigateTo({
url: "/pages/productInfo/productInfo?id=" + item.id
});
},
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;
}
}
}
};
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);
//# sourceMappingURL=../../../.sourcemap/mp-weixin/components/choiceness/choiceness.js.map