|
@@ -32,7 +32,6 @@
|
|
:key="user.markUserQuestionId"
|
|
:key="user.markUserQuestionId"
|
|
class="tag-spin tag-wrap"
|
|
class="tag-spin tag-wrap"
|
|
size="medium"
|
|
size="medium"
|
|
- effect="dark"
|
|
|
|
closable
|
|
closable
|
|
@close="toDeleteMarker(scope.row, user)"
|
|
@close="toDeleteMarker(scope.row, user)"
|
|
>
|
|
>
|
|
@@ -40,7 +39,7 @@
|
|
</el-tag>
|
|
</el-tag>
|
|
<el-button
|
|
<el-button
|
|
type="text"
|
|
type="text"
|
|
- class="btn-primary"
|
|
|
|
|
|
+ class="btn-primary ml-2"
|
|
@click="toSetMarker(scope.row)"
|
|
@click="toSetMarker(scope.row)"
|
|
>
|
|
>
|
|
设置评卷员
|
|
设置评卷员
|
|
@@ -53,17 +52,17 @@
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="仲裁阈值" width="100">
|
|
<el-table-column label="仲裁阈值" width="100">
|
|
- <template v-if="scope.row.doubleEnable" slot-scope="scope">
|
|
|
|
|
|
+ <template v-if="scope.row.doubleRate" slot-scope="scope">
|
|
{{ scope.row.arbitrateThreshold }}
|
|
{{ scope.row.arbitrateThreshold }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="合分策略" width="100">
|
|
<el-table-column label="合分策略" width="100">
|
|
- <template v-if="scope.row.doubleEnable" slot-scope="scope">
|
|
|
|
|
|
+ <template v-if="scope.row.doubleRate" slot-scope="scope">
|
|
{{ SCORE_POLICY_TYPE[scope.row.scorePolicy] }}
|
|
{{ SCORE_POLICY_TYPE[scope.row.scorePolicy] }}
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="双评比例" width="100">
|
|
<el-table-column label="双评比例" width="100">
|
|
- <template v-if="scope.row.doubleEnable" slot-scope="scope">
|
|
|
|
|
|
+ <template v-if="scope.row.doubleRate" slot-scope="scope">
|
|
{{ scope.row.doubleRate }}%
|
|
{{ scope.row.doubleRate }}%
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|