Browse Source

修改颜色

master
zhouhaibin 4 months ago
parent
commit
988be18919
  1. 42
      src/views/projectBoard/childBoard/childBoard.data.ts
  2. 16
      src/views/projectBoard/totalProjectBoard/ProjectCard.vue

42
src/views/projectBoard/childBoard/childBoard.data.ts

@ -10,43 +10,51 @@ export const danweizhuticolumns: BasicColumn[] = [
{
title: '行政区划',
dataIndex: 'adminDivision',
resizable: true
resizable: true,
sorter: true,
},
{
title: '单位属性',
dataIndex: 'workplaceProperties',
resizable: true
resizable: true,
sorter: true,
},
{
title: '合同金额',
dataIndex: 'totalMoney',
resizable: true
resizable: true,
sorter: true,
},
{
title: '合同资金支付率',
dataIndex: 'paymentExecutionRate',
resizable: true
resizable: true,
sorter: true,
},
{
title: '中央资金',
dataIndex: 'centralMoney',
resizable: true,
sorter: true,
},
{
title: '省级资金',
dataIndex: 'provincialMoney',
resizable: true
resizable: true,
sorter: true,
},
{
title: '上级资金支付率',
dataIndex: 'superiorFundExecutionRate',
resizable: true,
sorter: true,
},
{
title: '项目总进度',
dataIndex: 'projectProgress',
resizable: true,
slots: { customRender: 'projectProgress' },
sorter: true,
},
];
export const danweizhutisearchFormSchema: FormSchema[] = [
@ -89,54 +97,64 @@ export const shifanxiangmucolumns: BasicColumn[] = [
{
title: '行政区划',
dataIndex: 'adminDivision',
resizable: true
resizable: true,
sorter: true,
},
{
title: '责任单位',
dataIndex: 'dutyWorkplace',
resizable: true
resizable: true,
sorter: true,
},
{
title: '单位属性',
dataIndex: 'workplaceProperties',
resizable: true
resizable: true,
sorter: true,
},
{
title: '上级指导处室',
dataIndex: 'superLeader',
format: 'dict|superLeader',
resizable: true
resizable: true,
sorter: true,
},
{
title: '合同金额',
dataIndex: 'totalMoney',
resizable: true
resizable: true,
sorter: true,
},
{
title: '合同资金支付率',
dataIndex: 'paymentExecutionRate',
resizable: true
resizable: true,
sorter: true,
},
{
title: '中央资金',
dataIndex: 'centralMoney',
resizable: true,
sorter: true,
},
{
title: '省级资金',
dataIndex: 'provincialMoney',
resizable: true
resizable: true,
sorter: true,
},
{
title: '上级资金支付率',
dataIndex: 'superiorFundExecutionRate',
resizable: true,
sorter: true,
},
{
title: '项目总进度',
dataIndex: 'projectProgress',
resizable: true,
slots: { customRender: 'projectProgress' },
sorter: true,
},
];

16
src/views/projectBoard/totalProjectBoard/ProjectCard.vue

@ -6,7 +6,7 @@
<a-row>
<a-col :span="8">
<div
class="bg-gradient-to-b from-cyan-500 to-blue-500 h-full flex justify-center items-center"
class="bg-[#1890FF] h-full flex justify-center items-center"
>
<img src="@/assets/images/项目数量.png" class="w-1/2" />
</div>
@ -31,7 +31,7 @@
<a-row>
<a-col :span="8">
<div
class="bg-gradient-to-b from-sky-500 to-indigo-500 h-full flex justify-center items-center"
class="bg-[#4AD7FA] h-full flex justify-center items-center"
>
<img src="@/assets/images/项目入库.png" class="w-1/2" />
</div>
@ -56,7 +56,7 @@
<a-row>
<a-col :span="8">
<div
class="bg-gradient-to-b from-violet-500 to-fuchsia-500 h-full flex justify-center items-center"
class="bg-[#6F75DC] h-full flex justify-center items-center"
>
<img src="@/assets/images/配套.png" class="w-1/2" />
</div>
@ -170,7 +170,7 @@
<div class="mr-2">中央资金</div>
<div class="mr-2"
><el-progress
class="w-80"
class="w-65"
:text-inside="true"
:stroke-width="18"
:percentage="
@ -188,7 +188,7 @@
<div class="mr-2">省级资金</div>
<div class="mr-2"
><el-progress
class="w-80"
class="w-65"
:text-inside="true"
:stroke-width="18"
:percentage="
@ -206,7 +206,7 @@
<div class="mr-2">市级资金</div>
<div class="mr-2"
><el-progress
class="w-80"
class="w-65"
:text-inside="true"
:stroke-width="18"
:percentage="
@ -224,7 +224,7 @@
<div class="mr-2">区县资金</div>
<div class="mr-2"
><el-progress
class="w-80"
class="w-65"
:text-inside="true"
:stroke-width="18"
:percentage="
@ -241,7 +241,7 @@
<div class="mr-2">自筹资金</div>
<div class="mr-2"
><el-progress
class="w-80"
class="w-65"
:text-inside="true"
:stroke-width="18"
:percentage="

Loading…
Cancel
Save