|
|
|
@ -42,7 +42,7 @@ export class PassPlanComponent implements OnInit {
|
|
|
|
|
pageSizeOptions: number[] = [10] //设置每页条数
|
|
|
|
|
PageNumber:any; //第几页
|
|
|
|
|
|
|
|
|
|
displayedColumns: string[] = ['unitname', 'planname', 'addpeople','addtime','plantype','auditStatus','openRange','projectlevel','operation']; |
|
|
|
|
displayedColumns: string[] = ['planname', 'addpeople','level','addtime','plantype','auditStatus','openRange','projectlevel','operation']; |
|
|
|
|
allorganizations:any //所有组织机构
|
|
|
|
|
allunittype:any //所有单位类型
|
|
|
|
|
tabledataSource:any //表格数据
|
|
|
|
@ -97,6 +97,8 @@ export class PassPlanComponent implements OnInit {
|
|
|
|
|
AuditStatus:'', //审核状态
|
|
|
|
|
PlanLevel: this.preparelevel || '', |
|
|
|
|
HasChildrenPlanLevel: this.plcheck || '', |
|
|
|
|
CreationTimeRangeStart:this.addtime||'', |
|
|
|
|
CreationTimeRangeEnd:this.endtime||'', |
|
|
|
|
PageNumber: this.PageNumber || '1', |
|
|
|
|
PageSize: this.pageSizeOptions[0], |
|
|
|
|
Sort: '' |
|
|
|
@ -108,6 +110,121 @@ export class PassPlanComponent implements OnInit {
|
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
colorRgb(sColor){ |
|
|
|
|
var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/; |
|
|
|
|
var sColor = sColor.toLowerCase(); |
|
|
|
|
if (sColor && reg.test(sColor)) { |
|
|
|
|
if (sColor.length === 4) { |
|
|
|
|
var sColorNew = "#"; |
|
|
|
|
for (var i = 1; i < 4; i += 1) { |
|
|
|
|
sColorNew += sColor.slice(i, i + 1).concat(sColor.slice(i, i + 1)); |
|
|
|
|
} |
|
|
|
|
sColor = sColorNew; |
|
|
|
|
} |
|
|
|
|
//处理六位的颜色值
|
|
|
|
|
var sColorChange = []; |
|
|
|
|
for (var i = 1; i < 7; i += 2) { |
|
|
|
|
sColorChange.push(parseInt("0x" + sColor.slice(i, i + 2))); |
|
|
|
|
} |
|
|
|
|
return sColorChange; |
|
|
|
|
} else { |
|
|
|
|
return sColor; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
colorHex(rgb){ |
|
|
|
|
var _this = rgb; |
|
|
|
|
var reg = /^#([0-9a-fA-f]{3}|[0-9a-fA-f]{6})$/; |
|
|
|
|
if (/^(rgb|RGB)/.test(_this)) { |
|
|
|
|
var aColor = _this.replace(/(?:(|)|rgb|RGB)*/g, "").split(","); |
|
|
|
|
var strHex = "#"; |
|
|
|
|
for (var i = 0; i < aColor.length; i++) { |
|
|
|
|
var hex:any = Number(aColor[i]).toString(16); |
|
|
|
|
hex = hex < 10 ? 0 + '' + hex : hex;// 保证每个rgb的值为2位
|
|
|
|
|
if (hex === "0") { |
|
|
|
|
hex += hex; |
|
|
|
|
} |
|
|
|
|
strHex += hex; |
|
|
|
|
} |
|
|
|
|
if (strHex.length !== 7) { |
|
|
|
|
strHex = _this; |
|
|
|
|
} |
|
|
|
|
return strHex; |
|
|
|
|
} else if (reg.test(_this)) { |
|
|
|
|
var aNum = _this.replace(/#/, "").split(""); |
|
|
|
|
if (aNum.length === 6) { |
|
|
|
|
return _this; |
|
|
|
|
} else if (aNum.length === 3) { |
|
|
|
|
var numHex = "#"; |
|
|
|
|
for (var i = 0; i < aNum.length; i += 1) { |
|
|
|
|
numHex += (aNum[i] + aNum[i]); |
|
|
|
|
} |
|
|
|
|
return numHex; |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
return _this; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
gradientColor(startColor, endColor, step) { |
|
|
|
|
let _this = this |
|
|
|
|
let startRGB = _this.colorRgb(startColor);//转换为rgb数组模式
|
|
|
|
|
let startR = startRGB[0]; |
|
|
|
|
let startG = startRGB[1]; |
|
|
|
|
let startB = startRGB[2]; |
|
|
|
|
|
|
|
|
|
let endRGB = _this.colorRgb(endColor); |
|
|
|
|
let endR = endRGB[0]; |
|
|
|
|
let endG = endRGB[1]; |
|
|
|
|
let endB = endRGB[2]; |
|
|
|
|
|
|
|
|
|
let sR = (endR - startR) / step;//总差值
|
|
|
|
|
let sG = (endG - startG) / step; |
|
|
|
|
let sB = (endB - startB) / step; |
|
|
|
|
|
|
|
|
|
var colorArr = []; |
|
|
|
|
for (var i = 0; i < step; i++) { |
|
|
|
|
//计算每一步的hex值
|
|
|
|
|
var hex = _this.colorHex('rgb('+ parseInt((sR * i + startR))+ ',' + parseInt((sG * i + startG))+ ',' + parseInt((sB * i + startB)) + ')'); |
|
|
|
|
colorArr.push(hex); |
|
|
|
|
} |
|
|
|
|
return colorArr; |
|
|
|
|
} |
|
|
|
|
integrity(width){ |
|
|
|
|
let _this = this |
|
|
|
|
|
|
|
|
|
let style:any = {} |
|
|
|
|
style.width = width +'%'; |
|
|
|
|
if(width < 30){ |
|
|
|
|
let colorArr = this.gradientColor('#D50000', '#E53935', 30);
|
|
|
|
|
for(let i = 0; i < 30; i++){ |
|
|
|
|
if( i == width){ |
|
|
|
|
style.background = colorArr[i] |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if(width >= 30 && width < 60){ |
|
|
|
|
let colorArr = this.gradientColor('#FF9800', '#E65100', 30);
|
|
|
|
|
for(let i = 30; i < 60; i++){ |
|
|
|
|
if( i == width){ |
|
|
|
|
style.background = colorArr[i-30] |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
if(width >= 60){ |
|
|
|
|
let colorArr = this.gradientColor('#81C784', '#2E7D32', 41);
|
|
|
|
|
for(let i = 60; i <= 100; i++){ |
|
|
|
|
if( i == width){ |
|
|
|
|
style.background = colorArr[i-60] |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
return style |
|
|
|
|
} |
|
|
|
|
integrityDetails(width,zong){ |
|
|
|
|
let style:any = {} |
|
|
|
|
style.width = (width/zong)*100 +'%'; |
|
|
|
|
return style |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -119,6 +236,10 @@ export class PassPlanComponent implements OnInit {
|
|
|
|
|
} |
|
|
|
|
) |
|
|
|
|
} |
|
|
|
|
addtime//开始时间
|
|
|
|
|
endtime//结束时间
|
|
|
|
|
integrityScoreMin//完整度最小值
|
|
|
|
|
integrityScoreMax//完整度最大值
|
|
|
|
|
organizationName:any //当前单位组织机构名称
|
|
|
|
|
treedata:any //组织机构树型数据
|
|
|
|
|
newArr:any = [] |
|
|
|
@ -223,6 +344,8 @@ export class PassPlanComponent implements OnInit {
|
|
|
|
|
this.unittype = '' |
|
|
|
|
this.reservePlanType = '' |
|
|
|
|
this.preparelevel = '' |
|
|
|
|
this.addtime='' |
|
|
|
|
this.endtime='' |
|
|
|
|
this.plcheck = false |
|
|
|
|
//重新获取初始化列表
|
|
|
|
|
this.pageEvent.pageIndex = 0 |
|
|
|
|