success.js 1005 B

1234567891011121314151617181920212223242526272829303132333435
  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. startInterview() {
  16. common_vendor.index.navigateTo({
  17. url: "/pages/interview-notice/interview-notice",
  18. fail: (err) => {
  19. console.error("页面跳转失败:", err);
  20. common_vendor.index.showToast({
  21. title: "页面跳转失败",
  22. icon: "none"
  23. });
  24. }
  25. });
  26. }
  27. }
  28. };
  29. function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
  30. return {
  31. a: common_vendor.o((...args) => $options.startInterview && $options.startInterview(...args))
  32. };
  33. }
  34. const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
  35. wx.createPage(MiniProgramPage);