app.component('report-list', { template: `
{{item.recruit.title}}
{{item.status_text}}
预计到达日期:{{item.arrivetime}}
报名时间:{{item.createtime}}
求职者电话 公司电话 详情
`, data() { return {} }, props: { list: { type: Array, default: [], }, is_select: { type: Boolean, default: false, }, }, methods: { onCall(phone) { window.location.href = "tel:" + phone; }, onDetail(item) { this.$emit('detail',item); }, }, });