12345678910111213141516171819202122232425262728293031323334353637383940 |
- "use strict";
- const common_vendor = require("../../../common/vendor.js");
- const hooks_useDraw = require("../../../hooks/useDraw.js");
- if (!Array) {
- const _easycom_wd_popup2 = common_vendor.resolveComponent("wd-popup");
- _easycom_wd_popup2();
- }
- const _easycom_wd_popup = () => "../../../node-modules/wot-design-uni/components/wd-popup/wd-popup.js";
- if (!Math) {
- _easycom_wd_popup();
- }
- const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
- __name: "activityDescPopup",
- props: {
- show: {
- type: Boolean,
- default: false
- }
- },
- emits: ["update:show"],
- setup(__props, { emit: __emit }) {
- const props = __props;
- const emit = __emit;
- const { handleClose } = hooks_useDraw.useDraw(props, emit);
- return (_ctx, _cache) => {
- return {
- a: common_vendor.o(common_vendor.unref(handleClose)),
- b: common_vendor.o(($event) => props.show = $event),
- c: common_vendor.p({
- position: "bottom",
- closable: true,
- ["custom-style"]: "height: 600rpx;border-radius:16rpx",
- modelValue: props.show
- })
- };
- };
- }
- });
- const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-84dcedc1"]]);
- wx.createComponent(Component);
|