app.component('resume-list', {
template: `
{{item.name}} ({{item.mobile}})
{{item.status_text}}
跟进
编辑
选择
`,
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);
},
},
});