app.component('resume-list', { template: `
{{item.name}} ({{item.mobile}})
{{item.status_text}}
{{item.last_msg}}
{{item.last_msg_time}}
跟进 编辑
选择
`, data() { return {} }, props: { list: { type: Array, default: [], }, is_select: { type: Boolean, default: false, }, }, methods: { onFollow(id) { this.$emit('follow',id); }, onEdit(id) { this.$emit('edit',id); }, onDeal(info) { this.$emit('deal',info); }, }, });