|
@@ -91,12 +91,20 @@
|
|
|
<el-table-column label="考试ID" width="120">
|
|
|
<template slot-scope="scope">
|
|
|
<el-button
|
|
|
- v-show="currentPagePrivileges.SNAPSHOT_DETAILS"
|
|
|
+ v-show="
|
|
|
+ scope.row.examType == 'ONLINE' &&
|
|
|
+ currentPagePrivileges.SNAPSHOT_DETAILS
|
|
|
+ "
|
|
|
@click="gotoCaptureDetail(scope.row.dataId)"
|
|
|
type="text"
|
|
|
>{{ scope.row.dataId }}
|
|
|
</el-button>
|
|
|
- <span v-show="!currentPagePrivileges.SNAPSHOT_DETAILS">
|
|
|
+ <span
|
|
|
+ v-show="
|
|
|
+ scope.row.examType != 'ONLINE' ||
|
|
|
+ !currentPagePrivileges.SNAPSHOT_DETAILS
|
|
|
+ "
|
|
|
+ >
|
|
|
{{ scope.row.dataId }}
|
|
|
</span>
|
|
|
</template>
|