123456789101112131415161718192021222324 |
- "use strict";
- const common_vendor = require("../../common/vendor.js");
- const _sfc_main = {
- data() {
- return {
- notifyPush: true,
- sound: true,
- sysNotify: false
- };
- }
- };
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- return {
- a: $data.notifyPush,
- b: common_vendor.o((val) => $data.notifyPush = val.detail.value),
- c: $data.sound,
- d: common_vendor.o((val) => $data.sound = val.detail.value),
- e: $data.sysNotify,
- f: common_vendor.o((val) => $data.sysNotify = val.detail.value)
- };
- }
- const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
- wx.createPage(MiniProgramPage);
- //# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/mine/notify.js.map
|