success.js 859 B

123456789101112131415161718192021222324252627282930313233
  1. "use strict";
  2. const common_vendor = require("../../common/vendor.js");
  3. const _sfc_main = {
  4. data() {
  5. return {
  6. interviewInfo: {
  7. position: "前端岗位",
  8. startTime: "2024/06/28 14:48",
  9. endTime: "2024/06/28 16:47",
  10. company: "敏龙科技集团有限公司"
  11. }
  12. };
  13. },
  14. methods: {
  15. goBack() {
  16. common_vendor.index.navigateBack({
  17. delta: 1,
  18. fail: () => {
  19. common_vendor.index.reLaunch({
  20. url: "/pages/index/index"
  21. });
  22. }
  23. });
  24. }
  25. }
  26. };
  27. function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
  28. return {
  29. a: common_vendor.o((...args) => $options.goBack && $options.goBack(...args))
  30. };
  31. }
  32. const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
  33. wx.createPage(MiniProgramPage);