|
@@ -65,18 +65,20 @@ export default defineComponent({
|
|
|
{{
|
|
|
icon: () => (
|
|
|
<div>
|
|
|
- <span class={styles.tagNum}>{data.value.commitRate || 0}</span>%
|
|
|
+ <span class={styles.tagNum}>{data.value.commitRate || 0}</span>
|
|
|
+ <span class={[styles.tagNum, styles.fenHao]}>%</span>
|
|
|
</div>
|
|
|
),
|
|
|
text: () => <div>提交率</div>
|
|
|
}}
|
|
|
</GridItem>
|
|
|
- <Image class={styles.iconline} src={iconLine} />
|
|
|
+ <Image class={styles.iconline} src={iconLine} fit="contain" />
|
|
|
<GridItem>
|
|
|
{{
|
|
|
icon: () => (
|
|
|
<div>
|
|
|
- <span class={styles.tagNum}>{data.value.passRate || 0}</span>%
|
|
|
+ <span class={styles.tagNum}>{data.value.passRate || 0}</span>
|
|
|
+ <span class={[styles.tagNum, styles.fenHao]}>%</span>
|
|
|
</div>
|
|
|
),
|
|
|
text: () => <div>合格率</div>
|
|
@@ -89,10 +91,10 @@ export default defineComponent({
|
|
|
strokeWidth={8}
|
|
|
trackColor="transparent"
|
|
|
showPivot={false}
|
|
|
- color="linear-gradient(to right, #9AC6FF, #8DB2FF)"></Progress>
|
|
|
+ color="linear-gradient(to right, #9AC6FF, #5C91FF)"></Progress>
|
|
|
<div>
|
|
|
应提交{' '}
|
|
|
- <span style={{ color: '#8DB2FF' }} class={styles.tagNum}>
|
|
|
+ <span style={{ color: '#5C91FF' }} class={[styles.tagNum, styles.numDes]}>
|
|
|
{data.value.expectNum || 0}
|
|
|
</span>
|
|
|
人
|
|
@@ -104,10 +106,10 @@ export default defineComponent({
|
|
|
strokeWidth={8}
|
|
|
trackColor="transparent"
|
|
|
showPivot={false}
|
|
|
- color="linear-gradient(to right, #91F4DA, #85DFCF)"></Progress>
|
|
|
+ color="linear-gradient(to right, #91F4DA, #01C1B5)"></Progress>
|
|
|
<div>
|
|
|
实际提交{' '}
|
|
|
- <span style={{ color: '#85DFCF' }} class={styles.tagNum}>
|
|
|
+ <span style={{ color: '#01C1B5' }} class={[styles.tagNum, styles.numDes]}>
|
|
|
{data.value.actualNum || 0}
|
|
|
</span>
|
|
|
人
|
|
@@ -119,10 +121,10 @@ export default defineComponent({
|
|
|
strokeWidth={8}
|
|
|
trackColor="transparent"
|
|
|
showPivot={false}
|
|
|
- color="linear-gradient(to right, #FFDCAC, #FFD378)"></Progress>
|
|
|
+ color="linear-gradient(to right, #FFDCAC, #FFA724)"></Progress>
|
|
|
<div>
|
|
|
合格提交{' '}
|
|
|
- <span style={{ color: '#FFD378' }} class={styles.tagNum}>
|
|
|
+ <span style={{ color: '#FFA724' }} class={[styles.tagNum, styles.numDes]}>
|
|
|
{data.value.passNum || 0}
|
|
|
</span>
|
|
|
人
|