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

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

@ -6,7 +6,7 @@
<a-row> <a-row>
<a-col :span="8"> <a-col :span="8">
<div <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" /> <img src="@/assets/images/项目数量.png" class="w-1/2" />
</div> </div>
@ -31,7 +31,7 @@
<a-row> <a-row>
<a-col :span="8"> <a-col :span="8">
<div <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" /> <img src="@/assets/images/项目入库.png" class="w-1/2" />
</div> </div>
@ -56,7 +56,7 @@
<a-row> <a-row>
<a-col :span="8"> <a-col :span="8">
<div <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" /> <img src="@/assets/images/配套.png" class="w-1/2" />
</div> </div>
@ -170,7 +170,7 @@
<div class="mr-2">中央资金</div> <div class="mr-2">中央资金</div>
<div class="mr-2" <div class="mr-2"
><el-progress ><el-progress
class="w-80" class="w-65"
:text-inside="true" :text-inside="true"
:stroke-width="18" :stroke-width="18"
:percentage=" :percentage="
@ -188,7 +188,7 @@
<div class="mr-2">省级资金</div> <div class="mr-2">省级资金</div>
<div class="mr-2" <div class="mr-2"
><el-progress ><el-progress
class="w-80" class="w-65"
:text-inside="true" :text-inside="true"
:stroke-width="18" :stroke-width="18"
:percentage=" :percentage="
@ -206,7 +206,7 @@
<div class="mr-2">市级资金</div> <div class="mr-2">市级资金</div>
<div class="mr-2" <div class="mr-2"
><el-progress ><el-progress
class="w-80" class="w-65"
:text-inside="true" :text-inside="true"
:stroke-width="18" :stroke-width="18"
:percentage=" :percentage="
@ -224,7 +224,7 @@
<div class="mr-2">区县资金</div> <div class="mr-2">区县资金</div>
<div class="mr-2" <div class="mr-2"
><el-progress ><el-progress
class="w-80" class="w-65"
:text-inside="true" :text-inside="true"
:stroke-width="18" :stroke-width="18"
:percentage=" :percentage="
@ -241,7 +241,7 @@
<div class="mr-2">自筹资金</div> <div class="mr-2">自筹资金</div>
<div class="mr-2" <div class="mr-2"
><el-progress ><el-progress
class="w-80" class="w-65"
:text-inside="true" :text-inside="true"
:stroke-width="18" :stroke-width="18"
:percentage=" :percentage="

Loading…
Cancel
Save