|
@@ -2,7 +2,7 @@
|
|
|
<div class="pb_content" style="background: #f0f2f5" v-loading="loading">
|
|
|
<div class="pb_content_body" style="position: relative; margin: 0">
|
|
|
<div class="right">
|
|
|
- <div class="courseTop" v-if="gotype">
|
|
|
+ <div class="courseTop" v-if="gotype && !disableBack">
|
|
|
<div
|
|
|
class="r_pub_button_retrun"
|
|
|
@click="retrunCourse"
|
|
@@ -11,7 +11,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="courseTop" v-else>
|
|
|
- <div class="stepsNav" v-if="!examineId">
|
|
|
+ <div class="stepsNav" v-if="!examineId && !disableBack">
|
|
|
<el-breadcrumb separator-class="el-icon-arrow-right">
|
|
|
<el-breadcrumb-item
|
|
|
v-if="!back"
|
|
@@ -45,7 +45,7 @@
|
|
|
</el-breadcrumb>
|
|
|
</div>
|
|
|
<div
|
|
|
- v-if="!peopleId"
|
|
|
+ v-if="!peopleId && !disableBack"
|
|
|
class="r_pub_button_retrun"
|
|
|
@click="retrunCourse"
|
|
|
>
|
|
@@ -361,7 +361,7 @@
|
|
|
</div> -->
|
|
|
<div style="margin-top: 10px;display: flex;justify-content: flex-end;">
|
|
|
<el-button @click="opQvisible0 = false">取消</el-button>
|
|
|
- <el-button style="background: #1456F0;" @click="markSco()" type="primary">确定</el-button>
|
|
|
+ <el-button style="background: #1456F0;" @click="markSco()" type="primary">运行</el-button>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
@@ -1441,7 +1441,7 @@
|
|
|
<template v-if="scope.row.array[index].json.file">
|
|
|
<template v-for="(file, index2) in scope.row.array[index].json.file">
|
|
|
<div
|
|
|
- class="file"
|
|
|
+ class="file"
|
|
|
v-if="index2 < 3"
|
|
|
:key="index + '-' + index2"
|
|
|
@click.stop="checkFile(file)"
|
|
@@ -2191,6 +2191,7 @@ export default {
|
|
|
// infoprogress: [],
|
|
|
teaType: [],
|
|
|
examineData:null,
|
|
|
+ disableBack: this.$route.query.disableBack === 'true',
|
|
|
};
|
|
|
},
|
|
|
watch: {},
|