22 lines
811 B
JavaScript
22 lines
811 B
JavaScript
"use strict";
|
|
const common_vendor = require("../../common/vendor.js");
|
|
const _sfc_main = {
|
|
methods: {
|
|
toUser() {
|
|
common_vendor.index.navigateTo({ url: "/pages/agreement/user" });
|
|
},
|
|
toPurchase() {
|
|
common_vendor.index.navigateTo({ url: "/pages/agreement/purchase" });
|
|
}
|
|
}
|
|
};
|
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
|
return {
|
|
a: common_vendor.o((...args) => $options.toUser && $options.toUser(...args)),
|
|
b: common_vendor.o((...args) => $options.toPurchase && $options.toPurchase(...args))
|
|
};
|
|
}
|
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__scopeId", "data-v-e6af2099"]]);
|
|
wx.createPage(MiniProgramPage);
|
|
//# sourceMappingURL=../../../.sourcemap/mp-weixin/pages/help/index.js.map
|