From 35fefed0792c40cb99b8d15fa5811bbb5992bff9 Mon Sep 17 00:00:00 2001
From: D:/workspace/chenjingjing/git/gx_tieta/gx_tieta/.gitignore <chenjingjing@LAPTOP-E51P2139>
Date: 星期一, 21 一月 2019 10:42:24 +0800
Subject: [PATCH] 修改

---
 gx_tieta/WebRoot/js/elecircle.js |   63 +++++++++++++++++++++++++++++--
 1 files changed, 58 insertions(+), 5 deletions(-)

diff --git a/gx_tieta/WebRoot/js/elecircle.js b/gx_tieta/WebRoot/js/elecircle.js
index 79573ac..24a9ab2 100644
--- a/gx_tieta/WebRoot/js/elecircle.js
+++ b/gx_tieta/WebRoot/js/elecircle.js
@@ -312,7 +312,7 @@
 	var opts = $.extend({}, defaults, options || {});
 	
 	// 鏍规嵁寮�鍏崇殑绫诲瀷鍜屽揩鍏崇殑鐘舵�佽缃畍alue鐨勫�艰幏鍙栫嚎鍖呯數鍘�
-	var lineVol = '绾垮寘鐢靛帇:';
+	/*var lineVol = '绾垮寘鐢靛帇:';
 	if(opts.id == 'ko') {
 		if(opts.stats == 'on') {
 			lineVol =lineVol + '0V';
@@ -325,7 +325,7 @@
 		}else {
 			lineVol =lineVol + '0V';
 		}
-	}
+	}*/
 	
 	
 	
@@ -495,7 +495,7 @@
 	}
 	
 	// 缁樺埗鑳屾櫙鑹�
-	this.context.beginPath();
+	/*this.context.beginPath();
 	this.context.fillStyle = '#FFFFFF';
 	var strWidth = getStringWidth(lineVol);
 	this.context.rect(valueTxtX,valueTxtY-12,strWidth,14);
@@ -504,7 +504,7 @@
 	this.context.strokStyle = '#0000DD';
 	this.context.fillStyle = '#0000DD';
 	this.context.font = 'bold 12px Arial';
-	this.context.fillText(lineVol, valueTxtX, valueTxtY);
+	this.context.fillText(lineVol, valueTxtX, valueTxtY);*/
 
 	var switchBtnInfor = {
 		options: opts,
@@ -812,17 +812,30 @@
 	
 	this.context.setLineDash([]);	// 鎭㈠瀹炵嚎
 	
+	if(opts.name.length > 0) {
+		this.context.beginPath();
+		this.context.fillStyle = '#FFFFFF';
+		this.context.rect(opts.startX-20,opts.startY+16*2+156, 30,32);
+		this.context.fill();
+	}
+	
+	
 	var textList = opts.name.split('&');
+	this.context.fillStyle = opts.strokeStyle;
 	var lineHeight = 16;
 	for(var i=0; i<textList.length; i++) {
 		this.context.fillText(textList[i], opts.startX-20, opts.startY+lineHeight*i+200);
 	}
 	
+	
+	
+	
+	
 	// 瀛樺偍鍐呭
 	var dotLineInfor = {
 		options: opts,
 		type:'drawDotLine',
-	}
+	};
 	this.opts.push(dotLineInfor);
 	
 	
@@ -1125,6 +1138,46 @@
 	this.opts.push(txtInfor);
 }
 
+// 缁樺埗鍥剧墖
+EleCircle.prototype.drawImg = function(options) {
+	var defaluts = {
+		img: '',
+		startX: 0,
+		startY: 0,
+		width: 30,
+		height: 30,
+		lineWidth: 4,
+		fontSize: 14,
+		fontWeight: '',
+		strokeStyle: '#000',
+		fillStyle: '#000',
+		isShow: true,
+		name:'',
+		id: '',
+	};
+	
+	var opts = $.extend({}, defaluts, options || {});
+	
+	if(opts.img != '' && opts.isShow) {
+		this.context.drawImage(opts.img, opts.startX, opts.startY, opts.width, opts.height);
+		
+		this.context.lineWidth = opts.lineWidth;
+		this.context.strokeStyle = opts.strokeStyle;
+		this.context.fillStyle = opts.fillStyle;
+		this.context.font = opts.fontSize+'px Arial';
+		this.context.fillText(opts.name, opts.startX+30, opts.startY+25);
+	}
+	
+	// 瀛樺偍鍐呭
+	var txtInfor = {
+		options: opts,
+		type:'drawImg',
+	};
+	this.opts.push(txtInfor);
+	
+	
+};
+
 // 閲嶆柊缁樺埗鍥�
 EleCircle.prototype.redraw =function() {
 	this.context.clearRect(0, 0, this.canvas.width, this.canvas.height);

--
Gitblit v1.9.1