"use strict"; const common_vendor = require("../../common/vendor.js"); const common_config = require("../../common/config.js"); const _sfc_main = { data() { return { interviewInfo: { position: "前端岗位", startTime: "2024/06/28 14:48", endTime: "2024/06/28 16:47", company: "敏龙科技集团有限公司" } }; }, onLoad() { this.completeInterview(); }, methods: { async completeInterview() { try { const result = await common_vendor.index.request({ url: `${common_config.apiBaseUrl}/api/job/complete_interview`, method: "POST", data: { "application_id": JSON.parse(common_vendor.index.getStorageSync("appId")), "tenant_id": JSON.parse(common_vendor.index.getStorageSync("userInfo")).tenant_id } }); } catch (error) { } }, goBack() { common_vendor.index.switchTab({ 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);