jiangchengfeiyi-xiaochengxu/unpackage/dist/dev/mp-weixin/pages/order/component/addressComponent.js

81 lines
2.7 KiB
JavaScript
Raw Normal View History

2024-11-03 23:34:53 +00:00
"use strict";
const common_vendor = require("../../../common/vendor.js");
2024-11-07 11:54:27 +00:00
const utils_emitter = require("../../../utils/emitter.js");
2024-11-03 23:34:53 +00:00
const api_request = require("../../../api/request.js");
const _sfc_main = {
__name: "addressComponent",
setup(__props) {
common_vendor.ref([null, null]);
const addressList = common_vendor.ref([]);
2024-11-06 12:46:53 +00:00
const userInfo = common_vendor.wx$1.getStorageSync("userInfo");
common_vendor.onShow(() => {
2024-11-03 23:34:53 +00:00
getAddressList();
});
const getAddressList = async () => {
const res = await common_vendor.index.request({
2024-11-06 12:46:53 +00:00
url: api_request.baseUrl + "/address/list",
2024-11-03 23:34:53 +00:00
method: "POST",
header: {
"cookie": common_vendor.wx$1.getStorageSync("cookie")
},
2024-11-03 23:34:53 +00:00
data: {
2024-11-06 12:46:53 +00:00
id: userInfo.id
2024-11-03 23:34:53 +00:00
}
});
addressList.value = res.data.data;
};
const close = () => {
2024-11-07 11:54:27 +00:00
utils_emitter.emitter.emit("close");
2024-11-03 23:34:53 +00:00
};
const radioChange = (event) => {
const index = event.detail.value;
const temp = addressList.value[index];
2024-11-07 11:54:27 +00:00
utils_emitter.emitter.emit("addressInfo", temp);
utils_emitter.emitter.emit("close");
2024-11-03 23:34:53 +00:00
};
2024-11-06 12:46:53 +00:00
const toNewAddress = () => {
common_vendor.index.navigateTo({
url: "/pages/Shopping-cart/newaddress_Info/newaddress_Info"
});
};
2024-11-07 11:54:27 +00:00
const editAddress = (value) => {
console.log("地址信息", value);
common_vendor.index.navigateTo({
url: "/pages/Shopping-cart/newaddress_Info/newaddress_Info?editInfo=" + JSON.stringify(value)
});
};
const deleteAddress = async (id) => {
const res = await common_vendor.index.request({
url: api_request.baseUrl + "/address/delete",
method: "POST",
data: { id }
});
if (res.data.code === 1) {
getAddressList();
console.log("删除地址成功");
}
};
2024-11-03 23:34:53 +00:00
return (_ctx, _cache) => {
return {
a: common_vendor.o(close),
b: common_vendor.f(addressList.value, (item, index, i0) => {
return {
a: index,
b: index === _ctx.current,
c: common_vendor.t(item.name),
d: common_vendor.t(item.phone),
2024-11-07 11:54:27 +00:00
e: common_vendor.o(($event) => editAddress(item), index),
f: common_vendor.o(($event) => deleteAddress(item.id), index),
g: common_vendor.t(item.detailAddress),
h: index
2024-11-03 23:34:53 +00:00
};
}),
2024-11-06 12:46:53 +00:00
c: common_vendor.o(radioChange),
d: common_vendor.o(toNewAddress)
2024-11-03 23:34:53 +00:00
};
};
}
};
2024-12-04 05:47:36 +00:00
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-c20b9e4d"], ["__file", "D:/jiangchengfeiyi-xiaochengxu/pages/order/component/addressComponent.vue"]]);
2024-11-03 23:34:53 +00:00
wx.createComponent(Component);