|
|
@@ -48,11 +48,12 @@ export default {
|
|
|
};
|
|
|
},
|
|
|
async mounted() {
|
|
|
- const { dlworkId } = this.$route.params.dlworkId;
|
|
|
- const { userId } = this.$route.params.userId;
|
|
|
+ const { dlworkId } = this.$route.params;
|
|
|
+ const { userId } = this.$route.params;
|
|
|
this.detailLoading = true;
|
|
|
const detail = await getStudentDLProjectDetail(dlworkId, userId);
|
|
|
this.dlDetail = detail.data;
|
|
|
+ console.log(this.dlDetail);
|
|
|
|
|
|
this.detailLoading = false;
|
|
|
}
|