| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <interview></interview>
- </template>
- <script>
- // import { mapState } from "vuex";
- import interview from "@/components/interview/interview";
- import qs from "qs";
- export default {
- layout: "opacity_header",
- head: {
- title: "技术面试官-程序员客栈",
- meta: [
- {
- name: "description",
- content: "专业、可信赖的技术面试委托方案,CTO级别面试官为您面试程序员。"
- }
- ]
- },
- components: {
- interview
- },
- data() {
- return {};
- },
- computed: {
- // ...mapState(["isPC"])
- },
- async mounted() {
- // await this.getList();
- // this.getVipDetail();
- },
- methods: {
- async getList() {
- let extraHeaders = {};
- if (this.deviceType === "ios") {
- extraHeaders = this.getSign();
- }
- let res = await this.$axios.$post(`/api/vip/getList`, extraHeaders);
- if (res) {
- this.vipList = res.data;
- }
- },
- async getVipDetail() {
- let res = await this.$axios.$post("/api/vip/getVipUserDetail");
- // if (!res || !res.data) return
- this.vipDetail = res && res.data ? res.data : {};
- if (this.isCom) this.currentCom = true;
- }
- }
- };
- </script>
- <style>
- </style>
|