49 lines
1.6 KiB
JavaScript
49 lines
1.6 KiB
JavaScript
"use strict";
|
|
const common_vendor = require("../../common/vendor.js");
|
|
const common_http = require("../../common/http.js");
|
|
const _sfc_main = {
|
|
data() {
|
|
return { kw: "", customers: [] };
|
|
},
|
|
onLoad() {
|
|
this.search();
|
|
},
|
|
methods: {
|
|
async search() {
|
|
try {
|
|
const res = await common_http.get("/api/customers", { kw: this.kw, page: 1, size: 50 });
|
|
this.customers = Array.isArray(res == null ? void 0 : res.list) ? res.list : Array.isArray(res) ? res : [];
|
|
} catch (e) {
|
|
common_vendor.index.showToast({ title: "加载失败", icon: "none" });
|
|
}
|
|
},
|
|
select(c) {
|
|
const opener = getCurrentPages()[getCurrentPages().length - 2];
|
|
if (opener && opener.$vm) {
|
|
opener.$vm.order.customerId = c.id;
|
|
opener.$vm.customerName = c.name;
|
|
}
|
|
common_vendor.index.navigateBack();
|
|
}
|
|
}
|
|
};
|
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
return {
|
|
a: common_vendor.o((...args) => $options.search && $options.search(...args)),
|
|
b: $data.kw,
|
|
c: common_vendor.o(($event) => $data.kw = $event.detail.value),
|
|
d: common_vendor.o((...args) => $options.search && $options.search(...args)),
|
|
e: common_vendor.f($data.customers, (c, k0, i0) => {
|
|
return {
|
|
a: common_vendor.t(c.name),
|
|
b: common_vendor.t(c.mobile || "—"),
|
|
c: c.id,
|
|
d: common_vendor.o(($event) => $options.select(c), c.id)
|
|
};
|
|
})
|
|
};
|
|
}
|
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
|
|
wx.createPage(MiniProgramPage);
|
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/customer/select.js.map
|