|
@@ -82,7 +82,13 @@ export default {
|
|
|
selectHandler(item) {
|
|
|
this.$emit("select", item);
|
|
|
},
|
|
|
- getImage(item) {}
|
|
|
+ getImage(item) {
|
|
|
+ if (item.type === "TRAINING") {
|
|
|
+ return require("../images/teacher_logo.png");
|
|
|
+ } else if (item.type === "REPERTOIRE_PLAY") {
|
|
|
+ return require("../images/group_logo.png");
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
};
|
|
|
</script>
|