12345678910111213141516171819202122232425 |
- "use strict";
- const framework_util = require("../../framework/util.js");
- const common_vendor = require("../../common/vendor.js");
- const _sfc_main = {
- data() {
- return {};
- },
- onLoad() {
- },
- methods: {
- onClickTest() {
- framework_util.util.showLoading();
- setTimeout(() => {
- framework_util.util.hideLoading();
- }, 1500);
- }
- }
- };
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- return {
- a: common_vendor.o((...args) => $options.onClickTest && $options.onClickTest(...args))
- };
- }
- 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"]]);
- tt.createPage(MiniProgramPage);
|