28 lines
905 B
JavaScript
28 lines
905 B
JavaScript
"use strict";
|
|
const common_vendor = require("../../common/vendor.js");
|
|
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
|
|
__name: "index",
|
|
setup(__props) {
|
|
const darkFans = common_vendor.ref(false);
|
|
common_vendor.onLoad((options) => {
|
|
if (options.darkFans === `false`) {
|
|
darkFans.value = false;
|
|
} else {
|
|
darkFans.value = true;
|
|
}
|
|
});
|
|
const goback = () => {
|
|
common_vendor.index.navigateBack();
|
|
};
|
|
return (_ctx, _cache) => {
|
|
return {
|
|
a: common_vendor.n(darkFans.value ? `darkbackgroundContainer` : `backgroundContainer`),
|
|
b: common_vendor.o(goback)
|
|
};
|
|
};
|
|
}
|
|
});
|
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-ac282b9d"]]);
|
|
wx.createPage(MiniProgramPage);
|
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/somethingmove/index.js.map
|