123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429 |
- <template>
- <div class="p-base p-b-unset m-b-base radius-base fill-blank total-progress-box">
- <base-form size="small" :model="model" :items="items"></base-form>
- <div class="flex total-progress-info">
- <div class="flex direction-column full-h p-r-base table-info">
- <div class="p-t-base p-b-extra-small table-title">整体进度</div>
- <div class="flex-1 overflow-hidden">
- <base-table
- size="small"
- height="100%"
- highlight-current-row
- :columns="totalColumns"
- :data="totalProgressData"
- @current-change="onCurrentChange"
- >
- <template #empty>暂无数据</template>
- </base-table>
- </div>
- </div>
- <div class="flex-1 p-t-small p-b-extra-small overflow-hidden full-h chart-info">
- <vue-e-charts class="full" :option="totalChartsOption" autoresize></vue-e-charts>
- </div>
- </div>
- </div>
- <div class="p-base radius-base fill-blank flex group-progress-box">
- <div class="flex direction-column full-h p-r-base table-info">
- <div class="flex justify-between">
- <span class="table-title">小组进度</span>
- <span v-show="currentMainName" class="flex items-center current-main-name">
- <svg-icon class="m-r-medium-mini" name="question"></svg-icon>
- <span>{{ currentMainName }}</span>
- </span>
- </div>
- <div class="flex-1 overflow-hidden">
- <base-table size="small" height="100%" :columns="groupColumns" :data="groupProgressData">
- <template #empty>暂无数据</template>
- </base-table>
- </div>
- </div>
- <div class="flex-1 full-h chart-info">
- <vue-e-charts v-if="currentMainName" class="full" :option="groupChartsOption" autoresize></vue-e-charts>
- </div>
- </div>
- </template>
- <script setup lang="ts" name="TotalProgress">
- /** 评卷进度 */
- import { reactive, watch, computed, ref } from 'vue'
- import VueECharts from 'vue-echarts'
- import { minus } from '@/utils/common'
- import BaseForm from '@/components/element/BaseForm.vue'
- import BaseTable from '@/components/element/BaseTable.vue'
- import SvgIcon from '@/components/common/SvgIcon.vue'
- import useForm from '@/hooks/useForm'
- import useFetch from '@/hooks/useFetch'
- import useOptions from '@/hooks/useOptions'
- import useVueECharts from '@/hooks/useVueECharts'
- import { usePX } from '@/hooks/useVW'
- import type { EChartsOption } from 'echarts'
- import type { ExtractApiResponse } from '@/api/api'
- import type { EpFormItem, EpTableColumn } from 'global-type'
- const { provideInitOption } = useVueECharts()
- provideInitOption({ renderer: 'svg' })
- const model = reactive({
- subjectCode: '',
- })
- const { subjectList, dataModel, changeModelValue } = useOptions(['subject'])
- watch(
- dataModel,
- () => {
- model.subjectCode = dataModel.subject || ''
- },
- { deep: true }
- )
- const { defineColumn } = useForm()
- const items = computed<EpFormItem[]>(() => [
- defineColumn(
- {
- label: '科目',
- slotType: 'select',
- prop: 'subjectCode',
- slot: { options: subjectList.value, onChange: changeModelValue('subject') },
- },
- '',
- { span: 5 }
- ),
- ])
- /** 整体进度 */
- type TotalProgress = ExtractArrayValue<ExtractApiResponse<'getMarkProgress'>>
- const getMainName = (row?: TotalProgress) => {
- const { questionMainName: name, questionMainNumber: number } = row || {}
- return [number, name].filter(Boolean).join('-')
- }
- const totalColumns: EpTableColumn<TotalProgress>[] = [
- {
- label: '大题',
- formatter: getMainName,
- },
- { label: '试卷总量', prop: 'totalPaper', align: 'center', width: usePX(100) },
- { label: '已完成', prop: 'finishCount', align: 'center', width: usePX(100) },
- {
- label: '完成比',
- align: 'center',
- width: usePX(72),
- formatter(row) {
- return `${row.finishRate}%`
- },
- },
- {
- label: '待完成',
- align: 'center',
- width: usePX(100),
- formatter(row) {
- return `${minus(row.totalPaper, row.finishCount)}`
- },
- },
- {
- label: '待完成比',
- align: 'center',
- width: usePX(72),
- formatter(row) {
- return `${minus(100, row.finishRate)}%`
- },
- },
- {
- label: '预计耗时(分)',
- align: 'center',
- width: usePX(100),
- formatter(row) {
- return `${parseFloat((row.takeTime / 60).toFixed(2))}`
- },
- },
- ]
- const { fetch: getMarkProgress, result: markProgressResult } = useFetch('getMarkProgress')
- /** 将汇总行放到数组最后 */
- const totalProgressData = computed(() => {
- if (!markProgressResult?.value) return []
- const arr = markProgressResult.value.slice(0)
- const totalIndex = arr.findIndex((v) => v.questionMainNumber === 0)
- const [total] = arr.splice(totalIndex, 1)
- arr.push(total)
- return arr
- })
- watch(
- () => model.subjectCode,
- (v) => {
- v && getMarkProgress(model)
- },
- { immediate: true }
- )
- const currentMainQuestion = ref<TotalProgress>()
- const currentMainName = computed(() => {
- return getMainName(currentMainQuestion.value)
- })
- const onCurrentChange = (row: TotalProgress) => {
- if (row.questionMainNumber !== 0) {
- currentMainQuestion.value = row
- }
- }
- const getYAxisData = (field: keyof TotalProgress | 'name', data?: TotalProgress[]) => {
- if (!data) {
- return []
- }
- return data.map((v) => {
- if (field === 'name') {
- return getMainName(v)
- }
- return v[field]
- })
- }
- const totalChartsOption = computed<EChartsOption>(() => {
- return {
- grid: {
- top: 20,
- bottom: -20,
- left: 20,
- right: 30,
- containLabel: true,
- },
- legend: {
- right: 0,
- itemWidth: 14,
- data: ['试卷总量', '已完成', '完成比'],
- },
- yAxis: {
- axisLine: { show: false },
- axisTick: { show: false },
- splitLine: { show: false },
- inverse: true,
- axisLabel: {
- align: 'right',
- verticalAlign: 'bottom',
- },
- data: getYAxisData('name', markProgressResult?.value),
- },
- xAxis: [
- {
- position: 'top',
- type: 'value',
- splitLine: { show: true },
- },
- {
- position: 'bottom',
- type: 'value',
- show: false,
- axisLabel: {
- formatter: `{value}%`,
- },
- splitLine: { show: false },
- },
- ],
- series: [
- {
- name: '试卷总量',
- type: 'bar',
- barWidth: 11,
- barGap: '-200%',
- itemStyle: {
- color: '#3AD500',
- },
- data: getYAxisData('totalPaper', markProgressResult?.value),
- },
- {
- name: '已完成',
- type: 'bar',
- barWidth: 11,
- barGap: '-200%',
- itemStyle: {
- color: '#0064FF',
- },
- data: getYAxisData('finishCount', markProgressResult?.value),
- },
- {
- name: '完成比',
- type: 'bar',
- barWidth: 44,
- barGap: '-200%',
- showBackground: true,
- xAxisIndex: 1,
- itemStyle: {
- color: 'rgba(0, 186, 151,0.3)',
- },
- label: {
- show: true,
- color: '#444',
- fontSize: 10,
- formatter({ value }) {
- return value > 0 ? `${value}%` : ''
- },
- position: 'insideTopRight',
- },
- data: getYAxisData('finishRate', markProgressResult?.value),
- },
- ],
- }
- })
- /** 小组进度 */
- type GroupProgress = ExtractArrayValue<ExtractApiResponse<'getMarkProgressByGroup'>>
- const groupColumns: EpTableColumn<GroupProgress>[] = [
- { label: '小组', formatter: (row) => (row.markingGroupNumber ? `第${row.markingGroupNumber}组` : '全体') },
- { label: '完成总量', prop: 'finishCount', align: 'center' },
- {
- label: '完成比',
- prop: 'finishRate',
- align: 'center',
- formatter(row) {
- return `${row.finishRate}%`
- },
- },
- { label: '当日已完成', prop: 'dayFinishCount', align: 'center' },
- {
- label: '当日完成比',
- prop: 'dayFinishRate',
- align: 'center',
- formatter(row) {
- return `${row.dayFinishRate}%`
- },
- },
- ]
- const { fetch: getMarkProgressByGroup, result: groupProgressResult } = useFetch('getMarkProgressByGroup')
- /** 将汇总行放到数组最后 */
- const groupProgressData = computed(() => {
- if (!groupProgressResult?.value) return []
- const arr = groupProgressResult.value.slice(0)
- const totalIndex = arr.findIndex((v) => v.markingGroupNumber === 0)
- const [total] = arr.splice(totalIndex, 1)
- arr.push(total)
- return arr
- })
- watch(
- currentMainQuestion,
- (v) => {
- v?.questionMainNumber &&
- getMarkProgressByGroup({ subjectCode: model.subjectCode, questionMainNumber: v.questionMainNumber })
- },
- { immediate: true }
- )
- const getXAxisData = (field: keyof GroupProgress, data?: GroupProgress[]) => {
- if (!data) {
- return []
- }
- const getValue = (data: GroupProgress, v: keyof GroupProgress) => {
- if (v === 'markingGroupNumber') {
- return `第${data[v]}组`
- }
- return data[v]
- }
- return data.filter((v) => v.markingGroupNumber !== 0).map((v) => getValue(v, field))
- }
- const groupChartsOption = computed<EChartsOption>(() => {
- return {
- legend: {
- right: 0,
- itemWidth: 14,
- data: ['完成总量', '当日已完成', '完成比'],
- },
- xAxis: {
- axisLine: { show: false },
- axisTick: { show: false },
- splitLine: { show: false },
- axisLabel: {
- align: 'right',
- },
- data: getXAxisData('markingGroupNumber', groupProgressResult?.value),
- },
- yAxis: [
- {
- type: 'value',
- },
- {
- type: 'value',
- axisLabel: {
- formatter: `{value}%`,
- },
- splitLine: { show: false },
- },
- ],
- series: [
- {
- name: '完成总量',
- type: 'bar',
- barWidth: 20,
- itemStyle: {
- color: '#3AD500',
- },
- data: getXAxisData('finishCount', groupProgressResult?.value),
- },
- {
- name: '当日已完成',
- type: 'bar',
- barWidth: 20,
- itemStyle: {
- color: '#0064FF',
- },
- data: getXAxisData('dayFinishCount', groupProgressResult?.value),
- },
- {
- name: '完成比',
- type: 'bar',
- barWidth: 80,
- showBackground: true,
- barGap: '-200%',
- yAxisIndex: 1,
- itemStyle: {
- color: 'rgba(0, 186, 151,0.3)',
- },
- data: getXAxisData('finishRate', groupProgressResult?.value),
- },
- ],
- }
- })
- </script>
- <style scoped lang="scss">
- .total-progress-box {
- height: 323px;
- .total-progress-info {
- border-top: $OnePixelLine;
- height: 253px;
- }
- }
- .table-info {
- width: 720px;
- border-right: $OnePixelLine;
- .table-title {
- font-size: $MediumFont;
- }
- }
- .group-progress-box {
- height: 395px;
- .current-main-name {
- background-color: $BaseBgColor;
- font-size: $SmallFont;
- color: $PrimaryPlusFontColor;
- border-radius: 4px;
- &:not(:empty) {
- padding: 2px 4px;
- }
- }
- }
- </style>
|