27 lines
837 B
JavaScript
27 lines
837 B
JavaScript
"use strict";
|
|
const common_vendor = require("../../../common/vendor.js");
|
|
const utils_commUtils = require("../../../utils/commUtils.js");
|
|
const _sfc_main = {
|
|
__name: "certPopup",
|
|
emits: ["handleReturn", "handleJoin"],
|
|
setup(__props, { emit: __emit }) {
|
|
const emit = __emit;
|
|
const handleReturn = () => {
|
|
emit("handleReturn");
|
|
};
|
|
const handleJoin = () => {
|
|
emit("handleJoin");
|
|
};
|
|
return (_ctx, _cache) => {
|
|
return {
|
|
a: common_vendor.unref(utils_commUtils.imgUrl)("@/static/certification/nursery.png"),
|
|
b: common_vendor.o(handleReturn),
|
|
c: common_vendor.o(handleJoin)
|
|
};
|
|
};
|
|
}
|
|
};
|
|
const Component = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-a6dcb86e"]]);
|
|
wx.createComponent(Component);
|
|
//# sourceMappingURL=certPopup.js.map
|