12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- "use strict";
- const common_vendor = require("../../../common/vendor.js");
- if (!Array) {
- const _easycom_s_coupon_list2 = common_vendor.resolveComponent("s-coupon-list");
- const _easycom_su_popup2 = common_vendor.resolveComponent("su-popup");
- (_easycom_s_coupon_list2 + _easycom_su_popup2)();
- }
- const _easycom_s_coupon_list = () => "../s-coupon-list/s-coupon-list.js";
- const _easycom_su_popup = () => "../../ui/su-popup/su-popup.js";
- if (!Math) {
- (_easycom_s_coupon_list + _easycom_su_popup)();
- }
- const _sfc_main = {
- __name: "s-coupon-select",
- props: {
- modelValue: {
- // 优惠劵列表
- type: Object,
- default() {
- }
- },
- show: {
- type: Boolean,
- default: false
- }
- },
- emits: ["confirm", "close"],
- setup(__props, { emit: emits }) {
- const props = __props;
- const state = common_vendor.reactive({
- couponInfo: common_vendor.computed(() => props.modelValue),
- // 优惠劵列表
- couponId: 0
- // 选中的优惠劵编号
- });
- function radioChange(couponId) {
- if (state.couponId === couponId) {
- state.couponId = 0;
- } else {
- state.couponId = couponId;
- }
- }
- const onConfirm = () => {
- emits("confirm", state.couponId);
- };
- return (_ctx, _cache) => {
- return {
- a: common_vendor.f(state.couponInfo, (item, index, i0) => {
- return {
- a: state.couponId === item.id,
- b: common_vendor.o(($event) => radioChange(item.id), index),
- c: common_vendor.o(($event) => radioChange(item.id), index),
- d: "7362f63a-1-" + i0 + ",7362f63a-0",
- e: common_vendor.p({
- data: item,
- type: "user",
- disabled: false
- }),
- f: index
- };
- }),
- b: common_vendor.o(onConfirm),
- c: common_vendor.o(($event) => emits("close")),
- d: common_vendor.p({
- show: __props.show,
- type: "bottom",
- round: "20",
- showClose: true,
- backgroundColor: "#f2f2f2"
- })
- };
- };
- }
- };
- const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-7362f63a"], ["__file", "/Users/RuHu.Xu/Desktop/mall-newfeifan-zx-app/sheep/components/s-coupon-select/s-coupon-select.vue"]]);
- wx.createComponent(Component);
|