mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-student.git
synced 2025-12-10 19:36:48 +08:00
init
This commit is contained in:
@@ -47,7 +47,8 @@ export const COMMENT_ADD = '/comment post'
|
||||
export const COMMENT_PRAISE = '/comment/praise post'
|
||||
export const COMMENT_COLLECTION = '/comment/collection post'
|
||||
|
||||
export const ASSESSMENT_QUERY = assessmentId => `/assessmentSubmit/queryAssessmentSubmitDetailById?assessmentSubmitId=${assessmentId} post`
|
||||
export const ASSESSMENT_SUBMIT_QUERY = assessmentId => `/assessmentSubmit/queryAssessmentSubmitDetailById?assessmentSubmitId=${assessmentId} post`
|
||||
export const ASSESSMENT_QUERY = assessmentId => `/assessment/queryAssessmentDetailById?assessmentId=${assessmentId} post`
|
||||
export const ASSESSMENT_SUBMIT = '/assessmentSubmit/submitAssessmentDetail'
|
||||
|
||||
export const ACTIVITY = '/activity'
|
||||
@@ -29,7 +29,7 @@
|
||||
<div style="margin-left: 8px">{{ data.planDto?.address }}</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="btn" v-if="data.planDto?.evalFlag">评估</div>
|
||||
<div class="btn" @click="toSurvery" v-if="data.planDto?.evalFlag">评估</div>
|
||||
</div>
|
||||
<!-- 基本信息 -->
|
||||
|
||||
@@ -93,7 +93,7 @@
|
||||
<div
|
||||
class="submit"
|
||||
@click="toWork(data.workDto)"
|
||||
v-if="!data.workDto.workId"
|
||||
v-if="!data.workDto?.workId"
|
||||
>
|
||||
提交
|
||||
</div>
|
||||
@@ -141,7 +141,7 @@
|
||||
</div>
|
||||
<div class="introduce">{{ data.planDto?.bandDesc }}</div>
|
||||
</div>
|
||||
<div class="follow">+ 关注</div>
|
||||
<!-- <div class="follow">+ 关注</div>-->
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -178,8 +178,12 @@ const download = (url) => {
|
||||
window.open(url);
|
||||
};
|
||||
|
||||
function toSurvery() {
|
||||
router.push({path: "/surveydetail", query: {courseId: data.value.planDto.evaluateId}})
|
||||
}
|
||||
|
||||
function toWork(obj) {
|
||||
router.push({ path: "/homeworkpage", query: { id: obj.courseId } });
|
||||
router.push({path: "/homeworkpage", query: {id: obj.workId, taskId: data.value.offcourseDto.categoryId, type}})
|
||||
}
|
||||
|
||||
function toExamItem(obj) {
|
||||
|
||||
Reference in New Issue
Block a user