|
@@ -41,7 +41,7 @@
|
|
:title="`问题卷${store.status.problemCount}\n待仲裁${store.status.arbitrateCount}`"
|
|
:title="`问题卷${store.status.problemCount}\n待仲裁${store.status.arbitrateCount}`"
|
|
style="line-height: 20px"
|
|
style="line-height: 20px"
|
|
>
|
|
>
|
|
- <QuestionCircleOutlined :style="{ 'font-size': '20px' }" />
|
|
|
|
|
|
+ <QuestionCircleOutlined style="font-size: 20px" />
|
|
</li>
|
|
</li>
|
|
<li>
|
|
<li>
|
|
进度<span class="highlight-text">{{ progress }}%</span>
|
|
进度<span class="highlight-text">{{ progress }}%</span>
|
|
@@ -50,29 +50,29 @@
|
|
<ul class="tw-flex tw-gap-2 tw-mb-0">
|
|
<ul class="tw-flex tw-gap-2 tw-mb-0">
|
|
<li @click="upScale" title="放大" style="line-height: 20px">
|
|
<li @click="upScale" title="放大" style="line-height: 20px">
|
|
<PlusCircleOutlined
|
|
<PlusCircleOutlined
|
|
|
|
+ style="font-size: 20px"
|
|
:style="{
|
|
:style="{
|
|
- 'font-size': '20px',
|
|
|
|
color: greaterThanOneScale ? 'red' : 'white',
|
|
color: greaterThanOneScale ? 'red' : 'white',
|
|
}"
|
|
}"
|
|
/>
|
|
/>
|
|
</li>
|
|
</li>
|
|
<li @click="downScale" title="缩小" style="line-height: 20px">
|
|
<li @click="downScale" title="缩小" style="line-height: 20px">
|
|
<MinusCircleOutlined
|
|
<MinusCircleOutlined
|
|
|
|
+ style="font-size: 20px"
|
|
:style="{
|
|
:style="{
|
|
- 'font-size': '20px',
|
|
|
|
color: lessThanOneScale ? 'red' : 'white',
|
|
color: lessThanOneScale ? 'red' : 'white',
|
|
}"
|
|
}"
|
|
/>
|
|
/>
|
|
</li>
|
|
</li>
|
|
<li @click="normalScale" title="适应" style="line-height: 20px">
|
|
<li @click="normalScale" title="适应" style="line-height: 20px">
|
|
- <FullscreenOutlined :style="{ 'font-size': '20px' }" />
|
|
|
|
|
|
+ <FullscreenOutlined style="font-size: 20px" />
|
|
</li>
|
|
</li>
|
|
</ul>
|
|
</ul>
|
|
<div @click="toggleSettingMode" style="line-height: 20px">
|
|
<div @click="toggleSettingMode" style="line-height: 20px">
|
|
{{ modeName }} {{ store.setting.forceMode ? "" : "(切换)" }}
|
|
{{ modeName }} {{ store.setting.forceMode ? "" : "(切换)" }}
|
|
</div>
|
|
</div>
|
|
<div @click="toggleHistory" style="line-height: 20px" title="回看">
|
|
<div @click="toggleHistory" style="line-height: 20px" title="回看">
|
|
- <HistoryOutlined :style="{ 'font-size': '20px' }" />
|
|
|
|
|
|
+ <HistoryOutlined style="font-size: 20px" />
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
class="tw-flex tw-place-items-center"
|
|
class="tw-flex tw-place-items-center"
|
|
@@ -83,23 +83,16 @@
|
|
$filters.datetimeFilter(store.setting.startTime)
|
|
$filters.datetimeFilter(store.setting.startTime)
|
|
"
|
|
"
|
|
>
|
|
>
|
|
- <ClockCircleOutlined
|
|
|
|
- :style="{ 'font-size': '20px' }"
|
|
|
|
- style="line-height: 20px"
|
|
|
|
- />
|
|
|
|
|
|
+ <ClockCircleOutlined style="font-size: 20px; line-height: 20px" />
|
|
</div>
|
|
</div>
|
|
<div @click="switchGroupDialog">{{ group?.title }}(切换)</div>
|
|
<div @click="switchGroupDialog">{{ group?.title }}(切换)</div>
|
|
<div class="tw-flex tw-place-items-center">
|
|
<div class="tw-flex tw-place-items-center">
|
|
- <UserOutlined
|
|
|
|
- :style="{ 'font-size': '18px' }"
|
|
|
|
- style="line-height: 18px"
|
|
|
|
- />{{ store.setting.userName }}
|
|
|
|
|
|
+ <UserOutlined style="font-size: 18px; line-height: 18px" />{{
|
|
|
|
+ store.setting.userName
|
|
|
|
+ }}
|
|
</div>
|
|
</div>
|
|
<div class="tw-flex tw-place-items-center">
|
|
<div class="tw-flex tw-place-items-center">
|
|
- <PoweroffOutlined
|
|
|
|
- :style="{ 'font-size': '18px' }"
|
|
|
|
- style="line-height: 18px"
|
|
|
|
- />退出
|
|
|
|
|
|
+ <PoweroffOutlined style="font-size: 18px; line-height: 18px" />退出
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
</template>
|