|
@@ -2,8 +2,13 @@
|
|
<div class="flex direction-column full">
|
|
<div class="flex direction-column full">
|
|
<div class="flex items-center p-extra-small fill-blank header-view">
|
|
<div class="flex items-center p-extra-small fill-blank header-view">
|
|
<el-button class="m-r-auto" size="small" plain @click="back()">返回</el-button>
|
|
<el-button class="m-r-auto" size="small" plain @click="back()">返回</el-button>
|
|
- <message class="m-r-base" :paper-path="current?.filePath"></message>
|
|
|
|
- <user-info></user-info>
|
|
|
|
|
|
+ <div class="m-r-base m-l-base">
|
|
|
|
+ <lock-entry></lock-entry>
|
|
|
|
+ </div>
|
|
|
|
+ <message class="m-r-base m-l-base" :paper-path="current?.filePath"></message>
|
|
|
|
+ <div class="m-r-base m-l-base">
|
|
|
|
+ <user-info></user-info>
|
|
|
|
+ </div>
|
|
</div>
|
|
</div>
|
|
<div class="flex fill-blank detail-info">
|
|
<div class="flex fill-blank detail-info">
|
|
<div class="flex p-base detail-info-chart" style="width: 56%">
|
|
<div class="flex p-base detail-info-chart" style="width: 56%">
|
|
@@ -88,7 +93,7 @@ import ScoringPanelWithConfirm from '@/components/shared/ScoringPanelWithConfirm
|
|
import ImagePreview from '@/components/shared/ImagePreview.vue'
|
|
import ImagePreview from '@/components/shared/ImagePreview.vue'
|
|
import MarkHistoryList from '@/components/shared/MarkHistoryList.vue'
|
|
import MarkHistoryList from '@/components/shared/MarkHistoryList.vue'
|
|
import SvgIcon from '@/components/common/SvgIcon.vue'
|
|
import SvgIcon from '@/components/common/SvgIcon.vue'
|
|
-
|
|
|
|
|
|
+import LockEntry from '@/components/common/LockEntry.vue'
|
|
import type { EChartsOption } from 'echarts'
|
|
import type { EChartsOption } from 'echarts'
|
|
import type { ExtractMultipleApiResponse, ExtractApiResponse } from '@/api/api'
|
|
import type { ExtractMultipleApiResponse, ExtractApiResponse } from '@/api/api'
|
|
import type { EpTableColumn } from 'global-type'
|
|
import type { EpTableColumn } from 'global-type'
|
|
@@ -197,15 +202,15 @@ const markerSubjectiveChartsOption = computed<EChartsOption>(() => {
|
|
data: getXAxisData('scoreStart', subjectiveByMarker?.value?.segmentsByAll),
|
|
data: getXAxisData('scoreStart', subjectiveByMarker?.value?.segmentsByAll),
|
|
},
|
|
},
|
|
yAxis: [
|
|
yAxis: [
|
|
- {
|
|
|
|
- type: 'value',
|
|
|
|
- },
|
|
|
|
|
|
+ // {
|
|
|
|
+ // type: 'value',
|
|
|
|
+ // },
|
|
{
|
|
{
|
|
type: 'value',
|
|
type: 'value',
|
|
axisLabel: {
|
|
axisLabel: {
|
|
formatter: `{value}%`,
|
|
formatter: `{value}%`,
|
|
},
|
|
},
|
|
- splitLine: { show: false },
|
|
|
|
|
|
+ splitLine: { show: true },
|
|
},
|
|
},
|
|
],
|
|
],
|
|
series: [
|
|
series: [
|
|
@@ -256,15 +261,15 @@ const markerObjectiveChartsOption = computed<EChartsOption>(() => {
|
|
data: getXAxisData('scoreStart', objectiveByMarker?.value?.segmentsByAll),
|
|
data: getXAxisData('scoreStart', objectiveByMarker?.value?.segmentsByAll),
|
|
},
|
|
},
|
|
yAxis: [
|
|
yAxis: [
|
|
- {
|
|
|
|
- type: 'value',
|
|
|
|
- },
|
|
|
|
|
|
+ // {
|
|
|
|
+ // type: 'value',
|
|
|
|
+ // },
|
|
{
|
|
{
|
|
type: 'value',
|
|
type: 'value',
|
|
axisLabel: {
|
|
axisLabel: {
|
|
formatter: `{value}%`,
|
|
formatter: `{value}%`,
|
|
},
|
|
},
|
|
- splitLine: { show: false },
|
|
|
|
|
|
+ splitLine: { show: true },
|
|
},
|
|
},
|
|
],
|
|
],
|
|
series: [
|
|
series: [
|