bookstore.js 775 B

12345678910111213141516171819202122232425
  1. "use strict";
  2. const framework_util = require("../../framework/util.js");
  3. const common_vendor = require("../../common/vendor.js");
  4. const _sfc_main = {
  5. data() {
  6. return {};
  7. },
  8. onLoad() {
  9. },
  10. methods: {
  11. onClickTest() {
  12. framework_util.util.showLoading();
  13. setTimeout(() => {
  14. framework_util.util.hideLoading();
  15. }, 1500);
  16. }
  17. }
  18. };
  19. function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
  20. return {
  21. a: common_vendor.o((...args) => $options.onClickTest && $options.onClickTest(...args))
  22. };
  23. }
  24. const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/Users/xy/Desktop/uni_app_project/xs/xs-app/pages/bookstore/bookstore.vue"]]);
  25. tt.createPage(MiniProgramPage);