index.js 743 B

123456789101112131415161718192021
  1. "use strict";
  2. const common_vendor = require("../../common/vendor.js");
  3. const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
  4. __name: "index",
  5. setup(__props) {
  6. const config = common_vendor.ref({ agreement: "" });
  7. common_vendor.onShow(() => {
  8. searchConfig();
  9. });
  10. const searchConfig = async () => {
  11. config.value = common_vendor.index.getStorageSync("config");
  12. };
  13. return (_ctx, _cache) => {
  14. return {
  15. a: config.value.agreement
  16. };
  17. };
  18. }
  19. });
  20. const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__scopeId", "data-v-0395f5a9"], ["__file", "D:/project/赋强公证/notarization_applet/pagesHome/agree/index.vue"]]);
  21. wx.createPage(MiniProgramPage);