修改配置,考试的上班架控制

This commit is contained in:
daihh
2022-12-26 16:50:52 +08:00
parent 5df2e8d6a3
commit beec863bb1
7 changed files with 15 additions and 4 deletions

View File

@@ -58,6 +58,13 @@
{{ scope.row.published ? '已发布' : '未发布' }}
</template>
</el-table-column>
<el-table-column label="上下架" prop="collectNumber">
<template slot-scope="scope">
<!-- {{ scope.row.enabled ? '已上架' : '已下架' }} -->
<span v-if="scope.row.enabled">已上架</span>
<span v-else style="color:red">已下架</span>
</template>
</el-table-column>
<el-table-column label="创建人" prop="sysCreateBy"></el-table-column>
<el-table-column label="操作" width="250px" fixed="right">
<template slot-scope="scope">

View File

@@ -1,7 +1,7 @@
<template>
<!--学习路径图-->
<div class="box">
<iframe id="studyPathFrame" :src="basePath+'/fe-student/learnpath'" style="width: 100%;height: 800px;" frameborder="0"></iframe>
<iframe id="studyPathFrame" :src="basePath+'/learnpath'" style="width: 100%;height: 800px;" frameborder="0"></iframe>
</div>
</template>
@@ -9,7 +9,7 @@
export default{
data(){
return {
basePath:process.env.VUE_APP_MANAGER_PATH
basePath:process.env.VUE_APP_STUDENT_PATH
}
},
mounted() {

View File

@@ -1,7 +1,7 @@
<template>
<!--学习项目-->
<div class="box">
<iframe id="studyPathFrame" :src="basePath+'/fe-student/projectManage'" style="width: 100%;height: 800px;" frameborder="0"></iframe>
<iframe id="studyPathFrame" :src="basePath+'/projectManage'" style="width: 100%;height: 800px;" frameborder="0"></iframe>
</div>
</template>
@@ -9,7 +9,7 @@
export default{
data(){
return {
basePath:process.env.VUE_APP_MANAGER_PATH
basePath:process.env.VUE_APP_STUDENT_PATH
}
},
mounted() {