123456789101112131415161718192021222324252627282930313233 |
- "use strict";
- const common_vendor = require("../../common/vendor.js");
- const _sfc_main = {
- data() {
- return {
- interviewInfo: {
- position: "前端岗位",
- startTime: "2024/06/28 14:48",
- endTime: "2024/06/28 16:47",
- company: "敏龙科技集团有限公司"
- }
- };
- },
- methods: {
- goBack() {
- common_vendor.index.navigateBack({
- delta: 1,
- fail: () => {
- common_vendor.index.reLaunch({
- url: "/pages/index/index"
- });
- }
- });
- }
- }
- };
- function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
- return {
- a: common_vendor.o((...args) => $options.goBack && $options.goBack(...args))
- };
- }
- const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["render", _sfc_render]]);
- wx.createPage(MiniProgramPage);
|