hqchart 1.1.13734 → 1.1.13743
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/umychart.vue.js +16 -16
- package/package.json +1 -1
- package/src/jscommon/umychart.DialogDrawTool.js +27 -2
- package/src/jscommon/umychart.js +19 -37
- package/src/jscommon/umychart.resource/font/drawtool/demo_index.html +49 -3
- package/src/jscommon/umychart.resource/font/drawtool/iconfont.css +11 -3
- package/src/jscommon/umychart.resource/font/drawtool/iconfont.js +1 -1
- package/src/jscommon/umychart.resource/font/drawtool/iconfont.json +14 -0
- package/src/jscommon/umychart.resource/font/drawtool/iconfont.ttf +0 -0
- package/src/jscommon/umychart.resource/font/drawtool/iconfont.woff +0 -0
- package/src/jscommon/umychart.resource/font/drawtool/iconfont.woff2 +0 -0
- package/src/jscommon/umychart.uniapp.h5/umychart.uniapp.h5.js +20 -38
- package/src/jscommon/umychart.version.js +1 -1
- package/src/jscommon/umychart.vue/umychart.vue.js +47 -40
package/lib/umychart.vue.js
CHANGED
|
@@ -1709,18 +1709,18 @@ this.SelectChartDrawPicture=null;if(this.BorderDrag){}else if(this.YDrag||this.R
|
|
|
1709
1709
|
var drawPicture=this.CurrentChartDrawPicture;if(drawPicture.Status==2)this.SetChartDrawPictureThirdPoint(drag.Click.X,drag.Click.Y);else{this.SetChartDrawPictureFirstPoint(drag.Click.X,drag.Click.Y);//只有1个点 直接完成
|
|
1710
1710
|
if(this.FinishChartDrawPicturePoint()){if(drawPicture.IsDrawMain)this.Draw();else this.DrawDynamicInfo();}}if(drawPictureActive.Select.Guid&&(!this.CurrentChartDrawPicture||drawPictureActive.Select.Guid!=this.CurrentChartDrawPicture.Guid)){if(drawPictureActive.Select.Chart.IsDrawMain)this.Draw();}}else//是否在画图工具上
|
|
1711
1711
|
{var drawPictrueData={};drawPictrueData.X=(e.clientX-this.UIElement.getBoundingClientRect().left)*pixelTatio;drawPictrueData.Y=(e.clientY-this.UIElement.getBoundingClientRect().top)*pixelTatio;if(this.GetChartDrawPictureByPoint(drawPictrueData)){if(this.EnableEraseChartDrawPicture)//擦掉画线
|
|
1712
|
-
{this.CurrentChartDrawPicture=null;this.SelectChartDrawPicture=null;this.ClearChartDrawPicture(drawPictrueData.ChartDrawPicture);}else
|
|
1712
|
+
{this.CurrentChartDrawPicture=null;this.SelectChartDrawPicture=null;this.ClearChartDrawPicture(drawPictrueData.ChartDrawPicture);}else{this.UpDownDrag=null;//画图优先
|
|
1713
1713
|
this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;//当前已有选中的,需要刷下
|
|
1714
|
-
var bDraw=false;if(drawPictureActive.Select.Guid&&drawPictureActive.Select.Chart&&drawPictureActive.Select.Chart.IsDrawMain)bDraw=true;else if(drawPictrueData.ChartDrawPicture.IsDrawMain)bDraw=true;if(bDraw)this.Draw();drawPictrueData.ChartDrawPicture.Status=20;drawPictrueData.ChartDrawPicture.ValueToPoint();drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;//this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
1714
|
+
var bDraw=false;if(drawPictureActive.Select.Guid&&drawPictureActive.Select.Chart&&drawPictureActive.Select.Chart.IsDrawMain)bDraw=true;else if(drawPictrueData.ChartDrawPicture.IsDrawMain)bDraw=true;if(bDraw)this.Draw();if(drawPictrueData.ChartDrawPicture.EnableMove==true)drawPictrueData.ChartDrawPicture.Status=20;drawPictrueData.ChartDrawPicture.ValueToPoint();drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;//this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
1715
1715
|
//this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
1716
|
-
this.SelectChartDrawPicture.DragInfo={Click:{X:e.clientX,Y:e.clientY}};}
|
|
1716
|
+
this.SelectChartDrawPicture.DragInfo={Click:{X:e.clientX,Y:e.clientY}};}var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE);//选中画图工具事件
|
|
1717
1717
|
if(event&&event.Callback){var sendData={DrawPicture:drawPictrueData.ChartDrawPicture};event.Callback(event,sendData,this);}else{this.OnSelectChartPicture(drawPictrueData.ChartDrawPicture);//选中画图工具事件
|
|
1718
1718
|
}}else{if(this.ClickChartTimer!=null){clearTimeout(this.ClickChartTimer);this.ClickChartTimer=null;}var self=this;var ptClick={X:this.ClickDownPoint.X,Y:this.ClickDownPoint.Y};this.ClickChartTimer=setTimeout(function(){self.TryClickPaintEvent(JSCHART_EVENT_ID.ON_CLICK_CHART_PAINT,ptClick,e);},250);var bSelectedChartChanged=false;if(this.SelectedChart.EnableSelected){var selectChart=this.PtInChart(x,y);if(selectChart){if(this.SelectedChart.Selected.Identify!=selectChart.Identify){this.SelectedChart.Selected.Identify=selectChart.Identify;this.SelectedChart.Selected.Chart=selectChart.Chart;bSelectedChartChanged=true;}if(this.EnableIndexChartDrag){this.IndexChartDrag={SelectedChart:selectChart,LastMove:{X:x,Y:y},Click:{X:x,Y:y}};this.IndexChartDrag.Info=this.GetSelectedChartInfo(selectChart);if(this.IndexChartDrag.Info)this.IndexChartDrag.Info.FrameID=this.Frame.PtInFrame(x,y);}}else{if(this.SelectedChart.Selected.Identify){this.SelectedChart.Selected.Identify=null;this.SelectedChart.Selected.Chart=null;bSelectedChartChanged=true;}}}else{if(this.SelectedChart.Selected.Identify){this.SelectedChart.Selected.Identify=null;bSelectedChartChanged=true;}}if(drawPictureActive.Select.Guid!=null&&this.SelectChartDrawPicture==null||bSelectedChartChanged){var drawType=0;if(drawPictureActive.Select.Guid&&drawPictureActive.Select.Chart&&drawPictureActive.Select.Chart.IsDrawMain)drawType=1;if(bSelectedChartChanged){var chart=selectedChart.Chart;if(chart&&chart.SetSelectedStatus){chart.SetSelectedStatus(0);drawType=1;}chart=this.SelectedChart.Selected.Chart;if(chart&&chart.SetSelectedStatus){chart.SetSelectedStatus(1);drawType=1;}}if(drawType==1)this.Draw();else this.DrawDynamicInfo();}else if(bRedraw){this.Draw();}else if(bDrawDynamicInfo){this.DrawDynamicInfo();}}}if(!this.SelectChartDrawPicture)this.CloseModifyDrawDialog();//当前没有选中画图 隐藏画图修改框
|
|
1719
1719
|
document.onmousemove=function(e){_this7.DocOnMouseMove(e);};document.onmouseup=function(e){_this7.DocOnMouseUp(e);};};this.DocOnMouseMove=function(e){//加载数据中,禁用鼠标事件
|
|
1720
1720
|
if(this.ChartSplashPaint&&this.ChartSplashPaint.IsEnableSplash)return;var drag=this.MouseDrag;if(!drag)return;var moveSetp=Math.abs(drag.LastMove.X-e.clientX);var moveSetpY=Math.abs(drag.LastMove.Y-e.clientY);var isDragSelectRect=this.RectSelectDrag&&this.RectSelectDrag.Index>=0;var isDragSubSelectRect=this.RectSelectDrag&&this.RectSelectDrag.Type==4;if(drag.CurrentMove){drag.CurrentMove.X=e.clientX;drag.CurrentMove.Y=e.clientY;}if(this.BorderDrag&&this.BorderDrag.Index>=0)//边框拖动
|
|
1721
1721
|
{if(Math.abs(drag.LastMove.Y-e.clientY)<5)return;var yMove=e.clientY-drag.LastMove.Y;this.OnMoveFromeBorder(this.BorderDrag.Index,yMove);drag.LastMove.X=e.clientX;drag.LastMove.Y=e.clientY;}else if(this.YDrag&&this.YDrag.Index>=0)//Y轴缩放
|
|
1722
1722
|
{if(moveSetpY<5)return;var yMove=e.clientY-drag.LastMove.Y;//this.UIElement.style.cursor="n-resize";
|
|
1723
|
-
JSConsole.Chart.Log("[JSChartContainer::DocOnMouseMove] YDrag ",this.YDrag,yMove);this.OnZoomUpDownFrameY(this.YDrag,yMove);drag.LastMove.X=e.clientX;drag.LastMove.Y=e.clientY;}else if(this.IndexChartDrag&&this.IndexChartDrag.SelectedChart){if(Math.abs(drag.LastMove.Y-e.clientY)<2&&Math.abs(drag.LastMove.X-e.clientX)<2)return;var chartMove=this.GetExtendChartByClassName("DragMovePaint");if(chartMove&&chartMove.Chart){var pixelTatio=GetDevicePixelRatio();var x=(e.clientX-this.UIElement.getBoundingClientRect().left)*pixelTatio;var y=(e.clientY-this.UIElement.getBoundingClientRect().top)*pixelTatio;chartMove.Chart.Point={X:x,Y:y};chartMove.Chart.IsShow=true;chartMove.Chart.Info=this.IndexChartDrag.Info;this.DrawDynamicInfo();}this.IndexChartDrag.LastMove.X=x;this.IndexChartDrag.LastMove.Y=y;drag.LastMove.X=e.clientX;drag.LastMove.Y=e.clientY;}else if(this.CustomChartDrag){var pixelTatio=GetDevicePixelRatio();var x=(e.clientX-this.UIElement.getBoundingClientRect().left)*pixelTatio;var y=(e.clientY-this.UIElement.getBoundingClientRect().top)*pixelTatio;var sendData={X:x,Y:y,e:e,ChartDrag:this.CustomChartDrag,Drag:drag};this.TryDragMove_CustomChartDrag(sendData);}else if(this.CurrentChartDrawPicture){var drawPicture=this.CurrentChartDrawPicture;if(drawPicture.Status==1||drawPicture.Status==2){if(Math.abs(drag.LastMove.X-e.clientX)<5&&Math.abs(drag.LastMove.Y-e.clientY)<5)return;if(this.SetChartDrawPictureSecondPoint(e.clientX,e.clientY)){this.DrawDynamicInfo();}}else if(drawPicture.Status==3){if(this.SetChartDrawPictureThirdPoint(e.clientX,e.clientY)){this.DrawDynamicInfo();}}else if(drawPicture.Status==20)//画图工具移动
|
|
1723
|
+
JSConsole.Chart.Log("[JSChartContainer::DocOnMouseMove] YDrag ",this.YDrag,yMove);this.OnZoomUpDownFrameY(this.YDrag,yMove);drag.LastMove.X=e.clientX;drag.LastMove.Y=e.clientY;}else if(this.IndexChartDrag&&this.IndexChartDrag.SelectedChart){if(Math.abs(drag.LastMove.Y-e.clientY)<2&&Math.abs(drag.LastMove.X-e.clientX)<2)return;var chartMove=this.GetExtendChartByClassName("DragMovePaint");if(chartMove&&chartMove.Chart){var pixelTatio=GetDevicePixelRatio();var x=(e.clientX-this.UIElement.getBoundingClientRect().left)*pixelTatio;var y=(e.clientY-this.UIElement.getBoundingClientRect().top)*pixelTatio;chartMove.Chart.Point={X:x,Y:y};chartMove.Chart.IsShow=true;chartMove.Chart.Info=this.IndexChartDrag.Info;this.DrawDynamicInfo();}this.IndexChartDrag.LastMove.X=x;this.IndexChartDrag.LastMove.Y=y;drag.LastMove.X=e.clientX;drag.LastMove.Y=e.clientY;}else if(this.CustomChartDrag){var pixelTatio=GetDevicePixelRatio();var x=(e.clientX-this.UIElement.getBoundingClientRect().left)*pixelTatio;var y=(e.clientY-this.UIElement.getBoundingClientRect().top)*pixelTatio;var sendData={X:x,Y:y,e:e,ChartDrag:this.CustomChartDrag,Drag:drag};this.TryDragMove_CustomChartDrag(sendData);}else if(this.CurrentChartDrawPicture&&this.CurrentChartDrawPicture.EnableMove===true){var drawPicture=this.CurrentChartDrawPicture;if(drawPicture.Status==1||drawPicture.Status==2){if(Math.abs(drag.LastMove.X-e.clientX)<5&&Math.abs(drag.LastMove.Y-e.clientY)<5)return;if(this.SetChartDrawPictureSecondPoint(e.clientX,e.clientY)){this.DrawDynamicInfo();}}else if(drawPicture.Status==3){if(this.SetChartDrawPictureThirdPoint(e.clientX,e.clientY)){this.DrawDynamicInfo();}}else if(drawPicture.Status==20)//画图工具移动
|
|
1724
1724
|
{if(Math.abs(drag.LastMove.X-e.clientX)<5&&Math.abs(drag.LastMove.Y-e.clientY)<1)return;if(this.SelectChartDrawPicture){if(this.SelectChartDrawPicture.EnableCtrlMove){if(!e.ctrlKey)return;}}if(this.SelectChartDrawPicture&&this.SelectChartDrawPicture.DragInfo)this.SelectChartDrawPicture.DragInfo.Move={X:e.clientX,Y:e.client};if(this.MoveChartDrawPicture(e.clientX-drag.LastMove.X,e.clientY-drag.LastMove.Y,false,drag)){this.DrawDynamicInfo();}}drag.LastMove.X=e.clientX;drag.LastMove.Y=e.clientY;}else if(this.DragMode==1||isDragSelectRect||isDragSubSelectRect)//数据上下左右拖拽
|
|
1725
1725
|
{this.OnDragMode_One({X:moveSetp,Y:moveSetpY},e);}else if(this.DragMode==2)//区间选择
|
|
1726
1726
|
{var yMoveSetp=Math.abs(drag.LastMove.Y-e.clientY);if(moveSetp<5&&yMoveSetp<5)return;this.SetCursor({Cursor:"default"});var ptStart=this.PointAbsoluteToRelative(drag.Click.X,drag.Click.Y);var ptEnd=this.PointAbsoluteToRelative(e.clientX,e.clientY);this.ShowDragSelectRect(ptStart,ptEnd);drag.LastMove.X=e.clientX;drag.LastMove.Y=e.clientY;}};this.OnDragMode_One=function(moveData,e){var moveSetp=moveData.X;var moveSetpY=moveData.Y;var drag=this.MouseDrag;if(moveSetp<5&&moveSetpY<5)return;var bNeedDraw=false;var bUpDownY=false;if(moveSetpY>=5){if(this.UpDownDrag&&this.UpDownDrag.Index>=0){var yMove=e.clientY-drag.LastMove.Y;JSConsole.Chart.Log("[JSChartContainer::OnDragMode_One] UpDownDrag ",this.UpDownDrag,yMove);//this.UIElement.style.cursor="pointer";
|
|
@@ -1770,8 +1770,7 @@ var selectedChart={Chart:this.SelectedChart.Selected.Chart,Identify:this.Selecte
|
|
|
1770
1770
|
this.PhoneTouchInfo={Start:{X:touches[0].clientX,Y:touches[0].clientY},End:{X:touches[0].clientX,Y:touches[0].clientY}};if(this.SelectChartDrawPicture)this.SelectChartDrawPicture.IsSelected=false;this.SelectChartDrawPicture=null;var isDrawPictrue=false;if(this.CurrentChartDrawPicture)//画图工具模式
|
|
1771
1771
|
{var drawPicture=this.CurrentChartDrawPicture;if(drawPicture.Status==2)this.SetChartDrawPictureThirdPoint(drag.Click.X,drag.Click.Y,true);else{this.SetChartDrawPictureFirstPoint(drag.Click.X,drag.Click.Y,true);//只有1个点 直接完成
|
|
1772
1772
|
if(this.FinishChartDrawPicturePoint()){if(drawPicture.IsDrawMain)this.Draw();else this.DrawDynamicInfo({Corss:false,Tooltip:false});}}if(e.cancelable)e.preventDefault();return;}else{var pt=this.PointAbsoluteToRelative(touches[0].clientX,touches[0].clientY,true);var drawPictrueData={X:pt.X,Y:pt.Y};var pixelTatio=GetDevicePixelRatio();//鼠标移动坐标是原始坐标 需要乘以放大倍速
|
|
1773
|
-
if(this.GetChartDrawPictureByPoint(drawPictrueData)){if(drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
1774
|
-
{drawPictrueData.ChartDrawPicture.Status=20;drawPictrueData.ChartDrawPicture.ValueToPoint();drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;drawPictrueData.ChartDrawPicture.IsSelected=true;this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;}else{this.CurrentChartDrawPicture=null;this.SelectChartDrawPicture=null;}var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE);//选中画图工具事件
|
|
1773
|
+
if(this.GetChartDrawPictureByPoint(drawPictrueData)){if(drawPictrueData.ChartDrawPicture.EnableMove==true)drawPictrueData.ChartDrawPicture.Status=20;drawPictrueData.ChartDrawPicture.ValueToPoint();drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;drawPictrueData.ChartDrawPicture.IsSelected=true;this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE);//选中画图工具事件
|
|
1775
1774
|
if(event&&event.Callback){var sendData={DrawPicture:drawPictrueData.ChartDrawPicture};event.Callback(event,sendData,this);}var drawType=0;if(drawPictrueData.ChartDrawPicture.IsDrawMain)drawType=1;else if(drawPictureActive.Select.Guid&&drawPictureActive.Select.Chart&&drawPictureActive.Select.Chart.IsDrawMain)drawType=1;if(drawType==1)this.Draw();if(e.cancelable)e.preventDefault();return;}}if(bStartTimer){//长按2秒,十字光标
|
|
1776
1775
|
var self=this;this.DragTimer=setTimeout(function(){self.IsPress=true;if(drag.Click.X==drag.LastMove.X&&drag.Click.Y==drag.LastMove.Y)//手指没有移动,出现十字光标
|
|
1777
1776
|
{var mouseDrag=self.MouseDrag;self.MouseDrag=null;if(self.DragMode==JSCHART_DRAG_ID.CLICK_TOUCH_MODE_ID)self.TouchStatus.CorssCursorShow=true;//十字显示
|
|
@@ -1781,7 +1780,7 @@ if(self.EnableClickModel===true)self.ClickModel.IsShowCorssCursor=true;self.Move
|
|
|
1781
1780
|
}else if(this.IsClickShowCorssCursor){this.MoveCorssCursor(drag.Click,e);}this.TouchEvent({EventID:JSCHART_EVENT_ID.ON_PHONE_TOUCH,FunctionName:"OnTouchStart"},e);var drawType=0;if(drawPictureActive.Select.Guid!=null){if(drawPictureActive.Select.Guid&&drawPictureActive.Select.Chart)drawType=1;}if(drawType==1)this.Draw();}else if(this.IsPhonePinching(e)){var phonePinch={"Start":{},"Last":{}};var touches=this.GetToucheData(e,this.IsForceLandscape);phonePinch.Start={X:touches[0].pageX,Y:touches[0].pageY,X2:touches[1].pageX,Y2:touches[1].pageY};phonePinch.Last={X:touches[0].pageX,Y:touches[0].pageY,X2:touches[1].pageX,Y2:touches[1].pageY};this.PhonePinch=phonePinch;this.SelectChartDrawPicture=null;}};this.OnTouchMove=function(e){if(this.ChartSplashPaint&&this.ChartSplashPaint.IsEnableSplash==true)return;var touches=this.GetToucheData(e,this.IsForceLandscape);if(this.IsPhoneDragging(e)){var drag=this.MouseDrag;if(drag==null){if(this.IsForceLandscape)y=uielement.getBoundingClientRect().width-touches[0].clientY;//强制横屏Y计算
|
|
1782
1781
|
if(!this.ChartDrawOption.IsLockScreen)this.MoveCorssCursor({X:touches[0].clientX,Y:touches[0].clientY},e);}else{var moveAngle=this.GetMoveAngle(drag.LastMove,{X:touches[0].clientX,Y:touches[0].clientY});var moveSetp=Math.abs(drag.LastMove.X-touches[0].clientX);var moveUpDown=Math.abs(drag.LastMove.Y-touches[0].clientY);moveSetp=parseInt(moveSetp);var isMoveCorssCursor=this.DragMode==JSCHART_DRAG_ID.CLICK_TOUCH_MODE_ID&&this.TouchStatus.CorssCursorShow==true;//是否移动十字光标
|
|
1783
1782
|
if(this.VerticalDrag){if(this.VerticalDrag.IsDrag===true)isMoveCorssCursor=false;else isMoveCorssCursor=true;}if(this.EnableClickModel){if(this.ClickModel.IsShowCorssCursor===true)isMoveCorssCursor=true;else isMoveCorssCursor=false;}//JSConsole.Chart.Log(`[JSChartContainer::OnTouchMove] moveAngle=${moveAngle} , moveUpDown=${moveUpDown}, moveSetp=${moveSetp}`);
|
|
1784
|
-
if(this.CurrentChartDrawPicture){var drawPicture=this.CurrentChartDrawPicture;if(drawPicture.Status==1||drawPicture.Status==2){if(moveSetp<5&&moveUpDown<5)return;if(this.SetChartDrawPictureSecondPoint(touches[0].clientX,touches[0].clientY,true)){this.DrawDynamicInfo();}}else if(drawPicture.Status==3){if(this.SetChartDrawPictureThirdPoint(touches[0].clientX,touches[0].clientY,true)){this.DrawDynamicInfo();}}else if(drawPicture.Status==20)//画图工具移动
|
|
1783
|
+
if(this.CurrentChartDrawPicture&&this.CurrentChartDrawPicture.EnableMove===true){var drawPicture=this.CurrentChartDrawPicture;if(drawPicture.Status==1||drawPicture.Status==2){if(moveSetp<5&&moveUpDown<5)return;if(this.SetChartDrawPictureSecondPoint(touches[0].clientX,touches[0].clientY,true)){this.DrawDynamicInfo();}}else if(drawPicture.Status==3){if(this.SetChartDrawPictureThirdPoint(touches[0].clientX,touches[0].clientY,true)){this.DrawDynamicInfo();}}else if(drawPicture.Status==20)//画图工具移动
|
|
1785
1784
|
{if(moveSetp<5&&moveUpDown<5)return;if(this.MoveChartDrawPicture(touches[0].clientX-drag.LastMove.X,touches[0].clientY-drag.LastMove.Y,true)){this.DrawDynamicInfo();}}drag.LastMove.X=touches[0].clientX;drag.LastMove.Y=touches[0].clientY;}else if(isMoveCorssCursor)//点击模式下 十字光标显示 左右移动十字光标
|
|
1786
1785
|
{var mouseDrag=this.MouseDrag;this.MouseDrag=null;this.MoveCorssCursor(drag.Click,e);//移动十字光标
|
|
1787
1786
|
}else if(this.DragMode==1||isMoveCorssCursor==false)//数据左右拖拽
|
|
@@ -7942,9 +7941,9 @@ var touches=this.GetToucheData(e,this.IsForceLandscape);var pt=this.PointAbsolut
|
|
|
7942
7941
|
{var pt=self.PointAbsoluteToRelative(drag.Click.X,drag.Click.Y,true);var x=pt.X;var y=pt.Y;self.OnMouseMove(x,y,e);}};if(this.ChartDrawOption.IsLockScreen){this.MouseDrag=drag;if(this.SelectChartDrawPicture)this.SelectChartDrawPicture.IsSelected=false;this.SelectChartDrawPicture=null;if(this.CurrentChartDrawPicture)//画图工具模式
|
|
7943
7942
|
{var drawPicture=this.CurrentChartDrawPicture;if(drawPicture.Status==2)this.SetChartDrawPictureThirdPoint(drag.Click.X,drag.Click.Y,true);else{this.SetChartDrawPictureFirstPoint(drag.Click.X,drag.Click.Y,true);//只有1个点 直接完成
|
|
7944
7943
|
if(this.FinishChartDrawPicturePoint())this.DrawDynamicInfo({Corss:false,Tooltip:false});}if(e.cancelable)e.preventDefault();return;}else{var drawPictrueData={};var pixelTatio=GetDevicePixelRatio();//鼠标移动坐标是原始坐标 需要乘以放大倍速
|
|
7945
|
-
drawPictrueData.X=touches[0].clientX-uielement.getBoundingClientRect().left;drawPictrueData.Y=touches[0].clientY-uielement.getBoundingClientRect().top;if(this.GetChartDrawPictureByPoint(drawPictrueData)){if(drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
7944
|
+
drawPictrueData.X=touches[0].clientX-uielement.getBoundingClientRect().left;drawPictrueData.Y=touches[0].clientY-uielement.getBoundingClientRect().top;if(this.GetChartDrawPictureByPoint(drawPictrueData)){if(drawPictrueData.ChartDrawPicture.EnableMove==true)drawPictrueData.ChartDrawPicture.Status=20;drawPictrueData.ChartDrawPicture.ValueToPoint();drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;drawPictrueData.ChartDrawPicture.IsSelected=true;this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE);//选中画图工具事件
|
|
7946
7945
|
if(event&&event.Callback){var sendData={DrawPicture:drawPictrueData.ChartDrawPicture};event.Callback(event,sendData,this);}if(e.cancelable)e.preventDefault();return;}}}else{if(this.EnableScrollUpDown==true){this.DragTimer=setTimeout(function(){self.IsPress=true;if(drag.Click.X==drag.LastMove.X&&drag.Click.Y==drag.LastMove.Y){var mouseDrag=self.MouseDrag;self.MouseDrag=null;T_ShowCorssCursor();self.PreventTouchEvent(e);}},800);}this.MouseDrag=drag;this.PhoneTouchInfo={Start:{X:touches[0].clientX,Y:touches[0].clientY},End:{X:touches[0].clientX,Y:touches[0].clientY}};this.SelectChartDrawPicture=null;if(this.EnableScrollUpDown==false)T_ShowCorssCursor();//移动十字光标
|
|
7947
|
-
else if(this.IsClickShowCorssCursor)T_ShowCorssCursor();}if(this.EnableZoomIndexWindow){this.PhoneDBClick.AddTouchStart(touches[0].clientX,touches[0].clientY,Date.now());JSConsole.Chart.Log("[MinuteChartContainer::OnTouchStart] PhoneDBClick ",this.PhoneDBClick);}this.TouchEvent({EventID:JSCHART_EVENT_ID.ON_PHONE_TOUCH,FunctionName:"OnTouchStart"},e);}else if(this.IsPhonePinching(e)){var phonePinch={"Start":{},"Last":{}};var touches=this.GetToucheData(e,this.IsForceLandscape);phonePinch.Start={"X":touches[0].pageX,"Y":touches[0].pageY,"X2":touches[1].pageX,"Y2":touches[1].pageY};phonePinch.Last={"X":touches[0].pageX,"Y":touches[0].pageY,"X2":touches[1].pageX,"Y2":touches[1].pageY};this.PhonePinch=phonePinch;this.SelectChartDrawPicture=null;}};this.OnTouchMove=function(e){if(this.ChartSplashPaint&&this.ChartSplashPaint.IsEnableSplash==true)return;var touches=this.GetToucheData(e,this.IsForceLandscape);if(this.IsPhoneDragging(e)){var drag=this.MouseDrag;if(drag==null){var pixelTatio=GetDevicePixelRatio();var x=touches[0].clientX-uielement.getBoundingClientRect().left*pixelTatio;var y=touches[0].clientY-uielement.getBoundingClientRect().top*pixelTatio;this.OnMouseMove(x,y,e);}else{var moveAngle=this.GetMoveAngle(drag.LastMove,{X:touches[0].clientX,Y:touches[0].clientY});var moveSetp=Math.abs(drag.LastMove.X-touches[0].clientX);var moveUpDown=Math.abs(drag.LastMove.Y-touches[0].clientY);moveSetp=parseInt(moveSetp);if(this.CurrentChartDrawPicture){var drawPicture=this.CurrentChartDrawPicture;if(drawPicture.Status==1||drawPicture.Status==2){if(moveSetp<5&&moveUpDown<5)return;if(this.SetChartDrawPictureSecondPoint(touches[0].clientX,touches[0].clientY,true)){this.DrawDynamicInfo();}}else if(drawPicture.Status==3){if(this.SetChartDrawPictureThirdPoint(touches[0].clientX,touches[0].clientY,true)){this.DrawDynamicInfo();}}else if(drawPicture.Status==20)//画图工具移动
|
|
7946
|
+
else if(this.IsClickShowCorssCursor)T_ShowCorssCursor();}if(this.EnableZoomIndexWindow){this.PhoneDBClick.AddTouchStart(touches[0].clientX,touches[0].clientY,Date.now());JSConsole.Chart.Log("[MinuteChartContainer::OnTouchStart] PhoneDBClick ",this.PhoneDBClick);}this.TouchEvent({EventID:JSCHART_EVENT_ID.ON_PHONE_TOUCH,FunctionName:"OnTouchStart"},e);}else if(this.IsPhonePinching(e)){var phonePinch={"Start":{},"Last":{}};var touches=this.GetToucheData(e,this.IsForceLandscape);phonePinch.Start={"X":touches[0].pageX,"Y":touches[0].pageY,"X2":touches[1].pageX,"Y2":touches[1].pageY};phonePinch.Last={"X":touches[0].pageX,"Y":touches[0].pageY,"X2":touches[1].pageX,"Y2":touches[1].pageY};this.PhonePinch=phonePinch;this.SelectChartDrawPicture=null;}};this.OnTouchMove=function(e){if(this.ChartSplashPaint&&this.ChartSplashPaint.IsEnableSplash==true)return;var touches=this.GetToucheData(e,this.IsForceLandscape);if(this.IsPhoneDragging(e)){var drag=this.MouseDrag;if(drag==null){var pixelTatio=GetDevicePixelRatio();var x=touches[0].clientX-uielement.getBoundingClientRect().left*pixelTatio;var y=touches[0].clientY-uielement.getBoundingClientRect().top*pixelTatio;this.OnMouseMove(x,y,e);}else{var moveAngle=this.GetMoveAngle(drag.LastMove,{X:touches[0].clientX,Y:touches[0].clientY});var moveSetp=Math.abs(drag.LastMove.X-touches[0].clientX);var moveUpDown=Math.abs(drag.LastMove.Y-touches[0].clientY);moveSetp=parseInt(moveSetp);if(this.CurrentChartDrawPicture&&this.CurrentChartDrawPicture.EnableMove===true){var drawPicture=this.CurrentChartDrawPicture;if(drawPicture.Status==1||drawPicture.Status==2){if(moveSetp<5&&moveUpDown<5)return;if(this.SetChartDrawPictureSecondPoint(touches[0].clientX,touches[0].clientY,true)){this.DrawDynamicInfo();}}else if(drawPicture.Status==3){if(this.SetChartDrawPictureThirdPoint(touches[0].clientX,touches[0].clientY,true)){this.DrawDynamicInfo();}}else if(drawPicture.Status==20)//画图工具移动
|
|
7948
7947
|
{if(moveSetp<5&&moveUpDown<5)return;if(this.MoveChartDrawPicture(touches[0].clientX-drag.LastMove.X,touches[0].clientY-drag.LastMove.Y,true)){this.DrawDynamicInfo();}}drag.LastMove.X=touches[0].clientX;drag.LastMove.Y=touches[0].clientY;}else{//上下滚动
|
|
7949
7948
|
if((moveUpDown>0&&moveSetp<=3||moveAngle<=this.TouchMoveMinAngle)&&this.EnableScrollUpDown==true){this.StopDragTimer();return;}this.PreventTouchEvent(e);this.MouseDrag=null;var pixelTatio=GetDevicePixelRatio();var x=touches[0].clientX-uielement.getBoundingClientRect().left*pixelTatio;var y=touches[0].clientY-uielement.getBoundingClientRect().top*pixelTatio;this.OnMouseMove(x,y,e);}}if(this.PhoneTouchInfo){this.PhoneTouchInfo.End.X=touches[0].clientX;this.PhoneTouchInfo.End.Y=touches[0].clientY;}}else if(this.IsPhonePinching(e)){this.PreventTouchEvent(e);var phonePinch=this.PhonePinch;if(!phonePinch)return;var yHeight=Math.abs(touches[0].pageY-touches[1].pageY);var yLastHeight=Math.abs(phonePinch.Last.Y-phonePinch.Last.Y2);var yStep=yHeight-yLastHeight;var xHeight=Math.abs(touches[0].pageX-touches[1].pageX);var xLastHeight=Math.abs(phonePinch.Last.X-phonePinch.Last.X2);var xStep=xHeight-xLastHeight;var minStep=this.ZoomStepPixel;if(Math.abs(xStep)>minStep){var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_MINUTE_TOUCH_ZOOM);if(event&&event.Callback){var data={XStep:xStep,YStep:yStep,PreventDefault:false};event.Callback(event,data,this);if(data.PreventDefault){this.PhonePinch=null;this.StopDragTimer();return;}}}phonePinch.Last={"X":touches[0].pageX,"Y":touches[0].pageY,"X2":touches[1].pageX,"Y2":touches[1].pageY};}if(this.EnableScrollUpDown==false){e.preventDefault();}else{if(drag==null){this.PreventTouchEvent(e);//十字光标出来了,阻止消息
|
|
7950
7949
|
}else{this.StopDragTimer();//上下推动图片,停止定时器,消息传递下去
|
|
@@ -13686,7 +13685,8 @@ JSPopMenu.SEPARATOR_LINE_NAME="MENU_SEPARATOR";//分割线
|
|
|
13686
13685
|
*/var JS_DRAWTOOL_MENU_ID={CMD_SELECTED_ID:1,CMD_CHANGE_LINE_COLOR_ID:2,CMD_DELETE_ALL_DRAW_CHART_ID:3,CMD_ERASE_DRAW_CHART_ID:4,CMD_ENABLE_MAGNET_ID:5,//画图工具磁体功能
|
|
13687
13686
|
CMD_DELETE_DRAW_CHART_ID:6,CMD_CHANGE_FONT_COLOR_ID:7,//切换字体颜色
|
|
13688
13687
|
CMD_CHANGE_BG_COLOR_ID:8,//切换背景色
|
|
13689
|
-
CMD_CHANGE_BORDER_COLOR_ID:9
|
|
13688
|
+
CMD_CHANGE_BORDER_COLOR_ID:9,//边框颜色
|
|
13689
|
+
CMD_LOCK_DRAW_CHART_ID:10//上锁
|
|
13690
13690
|
};function JSDialogDrawTool(){this.AryChartGroup=[{Title:"线段",AryChart:[{Title:'线段',ClassName:'hqchart_drawtool icon-draw_line',Type:0,Data:{ID:"线段"}},{Title:'线段信息',ClassName:'hqchart_drawtool icon-infoline',Type:0,Data:{ID:"InfoLine"}},{Title:'射线',ClassName:'hqchart_drawtool icon-draw_rays',Type:0,Data:{ID:"射线"}},{Title:"趋势线角度",ClassName:"hqchart_drawtool icon-qushixianjiaodu",Type:0,Data:{ID:"TrendAngle"}},{Title:'标价线',ClassName:'hqchart_drawtool icon-price_line',Type:0,Data:{ID:"标价线"}},{Title:'垂直线',ClassName:'hqchart_drawtool icon-vertical_line',Type:0,Data:{ID:"垂直线"}},{Title:'十字线',ClassName:'hqchart_drawtool icon-tubiao_shizixian',Type:0,Data:{ID:"十字线"}},{Title:'箭头',ClassName:'hqchart_drawtool icon-bottom-arrow-solid',Type:0,Data:{ID:"箭头"}},{Title:'大箭头',ClassName:'hqchart_drawtool icon-big_arrow',Type:0,Data:{ID:"ArrowMarker"}},{Title:'趋势线',ClassName:'hqchart_drawtool icon-draw_trendline',Type:0,Data:{ID:"趋势线"}},{Title:'水平线',ClassName:'hqchart_drawtool icon-draw_hline',Type:0,Data:{ID:"水平线"}},{Title:'水平射线',ClassName:'hqchart_drawtool icon-tubiao_shuipingshexian',Type:0,Data:{ID:"水平射线"}},{Title:'涂鸦线段',ClassName:'hqchart_drawtool icon-draw_line',Type:0,Data:{ID:"涂鸦线段"}},{Title:'阻速线',ClassName:'hqchart_drawtool icon-draw_resline',Type:0,Data:{ID:"阻速线"}},{Title:'通达信阻速线',ClassName:'hqchart_drawtool icon-draw_resline',Type:0,Data:{ID:"阻速线2"}},{Title:'江恩角度线',ClassName:'hqchart_drawtool icon-jiangenjiaoduxian',Type:0,Data:{ID:"江恩角度线"}},{Title:'通达信江恩角度线',ClassName:'hqchart_drawtool icon-jiangenjiaoduxian',Type:0,Data:{ID:"江恩角度线2"}}]},{Title:"通道",AryChart:[{Title:'平行线',ClassName:'hqchart_drawtool icon-draw_parallel_lines',Type:0,Data:{ID:"平行线"}},{Title:'水平线段',ClassName:'hqchart_drawtool icon-draw_hlinesegment',Type:0,Data:{ID:"水平线段"}},{Title:'平行射线',ClassName:'hqchart_drawtool icon-draw_p_rays_lines',Type:0,Data:{ID:"平行射线"}},{Title:'平行通道',ClassName:'hqchart_drawtool icon-draw_parallelchannel',Type:0,Data:{ID:"平行通道"}},{Title:'价格通道线',ClassName:'hqchart_drawtool icon-draw_pricechannel',Type:0,Data:{ID:"价格通道线"}},{Title:'箱型线',ClassName:'hqchart_drawtool icon-draw_box',Type:0,Data:{ID:"箱型线"}},{Title:"不相交通道",ClassName:"hqchart_drawtool icon-buxiangjiaojiao",Type:0,Data:{ID:"DisjointChannel"}},{Title:"平滑顶/底",ClassName:"hqchart_drawtool icon-tubiao_buxiangjiaotongdao",Type:0,Data:{ID:"FlatTop"}},{Title:"波段线",ClassName:'hqchart_drawtool icon-draw_waveband',Type:0,Data:{ID:"波段线"}},{Title:"百分比线",ClassName:'hqchart_drawtool icon-PercentageLine',Type:0,Data:{ID:"百分比线"}},{Title:"黄金分割",ClassName:'hqchart_drawtool icon-GoldenSection',Type:0,Data:{ID:"黄金分割"}},{Title:"线形回归线",ClassName:'hqchart_drawtool icon-linear_3',Type:0,Data:{ID:"线形回归线"}},{Title:"线形回归带",ClassName:'hqchart_drawtool icon-linear_1',Type:0,Data:{ID:"线形回归带"}},{Title:"延长线形回归带",ClassName:'hqchart_drawtool icon-linear_2',Type:0,Data:{ID:"延长线形回归带"}}]},{Title:"形状",AryChart:[{Title:'圆弧线',ClassName:'hqchart_drawtool icon-draw_arc',Type:0,Data:{ID:"圆弧线"}},{Title:'矩形',ClassName:'hqchart_drawtool icon-rectangle',Type:0,Data:{ID:"矩形"}},{Title:'平行四边形',ClassName:'hqchart_drawtool icon-draw_quadrangle',Type:0,Data:{ID:"平行四边形"}},{Title:'三角形',ClassName:'hqchart_drawtool icon-draw_triangle',Type:0,Data:{ID:"三角形"}},{Title:'圆',ClassName:'hqchart_drawtool icon-draw_circle',Type:0,Data:{ID:"圆"}},{Title:'对称角度',ClassName:'hqchart_drawtool icon-draw_symangle',Type:0,Data:{ID:"对称角度"}}]},{Title:"波浪线",AryChart:[{Title:'M头W底',ClassName:'hqchart_drawtool icon-draw_wavemw',Type:0,Data:{ID:"M头W底"}},{Title:'头肩型',ClassName:'hqchart_drawtool icon-draw_head_shoulders_bt',Type:0,Data:{ID:"头肩型"}},{Title:'波浪尺',ClassName:'hqchart_drawtool icon-waveruler',Type:0,Data:{ID:"波浪尺"}},{Title:'AB波浪尺',ClassName:'hqchart_drawtool icon-waveruler',Type:0,Data:{ID:"AB波浪尺"}}]},{Title:"斐波那契",AryChart:[{Title:'斐波那契周期线',ClassName:'hqchart_drawtool icon-feibonaqizhouqixian',Type:0,Data:{ID:"斐波那契周期线"}},{Title:'斐波那契楔形',ClassName:'hqchart_drawtool icon-feibonaqiqixing',Type:0,Data:{ID:"FibWedge"}},{Title:'斐波那契回撤',ClassName:'hqchart_drawtool icon-feibonaqihuiche',Type:0,Data:{ID:"FibRetracement"}},{Title:'斐波那契速度阻力扇',ClassName:'hqchart_drawtool icon-feibonaqisuduzulishan',Type:0,Data:{ID:"FibSpeedResistanceFan"}}]},{Title:"测量工具",AryChart:[{Title:'价格范围',ClassName:'hqchart_drawtool icon-shijianfanwei',Type:0,Data:{ID:"PriceRange"}},{Title:'时间范围',ClassName:'hqchart_drawtool icon-jiagefanwei',Type:0,Data:{ID:"DateRange"}},{Title:"价格和时间范围",ClassName:"hqchart_drawtool icon-jiagefanwei",Type:0,Data:{ID:"DatePriceRange"}},{Title:"监测线",ClassName:"hqchart_drawtool icon-jiance",Type:0,Data:{ID:"MonitorLine"}}]},{Title:"文字",AryChart:[{Title:"文字",ClassName:'hqchart_drawtool icon-draw_text',Type:0,Data:{ID:"文本"}},{Title:"锚点文字",ClassName:'hqchart_drawtool icon-maodianwenzi',Type:0,Data:{ID:"AnchoredText"}},{Title:"注释",ClassName:'hqchart_drawtool icon-maodian ',Type:0,Data:{ID:"Note"}},{Title:'价格标签',ClassName:'hqchart_drawtool icon-Tooltip',Type:0,Data:{ID:"PriceLabel"}},{Title:'价格注释',ClassName:'hqchart_drawtool icon-tooltiptext',Type:0,Data:{ID:"PriceNote"}},{Title:'向上箭头',ClassName:'iconfont icon-arrow_up',Type:0,Data:{ID:"icon-arrow_up"}},{Title:'向下箭头',ClassName:'iconfont icon-arrow_down',Type:0,Data:{ID:"icon-arrow_down"}},{Title:'向左箭头',ClassName:'iconfont icon-arrow_left',Type:0,Data:{ID:"icon-arrow_left"}},{Title:'向右箭头',ClassName:'iconfont icon-arrow_right',Type:0,Data:{ID:"icon-arrow_right"}}]}];this.ToolConfig={Title:"工具",AryTool:[{Title:"选中",ClassName:'hqchart_drawtool icon-arrow',Type:1,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_SELECTED_ID}},{Title:'尺子',ClassName:'hqchart_drawtool icon-ruler',Type:0,Data:{ID:"尺子"}},{Title:"磁铁",ClassName:'hqchart_drawtool icon-xifu',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_ENABLE_MAGNET_ID}},{Title:"点击切换颜色",ClassName:'hqchart_drawtool icon-fangkuai',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_LINE_COLOR_ID}},{Title:"擦除画线",ClassName:'hqchart_drawtool icon-a-xiangpicachuxiangpica',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_ERASE_DRAW_CHART_ID}},{Title:"删除所有画线",ClassName:'hqchart_drawtool icon-recycle_bin',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_DELETE_ALL_DRAW_CHART_ID}}]};this.DivDialog=null;this.AryDivChart=[];this.HQChart=null;this.LineColor='rgb(255,140,0)';this.LineColorIndex=0;this.RandomLineColor=["rgb(255,69,0)","rgb(0,191,255)","rgb(255,0,255)","rgb(255,105,180)"];this.LineWidth=1*GetDevicePixelRatio();this.ColumnCount=5;this.DragTitle=null;this.Inital=function(hqchart){this.LineColor=g_JSChartResource.DrawPicture.LineColor[0];this.RandomLineColor.splice(0,0,this.LineColor);this.HQChart=hqchart;};this.Create=function(){var _this78=this;var divDom=document.createElement("div");divDom.className='UMyChart_DrawTool_Dialog_Div';var divTitle=document.createElement("div");divTitle.className='UMyChart_DrawTool_Title_Div';divTitle.innerText="画图工具";divTitle.onmousedown=function(e){_this78.OnMouseDownTitle(e);};var divClose=document.createElement("div");divClose.className='UMyChart_DrawTool_Close_Div';divClose.innerText="x";divClose.onmousedown=function(e){_this78.Close(e);};divTitle.appendChild(divClose);divDom.appendChild(divTitle);var table=document.createElement("table");table.className="UMyChart_DrawTool_Table";divDom.appendChild(table);var tbody=document.createElement("tbody");tbody.className="UMyChart_DrawTool_Tbody";table.appendChild(tbody);for(var i=0;i<this.AryChartGroup.length;++i){var item=this.AryChartGroup[i];if(!IFrameSplitOperator.IsNonEmptyArray(item.AryChart))continue;this.CreateChartGroupItem(item,tbody);var trDom=document.createElement("tr");trDom.className='UMyChart_DrawTool_Group_End_Tr';tbody.appendChild(trDom);}//工具栏
|
|
13691
13691
|
this.CreateToolGroup(tbody);this.DivDialog=divDom;document.body.appendChild(divDom);};this.Destroy=function(){this.AryDivChart=[];if(this.DivDialog)document.body.removeChild(this.DivDialog);this.DivDialog=null;};this.CreateChartGroupItem=function(groupItem,tbody){var trDom=document.createElement("tr");trDom.className='UMyChart_DrawTool_Group_Tr';tbody.appendChild(trDom);var tdDom=document.createElement("td");tdDom.className="UMyChart_DrawTool_Group_Td";tdDom.innerText=groupItem.Title;tdDom.colSpan=this.ColumnCount;trDom.appendChild(tdDom);var chartCount=groupItem.AryChart.length;for(var i=0,j=0;i<chartCount;){var trDom=document.createElement("tr");trDom.className='UMyChart_DrawTool_Tr';for(j=0;j<this.ColumnCount&&i<chartCount;++j,++i){var item=groupItem.AryChart[i];this.CreateChartItem(item,trDom);}tbody.appendChild(trDom);}};this.CreateChartItem=function(item,trDom){var _this79=this;var tdDom=document.createElement("td");tdDom.className="UMyChart_DrawTool_Td";tdDom.title=item.Title;trDom.appendChild(tdDom);var spanDom=document.createElement("span");spanDom.className=item.ClassName;spanDom.classList.add("UMyChart_DrawTool_Span");tdDom.appendChild(spanDom);var data={Item:item,TD:tdDom,Span:spanDom};tdDom.onmousedown=function(e){_this79.OnClickItem(e,data);};//点击
|
|
13692
13692
|
this.AryDivChart.push(data);};this.OnClickItem=function(e,data){console.log('[JSDialogDrawTool::OnClickChartItem] ',data);if(!data.Item||!data.Item.Data)return;var type=data.Item.Type;var id=data.Item.Data.ID;if(type==2&&id==JS_DRAWTOOL_MENU_ID.CMD_CHANGE_LINE_COLOR_ID){this.OnChangeLineColor(data);}else if(type==2&&id==JS_DRAWTOOL_MENU_ID.CMD_DELETE_ALL_DRAW_CHART_ID){this.DeleteAllChart();}else if(type==2&&id==JS_DRAWTOOL_MENU_ID.CMD_ERASE_DRAW_CHART_ID){this.ClearAllSelectedChart();this.ClearCurrnetDrawPicture();this.EnableEraseChart(true);}else if(type==1&&id==JS_DRAWTOOL_MENU_ID.CMD_SELECTED_ID){this.ClearAllSelectedChart();this.ClearCurrnetDrawPicture();this.EnableEraseChart(false);}else if(type==2&&id==JS_DRAWTOOL_MENU_ID.CMD_ENABLE_MAGNET_ID){this.ChangeMagnet(data);}else if(type==0){this.ClearAllSelectedChart();this.EnableEraseChart(false);data.Span.classList.remove("UMyChart_DrawTool_Span");data.Span.classList.add("UMyChart_DrawTool_Span_Selected");this.CreateDrawPicture(data);}};//清空选中状态
|
|
@@ -13704,18 +13704,18 @@ var x=labelInfo.AryPoint[1].X-labelInfo.AryPoint[0].X;var y=labelInfo.AryPoint[1
|
|
|
13704
13704
|
//
|
|
13705
13705
|
////////////////////////////////////////////////////////////////////////////////////
|
|
13706
13706
|
function JSDialogModifyDraw(){this.DivDialog=null;this.HQChart;this.ChartPicture;//按钮
|
|
13707
|
-
this.ColorButton=null;this.BGColorButton=null;this.FontColorButton=null;this.BorderColorButton=null;this.RandomLineColor=["rgb(255,69,0)","rgb(173,255,47)","rgb(238,154,73)","rgb(255,105,180)"];//线段颜色
|
|
13707
|
+
this.ColorButton=null;this.BGColorButton=null;this.FontColorButton=null;this.BorderColorButton=null;this.LockButton=null;this.RandomLineColor=["rgb(255,69,0)","rgb(173,255,47)","rgb(238,154,73)","rgb(255,105,180)"];//线段颜色
|
|
13708
13708
|
this.RandomBGColor=["rgba(210,251,209,0.8)","rgb(217,217,253)","rgb(255,208,204)","rgb(252,249,206)"];//背景颜色
|
|
13709
13709
|
this.RandomFontColor=["rgb(0,0,0)","rgb(255, 0, 0)","rgb(20, 255, 0)","rgb(255, 0, 255)"];//文字颜色
|
|
13710
13710
|
this.RandomBorderColor=["rgb(0,0,0)","rgb(5, 246, 143)","rgb(139, 137, 137)","rgb(255, 20, 147)"];//边框颜色
|
|
13711
|
-
this.AryButton=[{Title:"修改线段颜色",ClassName:'hqchart_drawtool icon-huabi',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_LINE_COLOR_ID}},{Title:"修改字体颜色",ClassName:'hqchart_drawtool icon-zitiyanse',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_FONT_COLOR_ID}},{Title:"修改背景颜色",ClassName:'hqchart_drawtool icon-zitibeijingse',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BG_COLOR_ID}},{Title:"修改边框颜色",ClassName:'hqchart_drawtool icon-biankuang',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BORDER_COLOR_ID}},{Title:"删除图形",ClassName:'hqchart_drawtool icon-recycle_bin',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_DELETE_DRAW_CHART_ID}}];this.Inital=function(hqchart){this.HQChart=hqchart;};this.Destroy=function(){this.ChartPicture=null;this.ColorButton=null;if(this.DivDialog){document.body.remove(this.DivDialog);this.DivDialog=null;}};this.Create=function(){var _this83=this;var divDom=document.createElement("div");divDom.className='UMyChart_Draw_Modify_Dialog_Div';var drgDiv=document.createElement("div");drgDiv.className="UMyChart_Draw_Modify_Dialog_Drag_Div";drgDiv.onmousedown=function(e){_this83.OnMouseDownTitle(e);};divDom.appendChild(drgDiv);var spanDom=document.createElement("span");spanDom.className="hqchart_drawtool icon-tuodong";spanDom.classList.add("UMyChart_DrawTool_Span");drgDiv.appendChild(spanDom);for(var i=0;i<this.AryButton.length;++i){var item=this.AryButton[i];this.CreateButtonItem(item,divDom);}this.DivDialog=divDom;document.body.appendChild(divDom);};this.CreateButtonItem=function(item,parentDivDom){var _this84=this;var divItem=document.createElement("div");divItem.className="UMyChart_Draw_Modify_Dialog_Button_Div";var spanTooltip=document.createElement("span");spanTooltip.className="UMyChart_Draw_Modify_Tooltip";spanTooltip.innerText=item.Title;divItem.appendChild(spanTooltip);var spanDom=document.createElement("span");spanDom.className=item.ClassName;spanDom.classList.add("UMyChart_DrawTool_Span");divItem.appendChild(spanDom);var data={Div:divItem,Span:spanDom,Parent:parentDivDom,Item:item,Tooltip:spanTooltip};divItem.onmousedown=function(e){_this84.OnClickButton(e,data);};//点击
|
|
13712
|
-
divItem.onmouseover=function(e){_this84.OnHoverButton(e,data);};divItem.onmouseout=function(e){_this84.OnLeaveButton(e,data);};switch(item.Data.ID){case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_LINE_COLOR_ID:this.ColorButton=data;break;case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BG_COLOR_ID:this.BGColorButton=data;divItem.style.display="none";break;case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_FONT_COLOR_ID:this.FontColorButton=data;divItem.style.display="none";break;case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BORDER_COLOR_ID:this.BorderColorButton=data;divItem.style.display="none";break;}parentDivDom.appendChild(divItem);};this.OnClickButton=function(e,data){console.log('[JSDialogModifyDraw::OnClickButton] ',data);if(!data.Item||!data.Item.Data)return;var id=data.Item.Data.ID;switch(id){case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_LINE_COLOR_ID:this.ModifyLineColor();break;case JS_DRAWTOOL_MENU_ID.CMD_DELETE_DRAW_CHART_ID:this.DeleteDrawPicture();break;case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BG_COLOR_ID:this.ModifyBGColor();break;case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_FONT_COLOR_ID:this.ModifyFontColor();break;case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BORDER_COLOR_ID:this.ModifyBorderColor();break;}};this.OnHoverButton=function(e,data){//var x=e.clientX;
|
|
13711
|
+
this.AryButton=[{Title:"修改线段颜色",ClassName:'hqchart_drawtool icon-huabi',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_LINE_COLOR_ID}},{Title:"修改字体颜色",ClassName:'hqchart_drawtool icon-zitiyanse',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_FONT_COLOR_ID}},{Title:"修改背景颜色",ClassName:'hqchart_drawtool icon-zitibeijingse',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BG_COLOR_ID}},{Title:"修改边框颜色",ClassName:'hqchart_drawtool icon-biankuang',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BORDER_COLOR_ID}},{Title:"上锁",ClassName:'hqchart_drawtool icon-lock',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_LOCK_DRAW_CHART_ID}},{Title:"删除图形",ClassName:'hqchart_drawtool icon-recycle_bin',Type:2,Data:{ID:JS_DRAWTOOL_MENU_ID.CMD_DELETE_DRAW_CHART_ID}}];this.Inital=function(hqchart){this.HQChart=hqchart;};this.Destroy=function(){this.ChartPicture=null;this.ColorButton=null;if(this.DivDialog){document.body.remove(this.DivDialog);this.DivDialog=null;}};this.Create=function(){var _this83=this;var divDom=document.createElement("div");divDom.className='UMyChart_Draw_Modify_Dialog_Div';var drgDiv=document.createElement("div");drgDiv.className="UMyChart_Draw_Modify_Dialog_Drag_Div";drgDiv.onmousedown=function(e){_this83.OnMouseDownTitle(e);};divDom.appendChild(drgDiv);var spanDom=document.createElement("span");spanDom.className="hqchart_drawtool icon-tuodong";spanDom.classList.add("UMyChart_DrawTool_Span");drgDiv.appendChild(spanDom);for(var i=0;i<this.AryButton.length;++i){var item=this.AryButton[i];this.CreateButtonItem(item,divDom);}this.DivDialog=divDom;document.body.appendChild(divDom);};this.CreateButtonItem=function(item,parentDivDom){var _this84=this;var divItem=document.createElement("div");divItem.className="UMyChart_Draw_Modify_Dialog_Button_Div";var spanTooltip=document.createElement("span");spanTooltip.className="UMyChart_Draw_Modify_Tooltip";spanTooltip.innerText=item.Title;divItem.appendChild(spanTooltip);var spanDom=document.createElement("span");spanDom.className=item.ClassName;spanDom.classList.add("UMyChart_DrawTool_Span");divItem.appendChild(spanDom);var data={Div:divItem,Span:spanDom,Parent:parentDivDom,Item:item,Tooltip:spanTooltip};divItem.onmousedown=function(e){_this84.OnClickButton(e,data);};//点击
|
|
13712
|
+
divItem.onmouseover=function(e){_this84.OnHoverButton(e,data);};divItem.onmouseout=function(e){_this84.OnLeaveButton(e,data);};switch(item.Data.ID){case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_LINE_COLOR_ID:this.ColorButton=data;break;case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BG_COLOR_ID:this.BGColorButton=data;divItem.style.display="none";break;case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_FONT_COLOR_ID:this.FontColorButton=data;divItem.style.display="none";break;case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BORDER_COLOR_ID:this.BorderColorButton=data;divItem.style.display="none";break;case JS_DRAWTOOL_MENU_ID.CMD_LOCK_DRAW_CHART_ID:this.LockButton=data;this.LockButton.Span.style['color']="rgb(220,220,220)";break;}parentDivDom.appendChild(divItem);};this.OnClickButton=function(e,data){console.log('[JSDialogModifyDraw::OnClickButton] ',data);if(!data.Item||!data.Item.Data)return;var id=data.Item.Data.ID;switch(id){case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_LINE_COLOR_ID:this.ModifyLineColor();break;case JS_DRAWTOOL_MENU_ID.CMD_DELETE_DRAW_CHART_ID:this.DeleteDrawPicture();break;case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BG_COLOR_ID:this.ModifyBGColor();break;case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_FONT_COLOR_ID:this.ModifyFontColor();break;case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BORDER_COLOR_ID:this.ModifyBorderColor();break;case JS_DRAWTOOL_MENU_ID.CMD_LOCK_DRAW_CHART_ID:this.ModifyLockChart();break;}};this.OnHoverButton=function(e,data){//var x=e.clientX;
|
|
13713
13713
|
//data.Tooltip.style.left=x+"px";
|
|
13714
13714
|
data.Tooltip.style.display="inline";};this.OnLeaveButton=function(e,data){data.Tooltip.style.display="none";};this.Close=function(e){if(!this.DivDialog)return;this.ChartPicture=null;this.DivDialog.style.visibility='hidden';};this.IsShow=function(){if(!this.DivDialog)return false;return this.DivDialog.style.visibility==='visible';};this.DeleteDrawPicture=function(){if(this.ChartPicture&&this.HQChart){this.HQChart.ClearChartDrawPicture(this.ChartPicture);}this.Close();};this.ShowButton=function(dom,diaplay){if(dom.style.display==diaplay)return;dom.style.display=diaplay;};this.GetRandomColor=function(currentColor,randomLineColor){var colorIndex=0;for(var i=0;i<randomLineColor.length;++i){if(currentColor==randomLineColor[i]){colorIndex=i+1;break;}}colorIndex=colorIndex%randomLineColor.length;var color=randomLineColor[colorIndex];return color;};this.ModifyLineColor=function(){if(!this.ChartPicture||!this.HQChart)return;var color=this.GetRandomColor(this.ChartPicture.LineColor,this.RandomLineColor);this.ChartPicture.LineColor=color;this.ChartPicture.PointColor=color;if(this.ColorButton)this.ColorButton.Span.style['color']=color;if(this.HQChart.ChartDrawStorage)this.HQChart.ChartDrawStorage.SaveDrawData(this.ChartPicture);//保存下
|
|
13715
13715
|
this.HQChart.Draw();};this.ModifyFontColor=function(){if(!this.ChartPicture||!this.HQChart)return;if(this.ChartPicture.ClassName=="ChartDrawNote"){var color=this.GetRandomColor(this.ChartPicture.NoteTextColor,this.RandomFontColor);this.ChartPicture.NoteTextColor=color;}else{var color=this.GetRandomColor(this.ChartPicture.TextColor,this.RandomFontColor);this.ChartPicture.TextColor=color;}if(this.FontColorButton)this.FontColorButton.Span.style['color']=color;if(this.HQChart.ChartDrawStorage)this.HQChart.ChartDrawStorage.SaveDrawData(this.ChartPicture);//保存下
|
|
13716
13716
|
this.HQChart.Draw();};this.ModifyBGColor=function(){if(!this.ChartPicture||!this.HQChart)return;if(this.ChartPicture.ClassName=="ChartDrawNote"){var color=this.GetRandomColor(this.ChartPicture.NoteBGColor,this.RandomBGColor);this.ChartPicture.NoteBGColor=color;}else{var color=this.GetRandomColor(this.ChartPicture.BGColor,this.RandomBGColor);this.ChartPicture.BGColor=color;}if(this.BGColorButton)this.BGColorButton.Span.style['color']=color;if(this.HQChart.ChartDrawStorage)this.HQChart.ChartDrawStorage.SaveDrawData(this.ChartPicture);//保存下
|
|
13717
|
-
this.HQChart.Draw();};this.ModifyBorderColor=function(){if(!this.ChartPicture||!this.HQChart)return;if(this.ChartPicture.ClassName=="ChartDrawNote"){var color=this.GetRandomColor(this.ChartPicture.NoteBorderColor,this.RandomBorderColor);this.ChartPicture.NoteBorderColor=color;}else{var color=this.GetRandomColor(this.ChartPicture.BorderColor,this.RandomBorderColor);this.ChartPicture.BorderColor=color;}if(this.BorderColorButton)this.BorderColorButton.Span.style['color']=color;if(this.HQChart.ChartDrawStorage)this.HQChart.ChartDrawStorage.SaveDrawData(this.ChartPicture);//保存下
|
|
13718
|
-
this.HQChart.Draw();};this.Show=function(x,y){if(!this.DivDialog)this.Create();this.DivDialog.style.visibility='visible';this.DivDialog.style.top=y+"px";this.DivDialog.style.left=x+"px";};this.SetChartPicture=function(chart){this.ChartPicture=chart;var bShowLineColor=true,bShowBGColor=false,bShowFontColor=false,bShowBorderColor=false;var bgColor=null,fontColor=null,borderColor=null;var ARRAY_TEXT_CHART=['ChartDrawPriceLabel',"ChartDrawAnchoredText","ChartDrawPriceNote"];if(ARRAY_TEXT_CHART.includes(chart.ClassName)){bShowBGColor=true;bShowFontColor=true;bShowBorderColor=true;bgColor=chart.BGColor;fontColor=chart.TextColor;borderColor=chart.BorderColor;}else if(chart.ClassName=="ChartDrawNote"){bShowBGColor=true;bShowFontColor=true;bShowBorderColor=true;bgColor=chart.NoteBGColor;fontColor=chart.NoteTextColor;borderColor=chart.NoteBorderColor;}if(this.ColorButton){var item=this.ColorButton;this.ShowButton(item.Div,bShowLineColor?"inline":"none");if(bShowLineColor){item.Span.style['color']=chart.LineColor;}}if(this.BGColorButton){var item=this.BGColorButton;this.ShowButton(item.Div,bShowBGColor?"inline":"none");if(bShowBGColor){item.Span.style['color']=bgColor;}}if(this.FontColorButton){var item=this.FontColorButton;this.ShowButton(item.Div,bShowFontColor?"inline":"none");if(bShowFontColor){item.Span.style['color']=fontColor;}}if(this.BorderColorButton){var item=this.BorderColorButton;this.ShowButton(item.Div,bShowBorderColor?"inline":"none");if(bShowBorderColor){item.Span.style['color']=borderColor;}}};this.OnMouseDownTitle=function(e){var _this85=this;if(!this.DivDialog)return;var dragData={X:e.clientX,Y:e.clientY};dragData.YOffset=e.clientX-this.DivDialog.offsetLeft;dragData.XOffset=e.clientY-this.DivDialog.offsetTop;this.DragTitle=dragData;document.onmousemove=function(e){_this85.DocOnMouseMoveTitle(e);};document.onmouseup=function(e){_this85.DocOnMouseUpTitle(e);};};this.DocOnMouseMoveTitle=function(e){if(!this.DragTitle)return;var left=e.clientX-this.DragTitle.YOffset;var top=e.clientY-this.DragTitle.XOffset;var right=left+this.DivDialog.offsetWidth;var bottom=top+this.DivDialog.offsetHeight;if(right+5>=window.innerWidth)left=window.innerWidth-this.DivDialog.offsetWidth-5;if(bottom+5>=window.innerHeight)top=window.innerHeight-this.DivDialog.offsetHeight-5;this.DivDialog.style.left=left+'px';this.DivDialog.style.top=top+'px';if(e.preventDefault)e.preventDefault();if(e.stopPropagation)e.stopPropagation();};this.DocOnMouseUpTitle=function(e){this.DragTitle=null;this.onmousemove=null;this.onmouseup=null;};}/*
|
|
13717
|
+
this.HQChart.Draw();};this.ModifyLockChart=function(){if(!this.ChartPicture||!this.HQChart)return;this.ChartPicture.EnableMove=!this.ChartPicture.EnableMove;if(this.LockButton)this.LockButton.Span.style['color']=this.ChartPicture.EnableMove?"rgb(220,220,220)":"rgb(0,0,0)";};this.ModifyBorderColor=function(){if(!this.ChartPicture||!this.HQChart)return;if(this.ChartPicture.ClassName=="ChartDrawNote"){var color=this.GetRandomColor(this.ChartPicture.NoteBorderColor,this.RandomBorderColor);this.ChartPicture.NoteBorderColor=color;}else{var color=this.GetRandomColor(this.ChartPicture.BorderColor,this.RandomBorderColor);this.ChartPicture.BorderColor=color;}if(this.BorderColorButton)this.BorderColorButton.Span.style['color']=color;if(this.HQChart.ChartDrawStorage)this.HQChart.ChartDrawStorage.SaveDrawData(this.ChartPicture);//保存下
|
|
13718
|
+
this.HQChart.Draw();};this.Show=function(x,y){if(!this.DivDialog)this.Create();this.DivDialog.style.visibility='visible';this.DivDialog.style.top=y+"px";this.DivDialog.style.left=x+"px";};this.SetChartPicture=function(chart){this.ChartPicture=chart;var bShowLineColor=true,bShowBGColor=false,bShowFontColor=false,bShowBorderColor=false;var bgColor=null,fontColor=null,borderColor=null;var ARRAY_TEXT_CHART=['ChartDrawPriceLabel',"ChartDrawAnchoredText","ChartDrawPriceNote"];if(ARRAY_TEXT_CHART.includes(chart.ClassName)){bShowBGColor=true;bShowFontColor=true;bShowBorderColor=true;bgColor=chart.BGColor;fontColor=chart.TextColor;borderColor=chart.BorderColor;}else if(chart.ClassName=="ChartDrawNote"){bShowBGColor=true;bShowFontColor=true;bShowBorderColor=true;bgColor=chart.NoteBGColor;fontColor=chart.NoteTextColor;borderColor=chart.NoteBorderColor;}if(this.ColorButton){var item=this.ColorButton;this.ShowButton(item.Div,bShowLineColor?"inline":"none");if(bShowLineColor){item.Span.style['color']=chart.LineColor;}}if(this.BGColorButton){var item=this.BGColorButton;this.ShowButton(item.Div,bShowBGColor?"inline":"none");if(bShowBGColor){item.Span.style['color']=bgColor;}}if(this.FontColorButton){var item=this.FontColorButton;this.ShowButton(item.Div,bShowFontColor?"inline":"none");if(bShowFontColor){item.Span.style['color']=fontColor;}}if(this.BorderColorButton){var item=this.BorderColorButton;this.ShowButton(item.Div,bShowBorderColor?"inline":"none");if(bShowBorderColor){item.Span.style['color']=borderColor;}}if(this.LockButton){var item=this.LockButton;item.Span.style['color']=this.ChartPicture.EnableMove?"rgb(220,220,220)":"rgb(0,0,0)";}};this.OnMouseDownTitle=function(e){var _this85=this;if(!this.DivDialog)return;var dragData={X:e.clientX,Y:e.clientY};dragData.YOffset=e.clientX-this.DivDialog.offsetLeft;dragData.XOffset=e.clientY-this.DivDialog.offsetTop;this.DragTitle=dragData;document.onmousemove=function(e){_this85.DocOnMouseMoveTitle(e);};document.onmouseup=function(e){_this85.DocOnMouseUpTitle(e);};};this.DocOnMouseMoveTitle=function(e){if(!this.DragTitle)return;var left=e.clientX-this.DragTitle.YOffset;var top=e.clientY-this.DragTitle.XOffset;var right=left+this.DivDialog.offsetWidth;var bottom=top+this.DivDialog.offsetHeight;if(right+5>=window.innerWidth)left=window.innerWidth-this.DivDialog.offsetWidth-5;if(bottom+5>=window.innerHeight)top=window.innerHeight-this.DivDialog.offsetHeight-5;this.DivDialog.style.left=left+'px';this.DivDialog.style.top=top+'px';if(e.preventDefault)e.preventDefault();if(e.stopPropagation)e.stopPropagation();};this.DocOnMouseUpTitle=function(e){this.DragTitle=null;this.onmousemove=null;this.onmouseup=null;};}/*
|
|
13719
13719
|
Copyright (c) 2018 jones
|
|
13720
13720
|
|
|
13721
13721
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
@@ -13780,7 +13780,7 @@ hisData.Symbol=message.symbol;}var stockObj={HQDataType:HQ_DATA_TYPE.KLINE_ID,St
|
|
|
13780
13780
|
this.ExecuteScript(item,data);}this.Status=0;}};this.OnExecuteFinish=function(data,indexInfo,jsExectute,jobInfo){var message={Data:data,IndexInfo:indexInfo,ID:JSCHART_WORKER_MESSAGE_ID.FINISH_EXECUTE_SCRIPT,JobInfo:jobInfo};postMessage(message);};this.OnExecuteError=function(error,indexInfo,jobData){var message={IndexInfo:indexInfo,ID:JSCHART_WORKER_MESSAGE_ID.ERROR_EXECUTE_SCRIPT,Error:error};postMessage(message);};}/********************************************************************************
|
|
13781
13781
|
* 版本信息输出
|
|
13782
13782
|
*
|
|
13783
|
-
*/var HQCHART_VERSION="1.1.
|
|
13783
|
+
*/var HQCHART_VERSION="1.1.13742";function PrintHQChartVersion(){var logo='\n\n*************************************************************************************************************************************************************************** \n* \n* :%@@- \n* :@@@@- \n* =@@@@ :#@@@ .:+#@@@#=: :=*@@@@@@#+-. *@@@@. \n* :@@@@@ .@@@@@ .#@@@@@@@@@@@- +@@@@@@@@@@@@@+ @@@@@ -%@@* \n* +@@@@% #@@@@# *@@@@@@@@@@@@@@%. =@@@@@@@@@@@@@@@- @@@@@ -@@@@+ \n* %@@@@* @@@@@+ .%@@@@@@@@@@@@@@@@%: #@@@@@@@@@@@@@@@% @@@@# *@@@@= \n* @@@@@= @@@@@- .%@@@@@@@*++*%@@@@@@% .%@@@@@@@%*+==+**= -@@@@+ #@@@@- \n* @@@@@. @@@@@. #@@@@@%= =@@@@@@* %@@@@@@#: *@@@@- :::. .-+*###+: ::: .+##+: -%%@@@@@%%%% \n* .@@@@@ .@@@@@. +@@@@@% .@@@@@@ *@@@@@@: %@@@@: +@@@@@%. :%@@@@@@@@@@: *@@@ :@@@@@* @@@@@@@@@@@@ \n* :@@@@@ :@@@@@ @@@@@% :@@@@@+ @@@@@@: %@@@@-@@@@@@@@@. @@@@@@@@@@@@@. :@@@%-@@@@@@.:@@@@@@@@@@@# \n* -@@@@% -@@@@@ =@@@@@. %@@@@% %@@@@@- %@@@@@@@@@@@@@@* %@@@@@@@@@@@@+ -@@@@@@@@@@# -@@@@@@@@@@@. \n* +@@@@%=========#@@@@% @@@@@# :@@@@@ .@@@@@% @@@@@@@@%@@@@@@@ -%+:. .#@@@@* +@@@@@@@%%@. .::+@@@@#:: \n* #@@@@@@@@@@@@@@@@@@@# .@@@@@ .@@@@@ :@@@@@. @@@@@@#. #@@@@@. -@@@@* #@@@@@@: *@@@@+ \n* %@@@@@@@@@@@@@@@@@@@+ :@@@@@ .@@@@@ -@@@@@ @@@@@+ @@@@@. :@@@@* @@@@@% #@@@@- \n* @@@@@@@@@@@@@@@@@@@@: :@@@@% :@@@@@ +@@@@% -@@@@+ @@@@@ -@@@@+ @@@@@. @@@@@. \n* .@@@@@@@@@@@@@@@@@@@@ :@@@@% -@@@@% *@@@@% #@@@@. @@@@@ .=*#%%%@@@@@= :@@@@# @@@@@. \n* -@@@@@:::::::::=@@@@@ :@@@@@ @@@@@* +@@@@% @@@@@ @@@@% -#@@@@@@@@@@@@: -@@@@* @@@@@ \n* =@@@@% =@@@@% .@@@@@ :@@@@@. -@@@@% @@@@@ .@@@@* +@@@@@@@@@@@@@@. =@@@@+ .@@@@@ \n* +@@@@# +@@@@# @@@@@# %@@@@% :@@@@@ .@@@@% =@@@@= -@@@@@*-:..%@@@@ +@@@@= :@@@@# \n* *@@@@* *@@@@* +@@@@@: #@@@@@+ .@@@@@@ :@@@@% *@@@@- @@@@@. @@@@% #@@@@: =@@@@+ \n* %@@@@= %@@@@+ @@@@@@- .%@@@@@# #@@@@@# :@@@@% #@@@@: @@@@% @@@@* %@@@@. #@@@@- \n* @@@@@- @@@@@= =@@@@@@#=...-*@@@@@@@: @@@@@@%=. :+**. :@@@@* %@@@@. .@@@@* *@@@@= @@@@@ %@@@@+ \n* .@@@@@: .@@@@@: *@@@@@@@@@@@@@@@@@@@# =@@@@@@@@%%%@@@@@@ +@@@@- @@@@@ .@@@@@: :%@@@@@- .@@@@% %@@@@@*+- \n* :@@@@@ :@@@@@ +@@@@@@@@@@@@@@@@@@@# =@@@@@@@@@@@@@@@@% %@@@@ @@@@@ @@@@@@@@@@@@@@@: -@@@@* *@@@@@@@@- \n* =@@@@@ -@@@@@ :@@@@@@@@@@@@@@@@@@@# :@@@@@@@@@@@@@@@% @@@@@ %@@@% #@@@@@@@@@#@@@@. +@@@@- .@@@@@@@@# \n* *@@@@# =@@@@% :#@@@@@@@#: :@@@@@= =@@@@@@@@@@@+. @@@@@ :@@@+ *@@@@@@@- %@@@ *@@@= =@@@@@@@* \n* =++++- -++++= .:::. .=*+: :-=+++=:. ****= .=+. .-++=: :+++ -+=: .-=+=:. \n* \n* \n* HQChart \n* Ver: '+HQCHART_VERSION+' \n* License: Apache License 2.0 \n* Source: https://github.com/jones2000/HQChart\n*\n************************************************************************************************************************************************************************** \n ';console.log(logo);}PrintHQChartVersion();//把给外界调用的方法暴露出来
|
|
13784
13784
|
exports.default=(_jsChartInit$jsChartS={jsChartInit:JSChart.Init,jsChartStyle:JSChart.SetStyle,// IsIndexSymbol:IsIndexSymbol,
|
|
13785
13785
|
// BaseIndex:BaseIndex,
|
|
13786
13786
|
// ChartLine:ChartLine,
|
package/package.json
CHANGED
|
@@ -22,6 +22,8 @@ var JS_DRAWTOOL_MENU_ID=
|
|
|
22
22
|
CMD_CHANGE_FONT_COLOR_ID:7, //切换字体颜色
|
|
23
23
|
CMD_CHANGE_BG_COLOR_ID:8, //切换背景色
|
|
24
24
|
CMD_CHANGE_BORDER_COLOR_ID:9, //边框颜色
|
|
25
|
+
|
|
26
|
+
CMD_LOCK_DRAW_CHART_ID:10, //上锁
|
|
25
27
|
};
|
|
26
28
|
|
|
27
29
|
function JSDialogDrawTool()
|
|
@@ -618,6 +620,7 @@ function JSDialogModifyDraw()
|
|
|
618
620
|
this.BGColorButton=null;
|
|
619
621
|
this.FontColorButton=null;
|
|
620
622
|
this.BorderColorButton=null;
|
|
623
|
+
this.LockButton=null;
|
|
621
624
|
|
|
622
625
|
this.RandomLineColor=["rgb(255,69,0)", "rgb(173,255,47)", "rgb(238,154,73)", "rgb(255,105,180)"]; //线段颜色
|
|
623
626
|
this.RandomBGColor=["rgba(210,251,209,0.8)", "rgb(217,217,253)", "rgb(255,208,204)", "rgb(252,249,206)"]; //背景颜色
|
|
@@ -630,7 +633,9 @@ function JSDialogModifyDraw()
|
|
|
630
633
|
{ Title:"修改字体颜色", ClassName: 'hqchart_drawtool icon-zitiyanse', Type:2, Data:{ ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_FONT_COLOR_ID }},
|
|
631
634
|
{ Title:"修改背景颜色", ClassName: 'hqchart_drawtool icon-zitibeijingse', Type:2, Data:{ ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BG_COLOR_ID }},
|
|
632
635
|
{ Title:"修改边框颜色", ClassName: 'hqchart_drawtool icon-biankuang', Type:2, Data:{ ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BORDER_COLOR_ID }},
|
|
633
|
-
{ Title:"
|
|
636
|
+
{ Title:"上锁", ClassName: 'hqchart_drawtool icon-lock', Type:2, Data:{ ID:JS_DRAWTOOL_MENU_ID.CMD_LOCK_DRAW_CHART_ID }},
|
|
637
|
+
{ Title:"删除图形", ClassName: 'hqchart_drawtool icon-recycle_bin', Type:2, Data:{ ID:JS_DRAWTOOL_MENU_ID.CMD_DELETE_DRAW_CHART_ID }},
|
|
638
|
+
|
|
634
639
|
];
|
|
635
640
|
|
|
636
641
|
this.Inital=function(hqchart)
|
|
@@ -714,6 +719,10 @@ function JSDialogModifyDraw()
|
|
|
714
719
|
this.BorderColorButton=data;
|
|
715
720
|
divItem.style.display="none";
|
|
716
721
|
break;
|
|
722
|
+
case JS_DRAWTOOL_MENU_ID.CMD_LOCK_DRAW_CHART_ID:
|
|
723
|
+
this.LockButton=data;
|
|
724
|
+
this.LockButton.Span.style['color']="rgb(220,220,220)";
|
|
725
|
+
break;
|
|
717
726
|
|
|
718
727
|
}
|
|
719
728
|
|
|
@@ -743,6 +752,9 @@ function JSDialogModifyDraw()
|
|
|
743
752
|
case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BORDER_COLOR_ID:
|
|
744
753
|
this.ModifyBorderColor();
|
|
745
754
|
break;
|
|
755
|
+
case JS_DRAWTOOL_MENU_ID.CMD_LOCK_DRAW_CHART_ID:
|
|
756
|
+
this.ModifyLockChart();
|
|
757
|
+
break;
|
|
746
758
|
}
|
|
747
759
|
}
|
|
748
760
|
|
|
@@ -867,6 +879,14 @@ function JSDialogModifyDraw()
|
|
|
867
879
|
this.HQChart.Draw();
|
|
868
880
|
}
|
|
869
881
|
|
|
882
|
+
this.ModifyLockChart=function()
|
|
883
|
+
{
|
|
884
|
+
if (!this.ChartPicture || !this.HQChart) return;
|
|
885
|
+
this.ChartPicture.EnableMove=!this.ChartPicture.EnableMove;
|
|
886
|
+
|
|
887
|
+
if (this.LockButton) this.LockButton.Span.style['color']=this.ChartPicture.EnableMove?"rgb(220,220,220)":"rgb(0,0,0)";
|
|
888
|
+
}
|
|
889
|
+
|
|
870
890
|
this.ModifyBorderColor=function()
|
|
871
891
|
{
|
|
872
892
|
if (!this.ChartPicture || !this.HQChart) return;
|
|
@@ -963,7 +983,12 @@ function JSDialogModifyDraw()
|
|
|
963
983
|
item.Span.style['color']=borderColor;
|
|
964
984
|
}
|
|
965
985
|
}
|
|
966
|
-
|
|
986
|
+
|
|
987
|
+
if (this.LockButton)
|
|
988
|
+
{
|
|
989
|
+
var item=this.LockButton;
|
|
990
|
+
item.Span.style['color']=this.ChartPicture.EnableMove?"rgb(220,220,220)":"rgb(0,0,0)";
|
|
991
|
+
}
|
|
967
992
|
}
|
|
968
993
|
|
|
969
994
|
this.OnMouseDownTitle=function(e)
|
package/src/jscommon/umychart.js
CHANGED
|
@@ -3639,7 +3639,7 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
3639
3639
|
this.SelectChartDrawPicture=null;
|
|
3640
3640
|
this.ClearChartDrawPicture(drawPictrueData.ChartDrawPicture);
|
|
3641
3641
|
}
|
|
3642
|
-
else
|
|
3642
|
+
else
|
|
3643
3643
|
{
|
|
3644
3644
|
this.UpDownDrag=null; //画图优先
|
|
3645
3645
|
this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
@@ -3652,19 +3652,16 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
3652
3652
|
|
|
3653
3653
|
if (bDraw) this.Draw();
|
|
3654
3654
|
|
|
3655
|
-
drawPictrueData.ChartDrawPicture.
|
|
3655
|
+
if (drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
3656
|
+
drawPictrueData.ChartDrawPicture.Status=20;
|
|
3657
|
+
|
|
3656
3658
|
drawPictrueData.ChartDrawPicture.ValueToPoint();
|
|
3657
3659
|
drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;
|
|
3658
3660
|
//this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
3659
3661
|
//this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
3660
3662
|
this.SelectChartDrawPicture.DragInfo={Click:{X:e.clientX,Y:e.clientY}};
|
|
3661
3663
|
}
|
|
3662
|
-
|
|
3663
|
-
{
|
|
3664
|
-
this.CurrentChartDrawPicture=null;
|
|
3665
|
-
this.SelectChartDrawPicture=null;
|
|
3666
|
-
}
|
|
3667
|
-
|
|
3664
|
+
|
|
3668
3665
|
var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE); //选中画图工具事件
|
|
3669
3666
|
if (event && event.Callback)
|
|
3670
3667
|
{
|
|
@@ -3853,7 +3850,7 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
3853
3850
|
var sendData={X:x, Y:y, e:e, ChartDrag:this.CustomChartDrag, Drag:drag };
|
|
3854
3851
|
this.TryDragMove_CustomChartDrag(sendData);
|
|
3855
3852
|
}
|
|
3856
|
-
else if (this.CurrentChartDrawPicture)
|
|
3853
|
+
else if (this.CurrentChartDrawPicture && this.CurrentChartDrawPicture.EnableMove===true)
|
|
3857
3854
|
{
|
|
3858
3855
|
var drawPicture=this.CurrentChartDrawPicture;
|
|
3859
3856
|
if (drawPicture.Status==1 || drawPicture.Status==2)
|
|
@@ -4660,21 +4657,13 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
4660
4657
|
var pixelTatio = GetDevicePixelRatio(); //鼠标移动坐标是原始坐标 需要乘以放大倍速
|
|
4661
4658
|
if (this.GetChartDrawPictureByPoint(drawPictrueData))
|
|
4662
4659
|
{
|
|
4663
|
-
if (drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
4664
|
-
{
|
|
4660
|
+
if (drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
4665
4661
|
drawPictrueData.ChartDrawPicture.Status=20;
|
|
4666
|
-
|
|
4667
|
-
|
|
4668
|
-
|
|
4669
|
-
|
|
4670
|
-
|
|
4671
|
-
|
|
4672
|
-
}
|
|
4673
|
-
else
|
|
4674
|
-
{
|
|
4675
|
-
this.CurrentChartDrawPicture=null;
|
|
4676
|
-
this.SelectChartDrawPicture=null;
|
|
4677
|
-
}
|
|
4662
|
+
drawPictrueData.ChartDrawPicture.ValueToPoint();
|
|
4663
|
+
drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;
|
|
4664
|
+
drawPictrueData.ChartDrawPicture.IsSelected=true;
|
|
4665
|
+
this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
4666
|
+
this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
4678
4667
|
|
|
4679
4668
|
var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE); //选中画图工具事件
|
|
4680
4669
|
if (event && event.Callback)
|
|
@@ -4809,7 +4798,7 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
4809
4798
|
|
|
4810
4799
|
//JSConsole.Chart.Log(`[JSChartContainer::OnTouchMove] moveAngle=${moveAngle} , moveUpDown=${moveUpDown}, moveSetp=${moveSetp}`);
|
|
4811
4800
|
|
|
4812
|
-
if (this.CurrentChartDrawPicture)
|
|
4801
|
+
if (this.CurrentChartDrawPicture && this.CurrentChartDrawPicture.EnableMove===true)
|
|
4813
4802
|
{
|
|
4814
4803
|
var drawPicture=this.CurrentChartDrawPicture;
|
|
4815
4804
|
if (drawPicture.Status==1 || drawPicture.Status==2)
|
|
@@ -79605,19 +79594,12 @@ function MinuteChartContainer(uielement,offscreenElement,cacheElement)
|
|
|
79605
79594
|
if (this.GetChartDrawPictureByPoint(drawPictrueData))
|
|
79606
79595
|
{
|
|
79607
79596
|
if (drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
79608
|
-
{
|
|
79609
79597
|
drawPictrueData.ChartDrawPicture.Status=20;
|
|
79610
|
-
|
|
79611
|
-
|
|
79612
|
-
|
|
79613
|
-
|
|
79614
|
-
|
|
79615
|
-
}
|
|
79616
|
-
else
|
|
79617
|
-
{
|
|
79618
|
-
this.CurrentChartDrawPicture=null;
|
|
79619
|
-
this.SelectChartDrawPicture=null;
|
|
79620
|
-
}
|
|
79598
|
+
drawPictrueData.ChartDrawPicture.ValueToPoint();
|
|
79599
|
+
drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;
|
|
79600
|
+
drawPictrueData.ChartDrawPicture.IsSelected=true;
|
|
79601
|
+
this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
79602
|
+
this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
79621
79603
|
|
|
79622
79604
|
let event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE); //选中画图工具事件
|
|
79623
79605
|
if (event && event.Callback)
|
|
@@ -79706,7 +79688,7 @@ function MinuteChartContainer(uielement,offscreenElement,cacheElement)
|
|
|
79706
79688
|
var moveUpDown=Math.abs(drag.LastMove.Y-touches[0].clientY);
|
|
79707
79689
|
moveSetp=parseInt(moveSetp);
|
|
79708
79690
|
|
|
79709
|
-
if (this.CurrentChartDrawPicture)
|
|
79691
|
+
if (this.CurrentChartDrawPicture && this.CurrentChartDrawPicture.EnableMove===true)
|
|
79710
79692
|
{
|
|
79711
79693
|
var drawPicture=this.CurrentChartDrawPicture;
|
|
79712
79694
|
if (drawPicture.Status==1 || drawPicture.Status==2)
|
|
@@ -54,6 +54,18 @@
|
|
|
54
54
|
<div class="content unicode" style="display: block;">
|
|
55
55
|
<ul class="icon_lists dib-box">
|
|
56
56
|
|
|
57
|
+
<li class="dib">
|
|
58
|
+
<span class="icon hqchart_drawtool"></span>
|
|
59
|
+
<div class="name">unlock</div>
|
|
60
|
+
<div class="code-name">&#xe7fa;</div>
|
|
61
|
+
</li>
|
|
62
|
+
|
|
63
|
+
<li class="dib">
|
|
64
|
+
<span class="icon hqchart_drawtool"></span>
|
|
65
|
+
<div class="name">lock</div>
|
|
66
|
+
<div class="code-name">&#xe7fb;</div>
|
|
67
|
+
</li>
|
|
68
|
+
|
|
57
69
|
<li class="dib">
|
|
58
70
|
<span class="icon hqchart_drawtool"></span>
|
|
59
71
|
<div class="name">箭头</div>
|
|
@@ -468,9 +480,9 @@
|
|
|
468
480
|
<pre><code class="language-css"
|
|
469
481
|
>@font-face {
|
|
470
482
|
font-family: 'hqchart_drawtool';
|
|
471
|
-
src: url('iconfont.woff2?t=
|
|
472
|
-
url('iconfont.woff?t=
|
|
473
|
-
url('iconfont.ttf?t=
|
|
483
|
+
src: url('iconfont.woff2?t=1724304295473') format('woff2'),
|
|
484
|
+
url('iconfont.woff?t=1724304295473') format('woff'),
|
|
485
|
+
url('iconfont.ttf?t=1724304295473') format('truetype');
|
|
474
486
|
}
|
|
475
487
|
</code></pre>
|
|
476
488
|
<h3 id="-iconfont-">第二步:定义使用 iconfont 的样式</h3>
|
|
@@ -496,6 +508,24 @@
|
|
|
496
508
|
<div class="content font-class">
|
|
497
509
|
<ul class="icon_lists dib-box">
|
|
498
510
|
|
|
511
|
+
<li class="dib">
|
|
512
|
+
<span class="icon hqchart_drawtool icon-unlock"></span>
|
|
513
|
+
<div class="name">
|
|
514
|
+
unlock
|
|
515
|
+
</div>
|
|
516
|
+
<div class="code-name">.icon-unlock
|
|
517
|
+
</div>
|
|
518
|
+
</li>
|
|
519
|
+
|
|
520
|
+
<li class="dib">
|
|
521
|
+
<span class="icon hqchart_drawtool icon-lock"></span>
|
|
522
|
+
<div class="name">
|
|
523
|
+
lock
|
|
524
|
+
</div>
|
|
525
|
+
<div class="code-name">.icon-lock
|
|
526
|
+
</div>
|
|
527
|
+
</li>
|
|
528
|
+
|
|
499
529
|
<li class="dib">
|
|
500
530
|
<span class="icon hqchart_drawtool icon-big_arrow"></span>
|
|
501
531
|
<div class="name">
|
|
@@ -1117,6 +1147,22 @@
|
|
|
1117
1147
|
<div class="content symbol">
|
|
1118
1148
|
<ul class="icon_lists dib-box">
|
|
1119
1149
|
|
|
1150
|
+
<li class="dib">
|
|
1151
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1152
|
+
<use xlink:href="#icon-unlock"></use>
|
|
1153
|
+
</svg>
|
|
1154
|
+
<div class="name">unlock</div>
|
|
1155
|
+
<div class="code-name">#icon-unlock</div>
|
|
1156
|
+
</li>
|
|
1157
|
+
|
|
1158
|
+
<li class="dib">
|
|
1159
|
+
<svg class="icon svg-icon" aria-hidden="true">
|
|
1160
|
+
<use xlink:href="#icon-lock"></use>
|
|
1161
|
+
</svg>
|
|
1162
|
+
<div class="name">lock</div>
|
|
1163
|
+
<div class="code-name">#icon-lock</div>
|
|
1164
|
+
</li>
|
|
1165
|
+
|
|
1120
1166
|
<li class="dib">
|
|
1121
1167
|
<svg class="icon svg-icon" aria-hidden="true">
|
|
1122
1168
|
<use xlink:href="#icon-big_arrow"></use>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
@font-face {
|
|
2
2
|
font-family: "hqchart_drawtool"; /* Project id 4529603 */
|
|
3
|
-
src: url('iconfont.woff2?t=
|
|
4
|
-
url('iconfont.woff?t=
|
|
5
|
-
url('iconfont.ttf?t=
|
|
3
|
+
src: url('iconfont.woff2?t=1724304295473') format('woff2'),
|
|
4
|
+
url('iconfont.woff?t=1724304295473') format('woff'),
|
|
5
|
+
url('iconfont.ttf?t=1724304295473') format('truetype');
|
|
6
6
|
}
|
|
7
7
|
|
|
8
8
|
.hqchart_drawtool {
|
|
@@ -13,6 +13,14 @@
|
|
|
13
13
|
-moz-osx-font-smoothing: grayscale;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
+
.icon-unlock:before {
|
|
17
|
+
content: "\e7fa";
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.icon-lock:before {
|
|
21
|
+
content: "\e7fb";
|
|
22
|
+
}
|
|
23
|
+
|
|
16
24
|
.icon-big_arrow:before {
|
|
17
25
|
content: "\e6a5";
|
|
18
26
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
window._iconfont_svg_string_4529603='<svg><symbol id="icon-big_arrow" viewBox="0 0 1024 1024"><path d="M667.72764401 688.196267L848.930133 215.540622c7.054222-18.386489-11.002311-36.443022-29.3888-29.3888l-472.655644 181.202489c-15.382756 5.893689-19.592533 25.691022-7.941689 37.341867l62.828089 62.828089c8.886044 8.886044 8.886044 23.29031099 0 32.17635599l-215.847822 215.847822c-8.886044 8.886044-8.886044 23.29031099 0 32.17635602l102.172444 102.17244399c8.886044 8.886044 23.29031099 8.886044 32.176356-1e-8L536.098133 634.038044c8.886044-8.886044 23.29031099-8.886044 32.17635599 0l62.11128901 62.11128901C642.036622 707.800178 661.822578 703.5904 667.72764401 688.196267z" ></path></symbol><symbol id="icon-bottom-arrow-solid" viewBox="0 0 1024 1024"><path d="M123.13092432 868.62788926l483.61779822-483.6177982L651.52814838 429.78951694 167.91035017 913.40731516l-44.77942585-44.7794259z" fill="" ></path><path d="M470.02687089 253.73323269L883.37383167 146.26302321l-103.33674013 417.48043011-310.01022065-310.01022063z" fill="" ></path></symbol><symbol id="icon-biankuang" viewBox="0 0 1024 1024"><path d="M880 112H144a32 32 0 0 0-32 32v736a32 32 0 0 0 32 32h736a32 32 0 0 0 32-32V144a32 32 0 0 0-32-32z m-40 728H184V184h656v656z" fill="#000000" fill-opacity=".65" ></path></symbol><symbol id="icon-tubiao_shuipingshexian" viewBox="0 0 1024 1024"><path d="M192 674.133333c-76.8 0-136.533333-64-136.533333-136.533333s64-136.533333 136.533333-136.533333c64 0 119.466667 46.933333 136.533333 106.666666H938.666667c17.066667 0 34.133333 12.8 34.133333 34.133334s-17.066667 21.333333-34.133333 21.333333H328.533333c-17.066667 64-72.533333 110.933333-136.533333 110.933333z m0-213.333333c-42.666667 0-76.8 34.133333-76.8 76.8s34.133333 76.8 76.8 76.8 76.8-34.133333 76.8-76.8-34.133333-76.8-76.8-76.8z" ></path></symbol><symbol id="icon-qushixianjiaodu" viewBox="0 0 1024 1024"><path d="M182.857143 917.942857c-40.228571 0-73.142857-32.914286-73.142857-73.142857s32.914286-73.142857 73.142857-73.142857 73.142857 32.914286 73.142857 73.142857-32.914286 73.142857-73.142857 73.142857z m0-109.714286c-18.285714 0-36.571429 14.628571-36.571429 36.571429 0 18.285714 14.628571 36.571429 36.571429 36.571429 18.285714 0 36.571429-14.628571 36.571428-36.571429s-18.285714-36.571429-36.571428-36.571429z" fill="" ></path><path d="M205.568 781.202286L784.091429 211.529143l25.636571 26.038857L231.241143 807.277714z" fill="" ></path><path d="M841.142857 252.342857c-40.228571 0-73.142857-32.914286-73.142857-73.142857s32.914286-73.142857 73.142857-73.142857 73.142857 32.914286 73.142857 73.142857-32.914286 73.142857-73.142857 73.142857z m0-109.714286c-18.285714 0-36.571429 14.628571-36.571428 36.571429 0 18.285714 14.628571 36.571429 36.571428 36.571429 18.285714 0 36.571429-14.628571 36.571429-36.571429s-18.285714-36.571429-36.571429-36.571429zM256 826.514286h588.8v36.571428H256z" fill="" ></path><path d="M486.4 859.428571l-25.6-25.6c43.885714-47.542857 58.514286-87.771429 51.2-128-3.657143-21.942857-18.285714-40.228571-29.257143-54.857142-18.285714-14.628571-40.228571-32.914286-65.828571-47.542858l14.628571-32.914285c3.657143 0 43.885714 18.285714 76.8 54.857143 29.257143 29.257143 43.885714 58.514286 47.542857 91.428571 7.314286 80.457143-65.828571 138.971429-69.485714 142.628571z" fill="" ></path></symbol><symbol id="icon-infoline" viewBox="0 0 1024 1024"><path d="M895.26856 640.58734h-191.706329a127.80422 127.80422 0 0 0-127.80422 127.80422v127.80422a127.80422 127.80422 0 0 0 127.80422 127.80422h191.706329a127.80422 127.80422 0 0 0 127.80422-127.80422v-127.80422a127.80422 127.80422 0 0 0-127.80422-127.80422z m63.90211 255.60844a63.90211 63.90211 0 0 1-63.90211 63.90211h-191.706329a63.90211 63.90211 0 0 1-63.90211-63.90211v-127.80422a63.90211 63.90211 0 0 1 63.90211-63.90211h191.706329a63.90211 63.90211 0 0 1 63.90211 63.90211zM821.781134 182.409212a95.853165 95.853165 0 1 0-45.370498-45.370498l-639.0211 639.021099a95.853165 95.853165 0 1 0 45.370498 45.370498z m17.892591-107.994566a31.951055 31.951055 0 1 1 0 45.370498 31.951055 31.951055 0 0 1 0-46.009519zM118.218903 885.971442a31.951055 31.951055 0 1 1 0-45.370498 31.951055 31.951055 0 0 1 0 45.370498z" ></path></symbol><symbol id="icon-zitibeijingse" viewBox="0 0 1024 1024"><path d="M500.6336 124.6208L107.6736 512h776.6528L500.6336 124.6208z m434.432 362.0352a51.2 51.2 0 0 1 0 72.448l-398.2336 398.2336a51.2 51.2 0 0 1-72.3968 0L66.2016 559.104a51.2 51.2 0 0 1 0-72.448L464.384 88.4224a52.224 52.224 0 0 1 0.512-0.512l-0.512-0.512a51.1488 51.1488 0 0 1 72.3456 0l398.336 399.2576zM947.2 921.6c-42.3936 0-76.8-38.1952-76.8-85.3504 0-31.3856 25.6-88.2688 76.8-170.6496 51.2 82.3808 76.8 139.264 76.8 170.6496 0 47.104-34.4064 85.3504-76.8 85.3504z" fill="#5E80EB" ></path></symbol><symbol id="icon-zitiyanse" viewBox="0 0 1024 1024"><path d="M438.613333 1.024L146.033778 768.227556h139.150222l60.643556-179.029334h297.358222l65.479111 179.029334h139.150222L555.235556 1.024H438.613333z m55.921778 163.043556l107.064889 318.008888H382.691556l111.843555-318.065777v0.056889zM85.333333 1024h818.403556v-153.429333H85.333333z" fill="#CF1322" ></path></symbol><symbol id="icon-huabi" viewBox="0 0 1024 1024"><path d="M134.7 876.6l315.8-94.1c4.7-1.4 9-3.9 12.4-7.4L781.4 453c1.2-1.1 2.2-2.5 3-3.9l114.4-114.3c11.7-11.7 18.2-27.3 18.2-43.9 0.1-16.5-6.4-32.4-18.1-44L733.4 81.6c-23.5-23.5-64.5-23.4-87.9 0l-118 117.9c-1.2 1.1-2.2 2.4-3.1 3.9L206 521.9c-3.2 3.2-5.6 7.1-7 11.4l-99.9 307c-3.2 10.2-0.6 21.3 6.8 28.9 7.5 7.6 18.6 10.5 28.8 7.4z m551.5-754.4c2.4-2.4 4.2-2.5 6.6 0l165.5 165.4c0.9 0.8 1.4 2 1.3 3.2 0 1.3-0.5 2.5-1.4 3.3l-97.4 97.4-172-172 97.4-97.3zM548.6 260.6l172.1 172.1-267.5 270.6-19.7-70.9-88.7-0.9 0.3-90.2-61.8-15.4 265.3-265.3zM245.5 576.4l41.8 9.5v74.5c0 7.6 3 14.9 8.4 20.3s12.7 8.4 20.3 8.4h73.2l13.8 47.8L170.8 806l74.7-229.6zM884.6 895.6H130c-17.8 0-32.3 14.5-32.3 32.3 0 17.8 14.5 32.3 32.3 32.3h754.6c17.8 0 32.3-14.5 32.3-32.3 0-17.8-14.4-32.3-32.3-32.3z" fill="" ></path></symbol><symbol id="icon-tuodong" viewBox="0 0 1024 1024"><path d="M341.333333 85.333333h101.973334v101.973334H341.333333V85.333333z m231.765334 0h101.973333v101.973334h-101.973333V85.333333zM341.333333 326.4h101.973334v101.973333H341.333333V326.4z m231.765334 0h101.973333v101.973333h-101.973333V326.4zM341.333333 567.381333h101.973334v101.973334H341.333333v-101.973334z m231.765334 0h101.973333v101.973334h-101.973333v-101.973334zM341.333333 808.490667h101.973334v101.973333H341.333333v-101.973333z m231.765334 0h101.973333v101.973333h-101.973333v-101.973333z" fill="#9FAABA" ></path></symbol><symbol id="icon-jiance" viewBox="0 0 1024 1024"><path d="M512 1024c-4.266667 0-8.533333 0-12.8-4.266667C213.333333 925.866667 42.666667 708.266667 42.666667 430.933333V170.666667c0-17.066667 12.8-34.133333 29.866666-42.666667l426.666667-128h25.6l426.666667 128c17.066667 8.533333 29.866667 25.6 29.866666 42.666667v260.266666c0 273.066667-170.666667 494.933333-456.533333 588.8-4.266667 4.266667-8.533333 4.266667-12.8 4.266667zM128 200.533333v230.4c0 234.666667 140.8 418.133333 384 503.466667 243.2-85.333333 384-268.8 384-503.466667V200.533333L512 85.333333 128 200.533333z" ></path><path d="M563.2 704c-12.8 0-25.6-8.533333-29.866667-21.333333l-76.8-230.4-21.333333 68.266666c-4.266667 12.8-17.066667 21.333333-29.866667 21.333334H298.666667c-17.066667 0-34.133333-12.8-34.133334-34.133334s12.8-34.133333 34.133334-34.133333h85.333333L426.666667 341.333333c4.266667-12.8 17.066667-21.333333 29.866666-21.333333s25.6 8.533333 29.866667 21.333333l76.8 230.4 21.333333-68.266666c4.266667-12.8 17.066667-21.333333 29.866667-21.333334H725.333333c17.066667 0 34.133333 12.8 34.133334 34.133334s-12.8 34.133333-34.133334 34.133333h-85.333333L597.333333 682.666667c-4.266667 12.8-17.066667 21.333333-34.133333 21.333333z" ></path></symbol><symbol id="icon-tubiao_shizixian" viewBox="0 0 1024 1024"><path d="M896 469.333333h-256c-4.266667 0-12.8 0-17.066667 4.266667-12.8-34.133333-38.4-59.733333-72.533333-72.533333 4.266667-4.266667 4.266667-12.8 4.266667-17.066667V128c0-25.6-17.066667-42.666667-42.666667-42.666667s-42.666667 17.066667-42.666667 42.666667v256c0 4.266667 0 12.8 4.266667 17.066667-34.133333 12.8-59.733333 38.4-72.533333 72.533333-4.266667-4.266667-12.8-4.266667-17.066667-4.266667H128c-25.6 0-42.666667 17.066667-42.666667 42.666667s17.066667 42.666667 42.666667 42.666667h256c4.266667 0 12.8 0 17.066667-4.266667 12.8 34.133333 38.4 59.733333 72.533333 72.533333-4.266667 4.266667-4.266667 12.8-4.266667 17.066667v256c0 25.6 17.066667 42.666667 42.666667 42.666667s42.666667-17.066667 42.666667-42.666667v-256c0-4.266667 0-12.8-4.266667-17.066667 34.133333-12.8 59.733333-38.4 72.533333-72.533333 4.266667 4.266667 12.8 4.266667 17.066667 4.266667h256c25.6 0 42.666667-17.066667 42.666667-42.666667s-17.066667-42.666667-42.666667-42.666667z m-384 93.866667c-29.866667 0-51.2-25.6-51.2-51.2s25.6-51.2 51.2-51.2 51.2 25.6 51.2 51.2-21.333333 51.2-51.2 51.2z" ></path></symbol><symbol id="icon-xifu" viewBox="0 0 1024 1024"><path d="M449 62l138.6 126-84.6 91.8-138.6-126L449 62z m370.8 336.6l138.6 126-84.6 93.6-138.6-126 84.6-93.6z m-104.4 117l-189 207C468.8 787.4 369.8 791 305 733.4c-64.8-57.6-68.4-156.6-10.8-221.4l189-208.8-138.6-126-189 208.8C26 526.4 36.8 744.2 177.2 872c140.4 127.8 358.2 117 486-23.4l190.8-207-138.6-126z" ></path></symbol><symbol id="icon-maodianwenzi" viewBox="0 0 1024 1024"><path d="M124.342857 117.028571h530.285714v36.571429H124.342857z" fill="" ></path><path d="M373.028571 135.314286h29.257143v753.371428h-29.257143zM124.342857 135.314286h29.257143v76.8h-29.257143zM625.371429 135.314286h29.257142v76.8h-29.257142z" fill="" ></path><path d="M296.228571 870.4h190.171429v36.571429H296.228571z" fill="" ></path><path d="M716.8 486.4h36.571429v387.657143h-36.571429z" fill="" ></path><path d="M735.085714 906.971429c-113.371429 0-193.828571-124.342857-193.828571-128l29.257143-18.285715s73.142857 109.714286 164.571428 109.714286c54.857143 0 106.057143-36.571429 153.6-109.714286l29.257143 21.942857c-54.857143 80.457143-117.028571 124.342857-182.857143 124.342858z" fill="" ></path><path d="M632.685714 643.657143h204.8v36.571428h-204.8z" fill="" ></path><path d="M735.085714 519.314286m-43.885714 0a43.885714 43.885714 0 1 0 87.771429 0 43.885714 43.885714 0 1 0-87.771429 0Z" fill="" ></path><path d="M735.085714 581.485714c-32.914286 0-62.171429-29.257143-62.171428-62.171428 0-32.914286 29.257143-62.171429 62.171428-62.171429s62.171429 29.257143 62.171429 62.171429c-3.657143 32.914286-29.257143 62.171429-62.171429 62.171428z m0-87.771428c-14.628571 0-25.6 10.971429-25.6 25.6s10.971429 25.6 25.6 25.6 25.6-10.971429 25.6-25.6-14.628571-25.6-25.6-25.6z" fill="" ></path></symbol><symbol id="icon-maodian" viewBox="0 0 1024 1024"><path d="M511.146667 286.08a150.762667 150.762667 0 0 0-147.626667 121.6 150.613333 150.613333 0 0 0 90.453333 168.533333 150.826667 150.826667 0 0 0 183.04-55.68 150.592 150.592 0 0 0-18.986666-190.293333 150.058667 150.058667 0 0 0-106.88-44.16zM512 60.16c97.92 0 191.786667 39.68 259.84 109.653333 143.36 147.626667 143.36 381.653333 0 529.28L512 963.84 252.16 699.093333c-143.36-147.626667-143.36-381.653333 0-529.28C320.213333 99.626667 414.08 60.16 512 60.16z" fill="#148AFF" ></path></symbol><symbol id="icon-feibonaqisuduzulishan" viewBox="0 0 1024 1024"><path d="M658.285714 438.857143c-3.657143-10.971429-14.628571-21.942857-25.6-29.257143-3.657143 0-3.657143-3.657143-7.314285-3.657143-10.971429-7.314286-21.942857-7.314286-32.914286-7.314286-40.228571 0-73.142857 32.914286-73.142857 73.142858 0 14.628571 3.657143 25.6 10.971428 36.571428 7.314286 10.971429 14.628571 18.285714 25.6 25.6h3.657143c10.971429 7.314286 21.942857 7.314286 32.914286 7.314286 10.971429 0 18.285714-3.657143 29.257143-7.314286 3.657143 0 10.971429-3.657143 14.628571-7.314286 10.971429-7.314286 18.285714-18.285714 21.942857-29.257142 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143 0-7.314286-3.657143-18.285714-7.314286-29.257143z m-54.857143 69.485714H585.142857c-7.314286 0-10.971429-3.657143-18.285714-7.314286-3.657143-3.657143-7.314286-10.971429-10.971429-14.628571V475.428571c0-18.285714 10.971429-29.257143 25.6-36.571428h10.971429c3.657143 0 10.971429 0 14.628571 3.657143 3.657143 0 10.971429 3.657143 10.971429 7.314285 7.314286 3.657143 10.971429 10.971429 10.971428 21.942858v3.657142c0 14.628571-10.971429 29.257143-25.6 32.914286zM226.742857 866.742857c-3.657143-29.257143-21.942857-51.2-47.542857-62.171428-7.314286-3.657143-14.628571-3.657143-25.6-3.657143h-10.971429c-36.571429 7.314286-62.171429 36.571429-62.171428 73.142857 0 40.228571 32.914286 73.142857 73.142857 73.142857 29.257143 0 54.857143-18.285714 65.828571-43.885714 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143v-7.314286z m-73.142857 43.885714c-21.942857 0-36.571429-18.285714-36.571429-36.571428 0-21.942857 18.285714-36.571429 36.571429-36.571429s36.571429 14.628571 36.571429 36.571429-18.285714 36.571429-36.571429 36.571428z" fill="" ></path><path d="M735.085714 885.028571c0 7.314286-14.628571 10.971429-10.971428 18.285715H201.142857v-36.571429h522.971429c-3.657143 3.657143 10.971429 10.971429 10.971428 18.285714z" fill="" ></path><path d="M943.542857 866.742857v36.571429h-237.714286c3.657143-3.657143 3.657143-10.971429 3.657143-18.285715s0-10.971429-3.657143-18.285714h237.714286zM208.457143 420.571429c3.657143 0 7.314286-3.657143 10.971428-3.657143l-3.657142 113.371428-7.314286 292.571429v10.971428h-36.571429v-3.657142l7.314286-299.885715 3.657143-113.371428c3.657143 3.657143 14.628571 3.657143 25.6 3.657143z" fill="" ></path><path d="M226.742857 84.114286L219.428571 387.657143v36.571428c-7.314286-3.657143-18.285714-7.314286-25.6-3.657142-3.657143 0-7.314286 0-10.971428 3.657142v-40.228571l7.314286-303.542857 36.571428 3.657143zM164.900571 817.517714l363.629715-684.726857 32.292571 17.152-363.629714 684.726857zM197.632 844.032l717.677714-216.758857 10.605715 35.035428-717.714286 216.722286z" fill="" ></path><path d="M566.857143 501.028571c3.657143 3.657143 10.971429 7.314286 18.285714 7.314286l-29.257143 29.257143-343.771428 325.485714-25.6-25.6 343.771428-321.828571 29.257143-25.6s3.657143 7.314286 7.314286 10.971428zM932.571429 179.2L658.285714 438.857143l-29.257143 29.257143c0-10.971429-3.657143-18.285714-10.971428-21.942857-3.657143-3.657143-7.314286-7.314286-10.971429-7.314286l29.257143-25.6 274.285714-259.657143 21.942858 25.6z" fill="" ></path><path d="M190.171429 449.828571h351.085714v36.571429H190.171429z" fill="" ></path><path d="M588.8 526.628571h36.571429v354.742858h-36.571429z" fill="" ></path></symbol><symbol id="icon-feibonaqihuiche" viewBox="0 0 1024 1024"><path d="M201.142857 804.571429c-7.314286-32.914286-36.571429-58.514286-73.142857-58.514286s-65.828571 25.6-69.485714 58.514286c0 3.657143-3.657143 10.971429-3.657143 14.628571 0 7.314286 0 14.628571 3.657143 21.942857 10.971429 29.257143 36.571429 51.2 69.485714 51.2 32.914286 0 62.171429-21.942857 69.485714-51.2 3.657143-7.314286 3.657143-14.628571 3.657143-21.942857V804.571429z m-73.142857 51.2c-14.628571 0-21.942857-7.314286-29.257143-14.628572-3.657143-7.314286-7.314286-14.628571-7.314286-21.942857 0-7.314286 0-10.971429 3.657143-14.628571 7.314286-14.628571 18.285714-21.942857 32.914286-21.942858s25.6 7.314286 32.914286 21.942858c3.657143 3.657143 3.657143 10.971429 3.657143 14.628571 0 7.314286-3.657143 14.628571-7.314286 21.942857-3.657143 10.971429-14.628571 14.628571-29.257143 14.628572z" fill="" ></path><path d="M654.628571 822.857143c0 7.314286-25.6 10.971429-21.942857 18.285714h-438.857143v-36.571428h424.228572c0 3.657143 36.571429 10.971429 36.571428 18.285714z" fill="" ></path><path d="M969.142857 804.571429v36.571428h-351.085714c3.657143-7.314286 7.314286-14.628571 7.314286-21.942857 0-7.314286 0-10.971429-3.657143-14.628571h347.428571zM822.857143 416.914286c0 7.314286 0 14.628571 3.657143 21.942857 10.971429 29.257143 36.571429 51.2 69.485714 51.2 32.914286 0 62.171429-21.942857 69.485714-51.2 3.657143-7.314286 3.657143-14.628571 3.657143-21.942857 0-3.657143 0-10.971429-3.657143-14.628572-7.314286-32.914286-36.571429-58.514286-69.485714-58.514285-36.571429 0-65.828571 25.6-73.142857 58.514285v14.628572z m40.228571 21.942857c-3.657143-7.314286-7.314286-14.628571-7.314285-21.942857 0-7.314286 0-10.971429 3.657142-14.628572 7.314286-14.628571 18.285714-21.942857 32.914286-21.942857s25.6 7.314286 32.914286 21.942857c3.657143 3.657143 3.657143 10.971429 3.657143 14.628572 0 7.314286-3.657143 14.628571-7.314286 21.942857-7.314286 7.314286-18.285714 14.628571-29.257143 14.628571-10.971429 0-21.942857-3.657143-29.257143-14.628571z" fill="" ></path><path d="M369.371429 420.571429c0 7.314286 25.6 10.971429 21.942857 18.285714h438.857143v-36.571429H405.942857c0 3.657143-36.571429 10.971429-36.571428 18.285715z" fill="" ></path><path d="M54.857143 402.285714v36.571429h351.085714c-3.657143-7.314286-7.314286-14.628571-7.314286-21.942857 0-7.314286 0-10.971429 3.657143-14.628572H54.857143z" fill="" ></path><path d="M599.771429 621.714286c0 7.314286-29.257143 10.971429-25.6 18.285714H54.857143v-36.571429h501.028571c0 3.657143 43.885714 10.971429 43.885715 18.285715z" fill="" ></path><path d="M969.142857 603.428571v36.571429H555.885714c3.657143-7.314286 7.314286-14.628571 7.314286-21.942857 0-7.314286 0-10.971429-3.657143-14.628572h409.6z" fill="" ></path><path d="M424.228571 219.428571c0 7.314286 29.257143 10.971429 25.6 18.285715h515.657143v-36.571429H468.114286c0 3.657143-43.885714 10.971429-43.885715 18.285714z" fill="" ></path><path d="M54.857143 201.142857v36.571429h413.257143c-3.657143-7.314286-7.314286-14.628571-7.314286-21.942857 0-7.314286 0-10.971429 3.657143-14.628572H54.857143z" fill="" ></path></symbol><symbol id="icon-feibonaqiqixing" viewBox="0 0 1024 1024"><path d="M219.428571 753.371429h-14.628571c-7.314286 0-14.628571 0-21.942857 3.657142-7.314286 0-10.971429 3.657143-18.285714 7.314286-10.971429 7.314286-18.285714 14.628571-25.6 25.6-3.657143 10.971429-7.314286 21.942857-7.314286 36.571429 0 32.914286 21.942857 62.171429 51.2 69.485714 7.314286 3.657143 14.628571 3.657143 21.942857 3.657143 3.657143 0 10.971429 0 14.628571-3.657143 10.971429-3.657143 18.285714-7.314286 29.257143-14.628571 7.314286-3.657143 18.285714-14.628571 21.942857-25.6 3.657143-7.314286 7.314286-18.285714 7.314286-29.257143 0-36.571429-25.6-65.828571-58.514286-73.142857z m18.285715 80.457142c-3.657143 10.971429-10.971429 18.285714-18.285715 25.6 0 0-3.657143 0-7.314285 3.657143h-10.971429c-7.314286 0-14.628571-3.657143-21.942857-7.314285-7.314286-7.314286-14.628571-18.285714-14.628571-29.257143v-3.657143c0-10.971429 7.314286-18.285714 14.628571-25.6 3.657143 0 3.657143-3.657143 7.314286-3.657143s7.314286-3.657143 14.628571-3.657143 10.971429 0 14.628572 3.657143c14.628571 7.314286 21.942857 18.285714 21.942857 32.914286 3.657143 3.657143 3.657143 3.657143 0 7.314285z" fill="" ></path><path d="M263.314286 808.228571h508.342857v36.571429H263.314286zM186.514286 256h36.571428v504.685714h-36.571428z" fill="" ></path><path d="M826.514286 753.371429h-14.628572c-7.314286 0-14.628571 0-21.942857 3.657142-7.314286 0-10.971429 3.657143-18.285714 7.314286-10.971429 7.314286-18.285714 14.628571-25.6 25.6-3.657143 10.971429-7.314286 21.942857-7.314286 36.571429 0 32.914286 21.942857 62.171429 51.2 69.485714 7.314286 3.657143 14.628571 3.657143 21.942857 3.657143 3.657143 0 10.971429 0 14.628572-3.657143 10.971429-3.657143 18.285714-7.314286 29.257143-14.628571 10.971429-7.314286 18.285714-18.285714 21.942857-29.257143 3.657143-7.314286 7.314286-18.285714 7.314285-29.257143 0-32.914286-25.6-62.171429-58.514285-69.485714z m18.285714 80.457142c-3.657143 10.971429-10.971429 18.285714-18.285714 25.6 0 0-3.657143 0-7.314286 3.657143h-10.971429c-7.314286 0-14.628571-3.657143-21.942857-7.314285-7.314286-7.314286-14.628571-18.285714-14.628571-29.257143v-3.657143c0-10.971429 7.314286-18.285714 14.628571-25.6 3.657143 0 3.657143-3.657143 7.314286-3.657143s7.314286-3.657143 14.628571-3.657143 10.971429 0 14.628572 3.657143c14.628571 7.314286 21.942857 18.285714 21.942857 32.914286 3.657143 3.657143 3.657143 3.657143 0 7.314285zM219.428571 146.285714h-14.628571c-7.314286 0-14.628571 0-21.942857 3.657143-7.314286 0-10.971429 3.657143-18.285714 7.314286-10.971429 7.314286-18.285714 14.628571-25.6 25.6-3.657143 10.971429-7.314286 25.6-7.314286 36.571428 0 32.914286 21.942857 62.171429 51.2 69.485715 7.314286 3.657143 14.628571 3.657143 21.942857 3.657143 3.657143 0 10.971429 0 14.628571-3.657143 10.971429-3.657143 18.285714-7.314286 29.257143-14.628572 7.314286-3.657143 18.285714-14.628571 21.942857-25.6 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143 0-36.571429-25.6-65.828571-58.514286-73.142857z m18.285715 80.457143c0 10.971429-7.314286 21.942857-18.285715 25.6 0 0-3.657143 0-7.314285 3.657143h-7.314286c-7.314286 0-14.628571-3.657143-21.942857-7.314286-7.314286-7.314286-14.628571-18.285714-14.628572-29.257143v-3.657142c0-10.971429 7.314286-18.285714 14.628572-25.6 3.657143 0 3.657143-3.657143 7.314286-3.657143 3.657143-3.657143 7.314286-3.657143 14.628571-3.657143 3.657143 0 10.971429 0 14.628571 3.657143 14.628571 7.314286 21.942857 18.285714 21.942858 32.914285 0 3.657143 0 7.314286-3.657143 7.314286zM416.914286 830.171429l-36.571429-7.314286c7.314286-58.514286-3.657143-106.057143-32.914286-142.628572-10.971429-14.628571-25.6-25.6-36.571428-32.914285-25.6-18.285714-58.514286-29.257143-98.742857-36.571429l3.657143-36.571428c3.657143 0 58.514286 3.657143 113.371428 40.228571 25.6 14.628571 43.885714 32.914286 58.514286 58.514286 47.542857 73.142857 29.257143 153.6 29.257143 157.257143z" fill="" ></path><path d="M522.971429 837.485714l-36.571429-7.314285c10.971429-102.4-7.314286-186.514286-58.514286-248.685715-21.942857-25.6-43.885714-43.885714-69.485714-62.171428-43.885714-25.6-102.4-43.885714-168.228571-54.857143l3.657142-36.571429c3.657143 0 102.4 7.314286 190.171429 65.828572 40.228571 25.6 69.485714 54.857143 95.085714 91.428571 76.8 117.028571 47.542857 248.685714 43.885715 252.342857z" fill="" ></path><path d="M629.028571 837.485714l-36.571428-7.314285c14.628571-135.314286-10.971429-245.028571-80.457143-329.142858-29.257143-32.914286-58.514286-58.514286-91.428571-80.457142-58.514286-36.571429-131.657143-62.171429-219.428572-76.8l3.657143-36.571429c7.314286 0 131.657143 10.971429 245.028571 87.771429 47.542857 32.914286 87.771429 69.485714 120.685715 117.028571 98.742857 149.942857 62.171429 321.828571 58.514285 325.485714z" fill="" ></path></symbol><symbol id="icon-feibonaqizhouqixian" viewBox="0 0 1024 1024"><path d="M52.244898 975.245061v-919.510204h83.591837v919.510204H52.244898zM198.530612 975.245061v-919.510204h83.591837v919.510204H198.530612zM344.816327 975.245061v-919.510204h83.591836v919.510204h-83.591836zM553.795918 975.245061v-919.510204h83.591837v919.510204h-83.591837zM888.163265 975.245061v-919.510204h83.591837v919.510204h-83.591837z" ></path></symbol><symbol id="icon-jiangenjiaoduxian" viewBox="0 0 1024 1024"><path d="M658.285714 438.857143c-3.657143-10.971429-14.628571-21.942857-25.6-29.257143-3.657143 0-3.657143-3.657143-7.314285-3.657143-10.971429-7.314286-21.942857-7.314286-32.914286-7.314286-40.228571 0-73.142857 32.914286-73.142857 73.142858 0 14.628571 3.657143 25.6 10.971428 36.571428 7.314286 10.971429 14.628571 18.285714 25.6 25.6h3.657143c10.971429 7.314286 21.942857 7.314286 32.914286 7.314286 10.971429 0 18.285714-3.657143 29.257143-7.314286 3.657143 0 10.971429-3.657143 14.628571-7.314286 10.971429-7.314286 18.285714-18.285714 21.942857-29.257142 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143 0-10.971429-3.657143-21.942857-7.314286-29.257143z m-54.857143 65.828571H585.142857c-7.314286 0-10.971429-3.657143-18.285714-7.314285-3.657143-3.657143-7.314286-10.971429-10.971429-14.628572v-10.971428c0-18.285714 10.971429-29.257143 25.6-36.571429h10.971429c3.657143 0 10.971429 0 14.628571 3.657143 3.657143 0 10.971429 3.657143 10.971429 7.314286 7.314286 3.657143 10.971429 10.971429 10.971428 21.942857v3.657143c0 14.628571-10.971429 29.257143-25.6 32.914285zM226.742857 863.085714c-3.657143-29.257143-21.942857-51.2-47.542857-62.171428-7.314286-3.657143-14.628571-3.657143-25.6-3.657143h-10.971429c-36.571429 7.314286-62.171429 36.571429-62.171428 73.142857 0 40.228571 32.914286 73.142857 73.142857 73.142857 29.257143 0 54.857143-18.285714 65.828571-43.885714 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143v-7.314286z m-73.142857 43.885715c-21.942857 0-36.571429-18.285714-36.571429-36.571429 0-21.942857 18.285714-36.571429 36.571429-36.571429s36.571429 14.628571 36.571429 36.571429-18.285714 36.571429-36.571429 36.571429z" fill="" ></path><path d="M735.085714 881.371429c0 7.314286-14.628571 10.971429-10.971428 18.285714H201.142857v-36.571429h522.971429c-3.657143 3.657143 10.971429 10.971429 10.971428 18.285715z" fill="" ></path><path d="M943.542857 863.085714v36.571429h-237.714286c3.657143-3.657143 3.657143-10.971429 3.657143-18.285714s0-10.971429-3.657143-18.285715h237.714286zM263.314286 405.942857h10.971428l-25.6 109.714286-69.485714 285.257143-3.657143 10.971428-36.571428-7.314285v-3.657143L208.457143 512l25.6-109.714286c10.971429 0 18.285714 3.657143 29.257143 3.657143z" fill="" ></path><path d="M351.085714 84.114286l-69.485714 296.228571-7.314286 36.571429c-7.314286-7.314286-14.628571-10.971429-25.6-10.971429h-10.971428l10.971428-36.571428L314.514286 73.142857l36.571428 10.971429zM164.754286 813.970286l363.593143-684.763429 32.329142 17.188572-363.629714 684.726857z" fill="" ></path><path d="M197.558857 840.411429l717.714286-216.758858 10.605714 34.998858L208.091429 875.410286z" fill="" ></path><path d="M566.857143 497.371429c3.657143 3.657143 10.971429 7.314286 18.285714 7.314285l-29.257143 29.257143-343.771428 325.485714-25.6-25.6 343.771428-321.828571 29.257143-25.6s3.657143 7.314286 7.314286 10.971429zM932.571429 175.542857L658.285714 438.857143l-29.257143 29.257143c0-10.971429-3.657143-18.285714-10.971428-21.942857-3.657143-3.657143-7.314286-7.314286-10.971429-7.314286l29.257143-25.6 274.285714-259.657143 21.942858 21.942857z" fill="" ></path></symbol><symbol id="icon-GoldenSection" viewBox="0 0 1024 1024"><path d="M960.5 170.7v55.1h-897v-55.1h897z m0 156.9v55.1H510.8v-55.1h449.7z m0 156.9v55.1H510.8v-55.1h449.7zM334.3 263.7c43 0 79.8 10.2 94.1 14.7-1 16.8-4.1 48.3-5.6 84.9l-17.4 1.5c-4.1-62.5-37.8-80.3-83.9-80.3-83.4 0-147.8 79.8-147.8 179.4 0 78.8 38.9 131.1 104.3 131.1 24.5 0 43-7.1 48.6-35.6l8.7-45.2c7.2-38.6 3.6-40.7-48.1-45.7l4.1-15.8H436l-4.1 15.8c-28.6 4.1-31.7 6.6-38.9 45.7l-7.7 41.7c-3.1 15.2-4.1 29-2.6 39.1-31.7 8.1-71.1 19.8-113.5 19.8-96.7 0-162.6-52.9-162.6-148.4 0.1-120.8 95.3-202.7 227.7-202.7z m626.2 377.6v55.1h-897v-55.1h897z m0 156.9v55.1h-897v-55.1h897z" ></path></symbol><symbol id="icon-PercentageLine" viewBox="0 0 1024 1024"><path d="M960.5 170.7v55.2h-897v-55.2h897z m0 156.8v55.2H510.7v-55.2h449.8z m-764.2-24.7v104.6H91.1V302.8h105.2z m764.2 181.6v55.2H510.7v-55.2h449.8z m-501.1-24.7v104.6H354.2V459.7h105.2zM367.1 290l38.9 39.1-19.6 19.4-223.2 221.9-19.6 19.4-38.9-39.1 19.6-19.4 223.2-221.9 19.6-19.4z m593.4 351.3v55.2h-897v-55.2h897z m0 156.9v55.2h-897v-55.2h897z" ></path></symbol><symbol id="icon-a-xiangpicachuxiangpica" viewBox="0 0 1024 1024"><path d="M554.3 850.7L981 424c12.5-12.5 12.5-32.8 0-45.3L636.7 34.6c-12.5-12.5-32.8-12.5-45.3 0L90.5 535.5c-50 50-50 131 0 181l272.1 270.3c24 23.8 56.4 37.2 90.2 37.2H864c17.7 0 32-14.3 32-32s-14.3-32-32-32H599.5c-57 0-85.6-68.9-45.2-109.3z m71.1-736.9l276.4 276.4c6.2 6.2 6.2 16.4 0 22.6L607.9 706.6l-299-299 293.8-293.9c6.3-6.2 16.4-6.2 22.7 0.1zM135.8 580.7l127.9-127.9 299 299-127.9 127.9c-25 25-65.5 25-90.5 0L135.8 671.3c-25-25-25-65.6 0-90.6z" fill="#8A8A8A" ></path></symbol><symbol id="icon-jiagefanwei" viewBox="0 0 1024 1024"><path d="M576 629.312h138.688l-160 213.376-160-213.376H512V192h64v437.312zM832 896v-64h192v192h-192v-64H0v-64h832zM192 128v64H0V0h192v64h832v64H192zM64 64v64h64V64H64z m832 832v64h64v-64h-64z m-373.312-202.688l32 42.688 32-42.688h-64z" fill="#767D87" ></path></symbol><symbol id="icon-shijianfanwei" viewBox="0 0 1024 1024"><path d="M614.4 512V409.6l170.65 128-170.65 128V563.2H256V512h358.4z m256 256h51.2v153.6H768V768h51.2V102.4h51.2V768zM153.6 256h-51.2V102.4H256V256h-51.2v665.6h-51.2V256z m0-102.4v51.2h51.2v-51.2h-51.2z m665.6 665.6v51.2h51.2v-51.2h-51.2zM665.6 512v51.2l34.15-25.6L665.6 512z" fill="#767D87" ></path></symbol><symbol id="icon-buxiangjiaojiao" viewBox="0 0 1024 1024"><path d="M84.114286 512c-36.571429-14.628571-58.514286-54.857143-43.885715-95.085714s54.857143-58.514286 95.085715-43.885715c36.571429 14.628571 58.514286 54.857143 43.885714 95.085715S120.685714 526.628571 84.114286 512z m36.571428-102.4c-18.285714-7.314286-40.228571 0-47.542857 21.942857-7.314286 18.285714 0 40.228571 21.942857 47.542857 18.285714 7.314286 40.228571 0 47.542857-21.942857 7.314286-21.942857-3.657143-40.228571-21.942857-47.542857z" fill="" ></path><path d="M153.6 394.971429l625.371429-277.942858 14.628571 32.914286-625.371429 277.942857z" fill="" ></path><path d="M815.542857 168.228571c-36.571429-14.628571-58.514286-54.857143-43.885714-95.085714 14.628571-36.571429 54.857143-58.514286 95.085714-43.885714s58.514286 54.857143 43.885714 95.085714-54.857143 58.514286-95.085714 43.885714z m40.228572-102.4c-18.285714-7.314286-40.228571 0-47.542858 21.942858-7.314286 18.285714 0 40.228571 21.942858 47.542857 18.285714 7.314286 40.228571 0 47.542857-21.942857s-3.657143-40.228571-21.942857-47.542858zM190.171429 614.4c18.285714 36.571429 7.314286 80.457143-29.257143 98.742857s-80.457143 7.314286-98.742857-29.257143-7.314286-80.457143 29.257142-98.742857c32.914286-18.285714 80.457143-3.657143 98.742858 29.257143z m-32.914286 18.285714c-10.971429-18.285714-32.914286-21.942857-51.2-14.628571-18.285714 10.971429-21.942857 32.914286-14.628572 51.2 10.971429 18.285714 32.914286 21.942857 51.2 14.628571s25.6-32.914286 14.628572-51.2z" fill="" ></path><path d="M186.514286 658.285714l658.285714 190.171429-10.971429 36.571428L179.2 694.857143z" fill="" ></path><path d="M961.828571 859.428571c18.285714 36.571429 7.314286 80.457143-29.257142 98.742858s-80.457143 7.314286-98.742858-29.257143-7.314286-80.457143 29.257143-98.742857c36.571429-21.942857 80.457143-7.314286 98.742857 29.257142z m-29.257142 14.628572c-10.971429-18.285714-32.914286-21.942857-51.2-14.628572-18.285714 10.971429-21.942857 32.914286-14.628572 51.2 10.971429 18.285714 32.914286 21.942857 51.2 14.628572 14.628571-10.971429 21.942857-29.257143 14.628572-51.2z" fill="" ></path></symbol><symbol id="icon-tubiao_buxiangjiaotongdao" viewBox="0 0 1024 1024"><path d="M192 473.6c8.533333 0 21.333333 0 29.866667-4.266667 51.2-12.8 81.066667-55.466667 85.333333-106.666666h21.333333l371.2-98.133334c4.266667 0 12.8-4.266667 17.066667-8.533333 8.533333 12.8 21.333333 25.6 38.4 34.133333 17.066667 8.533333 38.4 17.066667 59.733333 17.066667 8.533333 0 21.333333 0 29.866667-4.266667 64-17.066667 98.133333-81.066667 81.066667-145.066666s-81.066667-98.133333-145.066667-81.066667c-29.866667 8.533333-55.466667 25.6-72.533333 55.466667-8.533333 17.066667-12.8 34.133333-17.066667 51.2h-17.066667L302.933333 281.6c-4.266667 0-12.8 4.266667-17.066666 8.533333-25.6-38.4-76.8-59.733333-128-46.933333-59.733333 17.066667-98.133333 81.066667-81.066667 140.8 12.8 55.466667 59.733333 89.6 115.2 89.6z m571.733333-311.466667c8.533333-12.8 17.066667-21.333333 34.133334-25.6 29.866667-8.533333 59.733333 8.533333 64 38.4s-8.533333 59.733333-38.4 64c-12.8 4.266667-29.866667 0-38.4-4.266666-12.8-8.533333-21.333333-17.066667-25.6-34.133334-8.533333-8.533333-4.266667-25.6 4.266666-38.4zM174.933333 302.933333c29.866667-8.533333 59.733333 8.533333 68.266667 38.4 8.533333 29.866667-8.533333 59.733333-38.4 64-29.866667 8.533333-59.733333-8.533333-68.266667-34.133333-4.266667-29.866667 12.8-59.733333 38.4-68.266667zM840.533333 755.2c-29.866667-8.533333-64-4.266667-89.6 12.8-17.066667 8.533333-29.866667 21.333333-38.4 34.133333-4.266667-4.266667-8.533333-8.533333-17.066666-8.533333l-371.2-98.133333h-17.066667c-4.266667-46.933333-38.4-89.6-85.333333-106.666667-64-17.066667-128 21.333333-145.066667 81.066667-8.533333 29.866667-4.266667 64 12.8 89.6 17.066667 25.6 42.666667 46.933333 72.533333 55.466666 8.533333 4.266667 21.333333 4.266667 29.866667 4.266667 21.333333 0 38.4-4.266667 59.733333-17.066667 17.066667-8.533333 29.866667-21.333333 38.4-34.133333 4.266667 4.266667 8.533333 8.533333 17.066667 8.533333l371.2 98.133334h21.333333c0 17.066667 4.266667 34.133333 17.066667 51.2 17.066667 25.6 42.666667 46.933333 72.533333 55.466666 8.533333 4.266667 21.333333 4.266667 29.866667 4.266667 51.2 0 98.133333-34.133333 115.2-85.333333 8.533333-29.866667 4.266667-64-12.8-89.6-25.6-29.866667-51.2-46.933333-81.066667-55.466667z m-597.333333-38.4c-4.266667 12.8-12.8 25.6-25.6 34.133333-12.8 8.533333-25.6 8.533333-38.4 4.266667-12.8-4.266667-25.6-12.8-34.133333-25.6-8.533333-12.8-8.533333-25.6-4.266667-38.4 4.266667-25.6 29.866667-38.4 51.2-38.4h12.8c25.6 4.266667 42.666667 34.133333 38.4 64z m614.4 166.4c-8.533333 29.866667-38.4 46.933333-64 38.4-12.8-4.266667-25.6-12.8-34.133333-25.6-8.533333-12.8-8.533333-25.6-4.266667-38.4 4.266667-12.8 12.8-25.6 25.6-34.133333 8.533333-4.266667 17.066667-8.533333 25.6-8.533334h12.8c12.8 4.266667 25.6 12.8 34.133333 25.6s8.533333 25.6 4.266667 42.666667z" ></path></symbol><symbol id="icon-drawicon_1" viewBox="0 0 1024 1024"><path d="M510.981095 4.075622L91.19204 508.943284h261.349254V1024h310.256716V508.943284h268.991045z" fill="#FF1F14" ></path></symbol><symbol id="icon-drawicon_2" viewBox="0 0 1024 1024"><path d="M512 1024l419.789055-504.867662h-261.349254V4.075622H360.183085v515.056716H91.19204z" fill="#03F838" ></path></symbol><symbol id="icon-tooltiptext" viewBox="0 0 1024 1024"><path d="M170.666667 85.333333 853.333333 85.333333C900.266667 85.333333 938.666667 123.733333 938.666667 170.666667L938.666667 682.666667C938.666667 729.6 900.266667 768 853.333333 768L682.666667 768 512 938.666667 341.333333 768 170.666667 768C123.733333 768 85.333333 729.6 85.333333 682.666667L85.333333 170.666667C85.333333 123.733333 123.733333 85.333333 170.666667 85.333333M213.333333 213.333333 213.333333 298.666667 810.666667 298.666667 810.666667 213.333333 213.333333 213.333333M213.333333 384 213.333333 469.333333 640 469.333333 640 384 213.333333 384M213.333333 554.666667 213.333333 640 725.333333 640 725.333333 554.666667 213.333333 554.666667Z" ></path></symbol><symbol id="icon-Tooltip" viewBox="0 0 1102 1024"><path d="M0 109.714286a73.142857 73.142857 0 0 1 73.142857-73.142857h841.142857a73.142857 73.142857 0 0 1 73.142857 73.142857V658.285714a73.142857 73.142857 0 0 1-73.142857 73.142857h-658.285714a73.142857 73.142857 0 0 0-58.514286 29.257143L0 1024V109.714286z m914.285714 0H73.142857V804.571429l65.828572-87.771429A146.285714 146.285714 0 0 1 256 658.285714h658.285714V109.714286z" ></path></symbol><symbol id="icon-fangkuai" viewBox="0 0 1024 1024"><path d="M65.166185 65.144696l893.016807 0 0 893.016807-893.016807 0 0-893.016807Z" fill="#f1f1f1" ></path></symbol><symbol id="icon-draw_quadrangle" viewBox="0 0 1024 1024"><path d="M353.7 378.4h-47.1L93 651.8h47.1z" fill="#748696" ></path><path d="M913.1 341.3H335.6l-29 37.1h624.6l29-37.1z" fill="#748696" ></path><path d="M884.1 378.4L670.6 651.8H93l-29 37.1h624.6l27-34.6 215.6-275.9z" fill="#748696" ></path></symbol><symbol id="icon-arrow" viewBox="0 0 1024 1024"><path d="M570.3 939.6c-11.7 0-23-6.5-28.6-17.7l-95.2-190.1-137 102.7c-9.7 7.3-22.6 8.4-33.5 3-10.8-5.4-17.7-16.4-17.7-28.5l-2.7-672.9c-0.1-12.7 7.4-24.2 19-29.4 11.6-5.2 25.1-3 34.5 5.5l496.4 449.2c9 8.1 12.6 20.6 9.4 32.2-3.2 11.7-12.7 20.5-24.6 22.9l-165.5 33.1L717.2 834c3.8 7.6 4.4 16.4 1.8 24.4-2.7 8.1-8.5 14.7-16 18.5l-118.3 59.2c-4.7 2.5-9.6 3.5-14.4 3.5zM457.8 651.3c2.4 0 4.9 0.3 7.3 0.9 9.2 2.2 17 8.3 21.3 16.8l98.1 195.8 61.1-30.6-96.8-193.3c-4.5-8.9-4.5-19.4-0.1-28.4s12.7-15.4 22.5-17.3l144.3-28.9-395.6-357.9 2.1 536.7 116.6-87.4c5.6-4.2 12.4-6.4 19.2-6.4z" fill="#231815" ></path></symbol><symbol id="icon-draw_arc" viewBox="0 0 1024 1024"><path d="M 186 63.9 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.7 -37 82.7 -82.7 82.7 Z M 839.6 717.1 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.6 -37 82.7 -82.7 82.7 Z M 698.9 197.5 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.2 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 s -37 82.7 -82.7 82.7 Z" fill="#748696" ></path><path d="M 364.3 164.8 c -21.6 0 -43 1.4 -63.9 4.1 c -4.1 0.5 -7.2 4 -7.2 8.2 v 21.7 c 0 5 4.5 8.9 9.4 8.2 c 20.8 -2.9 42 -4.4 63.5 -4.4 c 91.6 0 177 26.8 248.7 72.9 c 5.5 3.6 12.8 -0.4 12.8 -6.9 v -23.8 c 0 -2.9 -1.5 -5.6 -3.9 -7 c -75.5 -46.3 -164.3 -73 -259.4 -73 Z M 772.2 377.7 v 20.9 h -29.4 c 52.5 74.8 83.3 165.8 83.3 264.1 c 0 26.5 -2.3 52.5 -6.6 77.8 h 35.7 c 4.1 -25.6 6.2 -51.8 6.2 -78.5 c 0.2 -105.7 -32.9 -203.7 -89.2 -284.3 Z" fill="#748696" ></path></symbol><symbol id="icon-draw_line" viewBox="0 0 1024 1024"><path d="M236.1 757.3l533.6-524 25.9 26.6-533.7 524z" fill="#748696" ></path><path d="M837.2 66.4c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM185 717.3c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path></symbol><symbol id="icon-draw_rays" viewBox="0 0 1024 1024"><path d="M238.6 760.3l408.2-399.7 26.2 26.3-408.2 399.7z" fill="#748696" ></path><path d="M717.2 186.4c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM185 717.3c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M800.8 253.5l158.5-151.6-25.9-26.6L774 228.1c10.2 7 19.2 15.6 26.8 25.4z" fill="#748696" ></path></symbol><symbol id="icon-rectangle" viewBox="0 0 1024 1024"><path d="M 273.9 168.3 H 739 v 37.1 H 273.9 Z M 273.9 819.6 H 739 v 37.1 H 273.9 Z M 165.812 740.898 v -465.1 h 37.1 v 465.1 Z M 821.11 740.896 v -465.1 h 37.1 v 465.1 Z" fill="#748696" ></path><path d="M 184.7 66.2 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.7 -37 82.7 -82.7 82.7 Z M 184.7 717.5 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.6 -37 82.7 -82.7 82.7 Z M 840 717.5 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.6 -37 82.7 -82.7 82.7 Z M 840 66.2 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.7 -37 82.7 -82.7 82.7 Z" fill="#748696" ></path></symbol><symbol id="icon-draw_parallel_lines" viewBox="0 0 1024 1024"><path d="M 242.242 556.785 l 333.663 -324.036 l 25.847 26.616 L 268.09 583.4 Z" fill="#748696" ></path><path d="M 643.4 65.9 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.2 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 s -37 82.7 -82.7 82.7 Z" fill="#748696" ></path><path d="M 801.1 593.9 L 959.3 442 l -25.9 -26.6 l -159.1 153.1 c 10.2 7 19.2 15.6 26.8 25.4 Z M 603.8 733.9 L 396.6 933.4 l 25.4 26.2 l 206.3 -198.2 c -9.5 -7.9 -17.7 -17.2 -24.5 -27.5 Z M 773.4 620.8 c 9.2 13.3 14.6 29.5 14.6 47 c 0 45.7 -37 82.7 -82.7 82.7 c -18.4 0 -35.4 -6 -49.1 -16.2 l -27.9 27 c 20.9 17.3 47.8 27.7 77.1 27.7 c 66.8 0 121 -54.2 121 -121 c 0 -27.9 -9.4 -53.6 -25.3 -74 l -27.7 26.8 Z M 622.5 667.8 c 0 -45.7 37 -82.7 82.7 -82.7 c 14.9 0 28.8 3.9 40.8 10.8 l 28.2 -27.4 c -19.6 -13.6 -43.3 -21.6 -69 -21.6 c -66.8 0 -121 54.2 -121 121 c 0 24.3 7.2 46.9 19.5 65.9 l 28.3 -27.5 c -6 -11.4 -9.5 -24.6 -9.5 -38.5 Z" fill="#748696" ></path><path d="M 773.4 620.8 l 27.8 -26.9 c -7.6 -9.8 -16.6 -18.4 -26.8 -25.4 l -28.2 27.4 c 10.8 6.1 20.1 14.7 27.2 24.9 Z M 632.1 706.4 l -28.3 27.5 c 6.7 10.3 15 19.6 24.5 27.4 l 27.9 -27 c -10 -7.3 -18.2 -16.9 -24.1 -27.9 Z M 185.2 522.8 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.2 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 s -37 82.7 -82.7 82.7 Z" fill="#748696" ></path></symbol><symbol id="icon-setting" viewBox="0 0 1024 1024"><path d="M 810.342 334.848 c 16.384 29.184 45.824 46.592 78.592 46.592 c 27.392 0 49.818 22.938 49.818 51.302 v 158.67 c 0 28.16 -22.426 51.2 -49.818 51.2 c -32.87 0 -62.208 17.458 -78.592 46.694 a 94.72 94.72 0 0 0 0 93.286 a 52.07 52.07 0 0 1 -18.278 69.99 L 658.688 931.84 a 49.152 49.152 0 0 1 -67.994 -18.637 a 89.344 89.344 0 0 0 -78.592 -46.745 c -32.768 0 -62.208 17.408 -78.592 46.643 a 49.51 49.51 0 0 1 -43.264 25.6 a 48.589 48.589 0 0 1 -24.73 -6.861 l -133.58 -79.258 a 50.637 50.637 0 0 1 -23.245 -31.078 a 51.763 51.763 0 0 1 4.967 -38.912 a 94.72 94.72 0 0 0 0 -93.286 a 89.446 89.446 0 0 0 -78.592 -46.644 c -27.392 0 -49.818 -23.04 -49.818 -51.25 v -158.72 c 0 -28.16 22.426 -51.2 49.818 -51.2 c 32.768 0 62.208 -17.46 78.592 -46.695 a 94.72 94.72 0 0 0 0 -93.287 a 51.968 51.968 0 0 1 18.227 -69.939 l 133.53 -79.309 a 48.998 48.998 0 0 1 67.993 18.74 a 89.446 89.446 0 0 0 157.184 0 a 49.05 49.05 0 0 1 68.096 -18.842 l 133.376 79.36 c 23.808 14.131 32 45.517 18.278 69.99 a 94.72 94.72 0 0 0 0 93.287 Z M 512 750.899 A 239.258 239.258 0 0 0 750.95 512 A 239.411 239.411 0 0 0 512 273.05 A 239.36 239.36 0 0 0 273.05 512 A 239.36 239.36 0 0 0 512 750.95 Z" fill="#748696" ></path><path d="M 512 642.406 A 130.611 130.611 0 0 1 381.594 512 A 130.611 130.611 0 0 1 512 381.594 A 130.611 130.611 0 0 1 642.406 512 A 130.56 130.56 0 0 1 512 642.406" fill="#748696" ></path></symbol><symbol id="icon-recycle_bin" viewBox="0 0 1024 1024"><path d="M 609.522 769.748 c -17.717 0 -32.041 -14.324 -32.041 -32.04 v -352.46 c 0 -17.718 14.324 -32.042 32.041 -32.042 c 17.718 0 32.042 14.324 32.042 32.042 v 352.46 c 0 17.716 -14.324 32.04 -32.042 32.04 Z m -192.25 0 c -17.718 0 -32.042 -14.324 -32.041 -32.04 v -352.46 c 0 -17.718 14.323 -32.042 32.041 -32.042 s 32.042 14.324 32.042 32.042 v 352.46 c 0 17.716 -14.324 32.04 -32.042 32.04 Z m 512.669 -544.71 H 769.732 v -64.083 c 0 -52.996 -42.777 -96.125 -95.39 -96.125 H 353.187 c -52.997 0 -96.125 43.129 -96.125 96.125 v 64.084 H 96.853 c -17.717 0 -32.041 14.323 -32.041 32.041 c 0 17.718 14.324 32.042 32.042 32.042 h 833.085 c 17.717 0 32.042 -14.324 32.042 -32.042 c 0 -17.717 -14.322 -32.041 -32.04 -32.041 Z m -608.795 -64.083 c 0 -17.656 14.384 -32.041 32.042 -32.041 H 674.34 c 17.558 0 31.308 14.066 31.308 32.041 v 64.084 H 321.146 v -64.084 Z M 737.82 962 H 289.171 c -53 0 -96.125 -43.127 -96.125 -96.126 V 384.768 c 0 -17.689 14.353 -32.042 32.042 -32.042 c 17.685 0 32.041 14.353 32.041 32.042 v 481.106 c 0 17.687 14.387 32.043 32.042 32.043 h 448.65 c 17.682 0 32.04 -14.356 32.04 -32.043 V 386.081 c 0 -17.688 14.32 -32.042 32.043 -32.042 c 17.718 0 32.041 14.354 32.041 32.042 v 479.792 c 0 53.002 -43.132 96.127 -96.126 96.127 Z" fill="#748696" ></path></symbol><symbol id="icon-draw_trendline" viewBox="0 0 1024 1024"><path d="M714 177.3c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM301.8 598.2c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M959.5 90.4L806.4 243.5l-26.2-26.2L933.3 64.2zM663.9 386.5L397.3 653.2 371 627l266.7-266.7zM246.3 803.7L90.4 959.6l-26.2-26.3 155.9-155.9z" fill="#748696" ></path></symbol><symbol id="icon-draw_goldensection" viewBox="0 0 1024 1024"><path d="M92.5 184.4h845.2v37.1H92.5zM93 802.4h845.2v37.1H93zM92.8 670.3H938v37.1H92.8zM370.1 578.5c-29.9 17-63.6 25.5-101.2 25.5-43.3 0-78.2-13.7-104.6-41.1-26.5-27.4-39.7-63.9-39.7-109.6 0-46.2 14.6-84.2 43.9-114 29.2-29.8 66.7-44.6 112.4-44.6 32.3 0 59.7 5.2 82.1 15.5v41.7c-24-15.1-52.5-22.6-85.6-22.6-32.6 0-59.4 11.1-80.6 33.4-21.1 22.3-31.7 51.7-31.7 88.1 0 37.5 9.7 66.7 29.2 87.5 19.4 20.9 45.7 31.3 78.8 31.3 22.8 0 42.2-4.4 58.2-13.1v-81h-64.9v-34.2h103.8v137.2z" fill="#748696" ></path></symbol><symbol id="icon-draw_gannfan" viewBox="0 0 1024 1024"><path d="M64 63.9h37.1v895.7H64z" fill="#748696" ></path><path d="M84.475 913.272l849.439-849.44 26.233 26.234-849.439 849.44z" fill="#748696" ></path><path d="M71.998 925.89L943.86 519.35l15.678 33.623-871.86 406.541z" fill="#748696" ></path><path d="M65.179 943.878l406.54-871.861 33.624 15.678-406.54 871.861z" fill="#748696" ></path><path d="M64 922.5h895.7v37.1H64z" fill="#748696" ></path></symbol><symbol id="icon-draw_percentage" viewBox="0 0 1024 1024"><path d="M92 184.4h845.2v37.1H92zM92 802.4h845.2v37.1H92zM92 670.3h845.2v37.1H92zM486.3 508.3h450v37.1h-450zM486.3 346.4h450v37.1h-450zM112.6 378.9c0-22.8 6.1-40.9 18.2-54.3 12.2-13.4 28.5-20.1 49.2-20.1 19.8 0 35.2 6.2 46.3 18.5 11.1 12.3 16.6 29.5 16.6 51.6 0 21.9-6.1 39.7-18.3 53.4-12.2 13.7-28.5 20.5-48.7 20.5-19.2 0-34.5-6.3-46-19.1-11.5-12.7-17.3-29.5-17.3-50.5z m27.7-1.8c0 15.5 3.4 27.4 10.1 35.8 6.7 8.4 15.9 12.6 27.5 12.6 12 0 21.2-4.3 27.8-13 6.5-8.7 9.8-20.9 9.8-36.8 0-15.5-3.2-27.4-9.6-35.9-6.4-8.4-15.4-12.7-27.1-12.7-11.9 0-21.2 4.4-28.1 13.2-6.9 8.9-10.4 21.1-10.4 36.8z m224-68.4L185.4 588.9h-30l178.8-280.2h30.1z m-84.9 213.1c0-22.8 6.1-40.9 18.2-54.5 12.2-13.6 28.5-20.4 49-20.4 19.7 0 35 6.2 46.2 18.6s16.7 29.9 16.7 52.4c0 21.8-6.2 39.5-18.5 53.1-12.3 13.6-28.5 20.4-48.3 20.4-19.3 0-34.7-6.4-46.1-19.3-11.4-12.9-17.2-29.7-17.2-50.3z m27.5-1.6c0 15.1 3.4 26.9 10.1 35.3 6.7 8.4 15.9 12.7 27.5 12.7 12 0 21.2-4.4 27.8-13.1 6.5-8.7 9.8-21 9.8-36.7 0-15.6-3.3-27.5-9.8-35.8-6.5-8.3-15.5-12.4-26.9-12.4-12.2 0-21.7 4.4-28.4 13.2-6.7 8.9-10.1 21.1-10.1 36.8z" fill="#748696" ></path></symbol><symbol id="icon-draw_waveband" viewBox="0 0 1024 1024"><path d="M92 184.4h845.2v37.1H92zM92 802.4h845.2v37.1H92zM92 670.3h845.2v37.1H92zM486.3 508.3h450v37.1h-450zM486.3 346.4h450v37.1h-450zM298.7 607.9h-97.5v-11.2h16.9c6.2 0 10.6-1.3 13.1-3.8s3.7-6.3 3.7-11.3V317.4c0-10-0.6-15.7-1.9-17-1.3-1.3-6.3-1.9-15-1.9-17.5 0-29.7 3.2-36.6 9.7-6.9 6.4-15.3 23.8-25.3 52.2l-11.2-1.9 16.9-71.2H340l15 71.2-9.4 1.9c-10-27.1-17.8-44.1-23.4-51.2-5.6-7.1-17.2-10.6-34.7-10.6-12.5 0-19.4 0.6-20.6 1.9-1.3 1.3-1.9 7.5-1.9 18.8v262.2c0 5 1.6 8.8 4.7 11.3s7.2 3.8 12.2 3.8h16.9v11.3z" fill="#748696" ></path></symbol><symbol id="icon-draw_resline" viewBox="0 0 1024 1024"><path d="M70.768 939.52l622.178-622.178 13.717 13.718L84.486 953.237z" fill="#748696" ></path><path d="M74.678 936.093l773.28-281.432 6.429 17.666L81.107 953.76z" fill="#748696" ></path><path d="M69.06 942.134l286.527-787.281 19.545 7.114-286.527 787.28z" fill="#748696" ></path><path d="M959.7 959.6H64l12-37.1h883.7z" fill="#748696" ></path></symbol><symbol id="icon-draw_text" viewBox="0 0 1024 1024"><path d="M647.5 959.3H375.2v-31.4h47.1c17.4 0 29.6-3.5 36.7-10.6 7-7 10.5-17.5 10.5-31.6V148c0-28.1-1.8-43.9-5.2-47.4-3.5-3.5-17.5-5.3-41.9-5.3-48.9 0-83 9-102.1 27-19.2 18-42.8 66.6-70.7 145.8l-31.4-5.2 47.1-199h497.5l41.9 199-26.2 5.2c-28-75.6-49.7-123.3-65.5-143.1-15.7-19.8-48-29.7-96.9-29.7-34.9 0-54.2 1.8-57.6 5.3-3.5 3.5-5.2 21-5.2 52.6v732.5c0 14.1 4.3 24.5 13.1 31.6 8.7 7 20 10.6 34 10.6h47.1v31.4z" fill="#748696" ></path></symbol><symbol id="icon-draw_parallelchannel" viewBox="0 0 1024 1024"><path d="M242.242 556.785l333.663-324.036 25.847 26.616L268.09 583.4z" fill="#748696" ></path><path d="M643.4 65.9c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M801.1 593.9L959.3 442l-25.9-26.6-159.1 153.1c10.2 7 19.2 15.6 26.8 25.4zM603.8 733.9L396.6 933.4l25.4 26.2 206.3-198.2c-9.5-7.9-17.7-17.2-24.5-27.5zM773.4 620.8c9.2 13.3 14.6 29.5 14.6 47 0 45.7-37 82.7-82.7 82.7-18.4 0-35.4-6-49.1-16.2l-27.9 27c20.9 17.3 47.8 27.7 77.1 27.7 66.8 0 121-54.2 121-121 0-27.9-9.4-53.6-25.3-74l-27.7 26.8zM622.5 667.8c0-45.7 37-82.7 82.7-82.7 14.9 0 28.8 3.9 40.8 10.8l28.2-27.4c-19.6-13.6-43.3-21.6-69-21.6-66.8 0-121 54.2-121 121 0 24.3 7.2 46.9 19.5 65.9l28.3-27.5c-6-11.4-9.5-24.6-9.5-38.5z" fill="#748696" ></path><path d="M773.4 620.8l27.8-26.9c-7.6-9.8-16.6-18.4-26.8-25.4l-28.2 27.4c10.8 6.1 20.1 14.7 27.2 24.9zM632.1 706.4l-28.3 27.5c6.7 10.3 15 19.6 24.5 27.4l27.9-27c-10-7.3-18.2-16.9-24.1-27.9zM185.2 522.8c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path></symbol><symbol id="icon-draw_wavemw" viewBox="0 0 1024 1024"><path d="M507.5 269.2L307 826.9h-37.4L63.7 194.5H102l189.5 565.9c15.8-45.6 32-91.3 48.7-137.1 16.7-45.9 32.9-91.9 48.7-138L490 203.7h36.4l200.5 556.8c15.8-46.8 31.9-93.2 48.3-139.4s32.8-92.9 49.2-140.3L923 194.5h37.4l-216 632.4h-34.6L507.5 269.2z" fill="#748696" ></path></symbol><symbol id="icon-draw_triangle" viewBox="0 0 1024 1024"><path d="M185.8 63.9c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM838.2 716.7c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM186.2 715.6c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M287.2 818.1h447.6v37H287.2zM167.319 733.019v-451h37v451zM750.725 776.404L235.673 261.353l26.163-26.163L776.887 750.24z" fill="#748696" ></path></symbol><symbol id="icon-draw_pricechannel" viewBox="0 0 1024 1024"><path d="M189.9 191.4c-47.2 47.2-47.2 123.9 0 171.1s123.9 47.2 171.1 0 47.2-123.9 0-171.1-123.8-47.2-171.1 0z m143.9 144c-32.3 32.3-84.6 32.3-117 0s-32.3-84.6 0-117 84.6-32.3 117 0 32.3 84.7 0 117z" fill="#748696" ></path><path d="M336.266 190.085L462.484 63.867l26.162 26.163L362.43 216.248zM66.391 459.906L190.416 335.88l26.163 26.163L92.554 486.068zM636.5 214.9c-47.2 47.2-47.2 123.9 0 171.1 47.2 47.2 123.9 47.2 171.1 0 47.2-47.2 47.2-123.9 0-171.1-47.3-47.2-123.9-47.2-171.1 0z m143.8 144c-32.3 32.3-84.6 32.3-117 0-32.3-32.3-32.3-84.6 0-117 32.3-32.3 84.6-32.3 117 0s32.3 84.7 0 117zM222.5 630.6c-47.2 47.2-47.2 123.9 0 171.1 47.2 47.2 123.9 47.2 171.1 0 47.2-47.2 47.2-123.9 0-171.1s-123.8-47.3-171.1 0z m143.8 143.9c-32.3 32.3-84.6 32.3-117 0s-32.3-84.6 0-117c32.3-32.3 84.6-32.3 117 0 32.4 32.4 32.4 84.7 0 117z" fill="#748696" ></path><path d="M779.835 216.483l152.31-152.31 26.162 26.164-152.309 152.309zM242.663 805.981L90 958.644l-26.163-26.163L216.5 779.82zM658.982 389.674L388.658 659.998l-26.163-26.163L632.82 363.511zM527.694 931.128l404.178-404.179 26.163 26.163-404.179 404.179z" fill="#748696" ></path></symbol><symbol id="icon-draw_circle" viewBox="0 0 1024 1024"><path d="M532.138 469.26l274.426-274.426 26.163 26.163L558.3 495.423z" fill="#748696" ></path><path d="M697.4 65.9H325.5l-263 263v371.9l263 263h371.9l263-263V328.9l-263-263z m225.5 619.3l-241 241H341l-241-241V344.4l241-241h340.8l241 241v340.8z" fill="#748696" ></path><path d="M511.1 513.2m-121.2 0a121.2 121.2 0 1 0 242.4 0 121.2 121.2 0 1 0-242.4 0Z" fill="#748696" ></path></symbol><symbol id="icon-draw_symangle" viewBox="0 0 1024 1024"><path d="M485.845 771.49l448.302-448.3 26.163 26.162-448.302 448.302z" fill="#748696" ></path><path d="M512.217 797.631L64.764 350.178l26.163-26.162L538.38 771.469z" fill="#748696" ></path><path d="M494.6 226.1v535.7l17.5 35.9 20.7-20.6-1.2-16.1V226.1z" fill="#748696" ></path></symbol><symbol id="icon-draw_hline" viewBox="0 0 1024 1024"><path d="M512.6 390.1c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M606 492.6h353.4v37H606zM64.5 492.6h340.1v37H64.5z" fill="#748696" ></path></symbol><symbol id="icon-linear_1" viewBox="0 0 1024 1024"><path d="M804.11648 936.36608l3.54816-848.896 35.84 0.1536-3.54816 848.896z" fill="#748696" ></path><path d="M192.09216 444.73344l625.664-285.22496 14.86336 32.6144-625.664 285.21984zM192.1024 692.5312l625.65888-285.21984 14.86336 32.6144-625.664 285.21984z" fill="#748696" ></path><path d="M180.224 964.096l3.072-876.544h35.84l-2.56 821.248 601.088-273.408 14.848 32.768z" fill="#748696" ></path></symbol><symbol id="icon-linear_2" viewBox="0 0 1024 1024"><path d="M732.22144 923.04384l3.55328-848.896 35.84 0.14848-3.55328 848.896z" fill="#748696" ></path><path d="M120.36096 431.38048l625.664-285.21984 14.86848 32.60928-625.664 285.21984zM120.3712 679.18336l625.65888-285.22496 14.86336 32.6144-625.664 285.21984z" fill="#748696" ></path><path d="M108.544 951.296l2.56-877.056h35.84l-2.56 821.248 601.6-273.408 14.848 32.768z" fill="#748696" ></path><path d="M120.22784 431.1552l780.2368-358.39488 14.95552 32.56832L135.18848 463.7184zM120.22784 678.95296l780.2368-358.38976 14.95552 32.5632L135.18848 711.5264zM119.20384 907.07456l781.04064-357.83168 14.92992 32.58368-781.04064 357.83168z" fill="#748696" ></path></symbol><symbol id="icon-linear_3" viewBox="0 0 1024 1024"><path d="M832.52736 936.62208l3.55328-848.896 35.84 0.1536-3.55328 848.896z" fill="#748696" ></path><path d="M164.096 692.38784l683.19744-285.2608 13.80864 33.0752L177.90464 725.4528z" fill="#748696" ></path><path d="M152.064 936.38144l3.07712-848.896 35.84 0.13312-3.07712 848.896z" fill="#748696" ></path></symbol><symbol id="icon-ruler" viewBox="0 0 1024 1024"><path d="M178.176 316.928h35.84v151.552h-35.84zM390.144 316.928h35.84v151.552h-35.84zM284.16 316.928h35.84v151.552h-35.84zM601.6 316.928h35.84v151.552h-35.84zM495.616 316.928h35.84v151.552h-35.84zM707.584 316.928h35.84v151.552h-35.84zM813.056 316.928h35.84v151.552h-35.84z" fill="#748696" ></path><path d="M973.824 727.04H50.176V296.96h923.136v430.08z m-887.808-35.84h851.456V332.8H86.016v358.4z" fill="#748696" ></path></symbol><symbol id="icon-price_line" viewBox="0 0 1024 1024"><path d="M262.144 663.04c-8.192-38.912-43.008-68.608-84.48-68.608-47.616 0-86.528 38.912-86.528 86.528s38.912 86.528 86.528 86.528c41.472 0 76.288-29.184 84.48-68.608h658.432v-35.84H262.144z m-84.48 77.312c-32.768 0-58.88-26.624-58.88-58.88 0-32.768 26.624-58.88 58.88-58.88 26.624 0 48.64 17.408 56.32 40.96 1.536 5.632 2.56 11.776 2.56 17.92 0 6.144-1.024 12.288-2.56 17.92-7.68 23.552-29.696 40.96-56.32 40.96zM91.648 331.776v-37.888h7.68c24.064 0 41.472-5.12 53.248-15.872 9.728-8.704 14.336-19.456 14.336-31.744h44.544V522.24H157.184V331.776H91.648zM362.496 343.552H309.76c0-38.912 11.776-66.56 35.84-82.432 14.848-10.24 33.28-15.36 54.272-15.36 27.648 0 50.176 7.68 68.096 23.04s26.624 36.864 26.624 64c0 20.992-6.144 39.424-18.432 55.808-8.192 10.752-20.992 22.528-38.912 34.304-11.264 8.192-22.528 15.872-33.792 23.552-15.36 11.264-24.576 20.48-28.16 27.136h119.296v48.128H306.688c0-20.48 3.072-37.376 9.216-50.688 9.216-19.456 27.648-39.424 54.784-58.88 22.528-16.384 36.864-27.136 43.52-33.28 17.408-15.36 26.112-31.232 26.112-48.128 0-10.24-3.072-18.944-8.704-26.624-7.168-8.192-16.896-12.288-29.184-12.288-16.384 0-28.16 6.144-34.304 18.432-3.584 6.656-5.632 17.92-5.632 33.28zM626.688 400.896v-38.912h8.704c12.8 0 22.528-1.536 29.184-5.12 11.264-5.632 16.896-16.384 16.896-32.256 0-8.192-2.048-15.36-5.632-21.504-6.144-9.216-15.36-13.824-28.672-13.824-15.872 0-27.136 6.144-32.768 18.432-3.072 6.656-4.608 15.36-4.608 26.624h-50.688c0-27.136 7.168-48.128 22.016-63.488 15.872-16.384 38.912-25.088 69.12-25.088 22.528 0 40.96 5.632 56.32 16.384 19.456 13.824 29.184 33.792 29.184 60.416 0 12.8-3.584 24.576-10.24 34.304-5.632 8.192-13.312 14.336-22.528 18.432 13.312 5.12 23.552 12.8 30.72 24.064 7.168 11.264 10.752 24.576 10.752 40.96 0 26.112-8.704 47.616-26.112 64-17.408 16.384-39.936 25.088-68.096 25.088-23.04 0-41.984-4.608-57.344-13.824-25.6-14.848-38.4-40.96-38.4-78.336h53.248c-0.512 12.288 1.536 22.016 5.632 29.696 6.656 12.288 17.92 18.432 34.304 18.432 11.776 0 20.992-3.584 28.16-10.752 8.192-8.192 12.288-19.968 12.288-34.816 0-16.384-7.168-27.648-21.504-33.792-8.704-3.584-22.016-5.12-39.936-5.12z" fill="#748696" ></path></symbol><symbol id="icon-vertical_line" viewBox="0 0 1024 1024"><path d="M632.832 512c0-66.56-54.272-120.832-120.832-120.832S391.168 444.928 391.168 512 445.44 632.832 512 632.832s120.832-54.272 120.832-120.832z m-203.264-0.512c0-45.568 36.864-82.944 82.944-82.944s82.944 36.864 82.944 82.944-36.864 82.944-82.944 82.944-82.944-36.864-82.944-82.944z" fill="#748696" ></path><path d="M530.432 605.184v353.28h-36.864v-353.28h36.864z m0-541.696v339.968h-36.864V63.488h36.864z" fill="#748696" ></path></symbol><symbol id="icon-waveruler" viewBox="0 0 1024 1024"><path d="M72.704 210.944H936.96v36.864H72.704zM72.704 343.04H936.96v36.864H72.704zM72.704 475.136H936.96v36.864H72.704z" fill="#748696" ></path><path d="M76.8 872.96l-33.792-11.264c82.432-249.856 173.056-374.272 276.992-380.928 61.44-4.096 105.984 34.816 149.504 72.192 37.888 32.768 73.728 64 116.736 60.928 62.464-4.608 96.256-29.696 178.176-265.216l33.792 11.776c-83.968 242.688-123.904 283.136-209.408 289.28-57.856 4.096-100.864-33.28-142.848-69.632-39.424-34.304-76.8-66.56-123.392-63.488-86.016 5.12-170.496 128.512-245.76 356.352z" fill="#748696" ></path></symbol><symbol id="icon-draw_box" viewBox="0 0 1024 1024"><path d="M84.48 721.408h877.056v69.632H84.48zM920.576 266.24v348.16H125.44V266.24h795.136m40.96-40.96H84.48v430.08h877.056V225.28z" fill="#748696" ></path></symbol><symbol id="icon-draw_head_shoulders_bt" viewBox="0 0 1024 1024"><path d="M626.688 870.4h-1.536c-9.216-1.024-16.896-7.68-18.432-17.408L521.216 298.496 421.376 853.504c-1.536 9.216-9.728 16.384-18.944 16.896-9.216 0.512-17.92-5.632-20.992-14.848l-97.792-329.216-133.12 314.368-37.888-15.872 155.136-367.104c3.584-8.192 11.264-12.8 19.968-12.288 8.704 0.512 15.872 6.144 18.432 14.848l89.6 301.568L502.272 170.496c1.536-9.728 10.24-16.896 20.48-16.896s18.432 7.68 19.968 17.408l91.136 591.36L737.792 445.44c2.56-8.192 10.24-13.824 18.944-14.336 8.704-0.512 16.384 5.12 19.456 13.824l134.656 375.296-38.4 13.824-114.176-319.488-112.128 342.016c-2.56 8.192-10.752 13.824-19.456 13.824z" fill="#748696" ></path></symbol><symbol id="icon-draw_p_rays_lines" viewBox="0 0 1024 1024"><path d="M799.744 403.456c9.216 13.312 14.848 29.696 14.848 47.104 0 45.568-36.864 82.944-82.944 82.944-18.432 0-35.328-6.144-49.152-16.384-10.24-7.168-18.432-16.896-24.064-27.648l-17.92 17.408 17.92-17.408c-6.144-11.264-9.728-24.576-9.728-38.4 0-45.568 36.864-82.944 82.944-82.944 14.848 0 28.672 4.096 40.96 10.752l28.16-27.648c-19.456-13.824-43.52-21.504-69.12-21.504-66.56 0-120.832 54.272-120.832 120.832 0 24.064 7.168 46.592 19.456 66.048l-202.752 196.096c-20.48-16.384-46.592-26.112-75.264-26.112-66.56 0-120.832 54.272-120.832 120.832s53.76 120.832 120.32 120.832 120.832-54.272 120.832-120.832c0-25.088-7.68-48.64-20.992-68.096l202.24-195.584c20.992 17.408 47.616 27.648 77.312 27.648 66.56 0 120.832-54.272 120.832-120.832 0-27.648-9.216-53.76-25.088-74.24l-27.136 27.136z m-448 486.4c-45.568 0-82.944-36.864-82.944-82.944s36.864-82.944 82.944-82.944 82.944 36.864 82.944 82.944-36.864 82.944-82.944 82.944z" fill="#748696" ></path><path d="M827.392 376.832l158.208-152.064-26.112-26.624-159.232 153.088-28.16 27.136c10.752 6.144 19.968 14.848 27.136 25.088l28.16-26.624zM379.904 401.408c0-27.648-9.216-52.736-24.576-73.216l215.04-205.824-25.6-26.624L328.192 302.08c-19.456-13.824-43.52-22.016-69.632-22.016-66.56 0-120.832 54.272-120.832 120.832s54.272 120.832 120.832 120.832 121.344-53.76 121.344-120.32z m-204.288-0.512c0-45.568 36.864-82.944 82.944-82.944s82.944 37.376 82.944 82.944-36.864 82.944-82.944 82.944-82.944-36.864-82.944-82.944z" fill="#748696" ></path></symbol><symbol id="icon-draw_hlinesegment" viewBox="0 0 1024 1024"><path d="M276.992 489.984l471.04 6.656-0.512 37.376-471.04-6.656 0.512-37.376z" fill="#748696" ></path><path d="M926.72 427.008c-40.448-40.448-117.248-54.272-171.008 0-47.104 47.104-47.104 123.904 0 171.008s123.904 47.104 171.008 0 47.616-123.904 0-171.008z m-148.992 143.872c-32.256-32.256-32.256-84.48 0-116.736 32.256-32.256 84.48-32.256 116.736 0 32.256 32.256 32.256 84.48 0 116.736-32.256 32.256-84.48 32.256-116.736 0zM268.288 425.984C221.184 378.88 144.384 378.88 97.28 425.984s-47.104 123.904 0 171.008 123.904 47.104 171.008 0 47.104-123.904 0-171.008z m-143.872 143.872c-32.256-32.256-32.256-84.48 0-116.736 32.256-32.256 84.48-32.256 116.736 0 32.256 32.256 32.256 84.48 0 116.736-32.256 32.256-84.48 32.256-116.736 0z" fill="#748696" ></path></symbol></svg>',function(c){var l=(l=document.getElementsByTagName("script"))[l.length-1],h=l.getAttribute("data-injectcss"),l=l.getAttribute("data-disable-injectsvg");if(!l){var i,a,t,o,s,p=function(l,h){h.parentNode.insertBefore(l,h)};if(h&&!c.__iconfont__svg__cssinject__){c.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(l){console&&console.log(l)}}i=function(){var l,h=document.createElement("div");h.innerHTML=c._iconfont_svg_string_4529603,(h=h.getElementsByTagName("svg")[0])&&(h.setAttribute("aria-hidden","true"),h.style.position="absolute",h.style.width=0,h.style.height=0,h.style.overflow="hidden",h=h,(l=document.body).firstChild?p(h,l.firstChild):l.appendChild(h))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(i,0):(a=function(){document.removeEventListener("DOMContentLoaded",a,!1),i()},document.addEventListener("DOMContentLoaded",a,!1)):document.attachEvent&&(t=i,o=c.document,s=!1,d(),o.onreadystatechange=function(){"complete"==o.readyState&&(o.onreadystatechange=null,z())})}function z(){s||(s=!0,t())}function d(){try{o.documentElement.doScroll("left")}catch(l){return void setTimeout(d,50)}z()}}(window);
|
|
1
|
+
window._iconfont_svg_string_4529603='<svg><symbol id="icon-unlock" viewBox="0 0 1024 1024"><path d="M467.2 713.92c-26.752-14.72-44.8-42.304-44.8-73.92 0-47.104 40.128-85.312 89.6-85.312 49.472 0 89.6 38.208 89.6 85.312 0 31.616-18.048 59.136-44.8 73.92v115.968a44.8 44.8 0 0 1-89.6 0v-115.968zM243.2 384h448V256c0-94.272-80.256-170.688-179.2-170.688-98.944 0-179.2 76.416-179.2 170.688H243.2c0-141.44 120.32-256 268.8-256 148.48 0 268.8 114.56 268.8 256v128H960v640H64V384h179.2zM153.6 469.312v469.376h716.8V469.312H153.6z" fill="#262626" ></path></symbol><symbol id="icon-lock" viewBox="0 0 1024 1024"><path d="M153.6 469.312v469.376h716.8V469.312H153.6zM64 384h896v640H64V384z m403.2 329.92c-26.752-14.72-44.8-42.304-44.8-73.92 0-47.104 40.128-85.312 89.6-85.312 49.472 0 89.6 38.208 89.6 85.312 0 31.616-18.048 59.136-44.8 73.92v115.968a44.8 44.8 0 0 1-89.6 0v-115.968zM332.8 384h358.4V256c0-94.272-80.256-170.688-179.2-170.688-98.944 0-179.2 76.416-179.2 170.688v128zM512 0c148.48 0 268.8 114.56 268.8 256v128H243.2V256c0-141.44 120.32-256 268.8-256z" fill="#262626" ></path></symbol><symbol id="icon-big_arrow" viewBox="0 0 1024 1024"><path d="M667.72764401 688.196267L848.930133 215.540622c7.054222-18.386489-11.002311-36.443022-29.3888-29.3888l-472.655644 181.202489c-15.382756 5.893689-19.592533 25.691022-7.941689 37.341867l62.828089 62.828089c8.886044 8.886044 8.886044 23.29031099 0 32.17635599l-215.847822 215.847822c-8.886044 8.886044-8.886044 23.29031099 0 32.17635602l102.172444 102.17244399c8.886044 8.886044 23.29031099 8.886044 32.176356-1e-8L536.098133 634.038044c8.886044-8.886044 23.29031099-8.886044 32.17635599 0l62.11128901 62.11128901C642.036622 707.800178 661.822578 703.5904 667.72764401 688.196267z" ></path></symbol><symbol id="icon-bottom-arrow-solid" viewBox="0 0 1024 1024"><path d="M123.13092432 868.62788926l483.61779822-483.6177982L651.52814838 429.78951694 167.91035017 913.40731516l-44.77942585-44.7794259z" fill="" ></path><path d="M470.02687089 253.73323269L883.37383167 146.26302321l-103.33674013 417.48043011-310.01022065-310.01022063z" fill="" ></path></symbol><symbol id="icon-biankuang" viewBox="0 0 1024 1024"><path d="M880 112H144a32 32 0 0 0-32 32v736a32 32 0 0 0 32 32h736a32 32 0 0 0 32-32V144a32 32 0 0 0-32-32z m-40 728H184V184h656v656z" fill="#000000" fill-opacity=".65" ></path></symbol><symbol id="icon-tubiao_shuipingshexian" viewBox="0 0 1024 1024"><path d="M192 674.133333c-76.8 0-136.533333-64-136.533333-136.533333s64-136.533333 136.533333-136.533333c64 0 119.466667 46.933333 136.533333 106.666666H938.666667c17.066667 0 34.133333 12.8 34.133333 34.133334s-17.066667 21.333333-34.133333 21.333333H328.533333c-17.066667 64-72.533333 110.933333-136.533333 110.933333z m0-213.333333c-42.666667 0-76.8 34.133333-76.8 76.8s34.133333 76.8 76.8 76.8 76.8-34.133333 76.8-76.8-34.133333-76.8-76.8-76.8z" ></path></symbol><symbol id="icon-qushixianjiaodu" viewBox="0 0 1024 1024"><path d="M182.857143 917.942857c-40.228571 0-73.142857-32.914286-73.142857-73.142857s32.914286-73.142857 73.142857-73.142857 73.142857 32.914286 73.142857 73.142857-32.914286 73.142857-73.142857 73.142857z m0-109.714286c-18.285714 0-36.571429 14.628571-36.571429 36.571429 0 18.285714 14.628571 36.571429 36.571429 36.571429 18.285714 0 36.571429-14.628571 36.571428-36.571429s-18.285714-36.571429-36.571428-36.571429z" fill="" ></path><path d="M205.568 781.202286L784.091429 211.529143l25.636571 26.038857L231.241143 807.277714z" fill="" ></path><path d="M841.142857 252.342857c-40.228571 0-73.142857-32.914286-73.142857-73.142857s32.914286-73.142857 73.142857-73.142857 73.142857 32.914286 73.142857 73.142857-32.914286 73.142857-73.142857 73.142857z m0-109.714286c-18.285714 0-36.571429 14.628571-36.571428 36.571429 0 18.285714 14.628571 36.571429 36.571428 36.571429 18.285714 0 36.571429-14.628571 36.571429-36.571429s-18.285714-36.571429-36.571429-36.571429zM256 826.514286h588.8v36.571428H256z" fill="" ></path><path d="M486.4 859.428571l-25.6-25.6c43.885714-47.542857 58.514286-87.771429 51.2-128-3.657143-21.942857-18.285714-40.228571-29.257143-54.857142-18.285714-14.628571-40.228571-32.914286-65.828571-47.542858l14.628571-32.914285c3.657143 0 43.885714 18.285714 76.8 54.857143 29.257143 29.257143 43.885714 58.514286 47.542857 91.428571 7.314286 80.457143-65.828571 138.971429-69.485714 142.628571z" fill="" ></path></symbol><symbol id="icon-infoline" viewBox="0 0 1024 1024"><path d="M895.26856 640.58734h-191.706329a127.80422 127.80422 0 0 0-127.80422 127.80422v127.80422a127.80422 127.80422 0 0 0 127.80422 127.80422h191.706329a127.80422 127.80422 0 0 0 127.80422-127.80422v-127.80422a127.80422 127.80422 0 0 0-127.80422-127.80422z m63.90211 255.60844a63.90211 63.90211 0 0 1-63.90211 63.90211h-191.706329a63.90211 63.90211 0 0 1-63.90211-63.90211v-127.80422a63.90211 63.90211 0 0 1 63.90211-63.90211h191.706329a63.90211 63.90211 0 0 1 63.90211 63.90211zM821.781134 182.409212a95.853165 95.853165 0 1 0-45.370498-45.370498l-639.0211 639.021099a95.853165 95.853165 0 1 0 45.370498 45.370498z m17.892591-107.994566a31.951055 31.951055 0 1 1 0 45.370498 31.951055 31.951055 0 0 1 0-46.009519zM118.218903 885.971442a31.951055 31.951055 0 1 1 0-45.370498 31.951055 31.951055 0 0 1 0 45.370498z" ></path></symbol><symbol id="icon-zitibeijingse" viewBox="0 0 1024 1024"><path d="M500.6336 124.6208L107.6736 512h776.6528L500.6336 124.6208z m434.432 362.0352a51.2 51.2 0 0 1 0 72.448l-398.2336 398.2336a51.2 51.2 0 0 1-72.3968 0L66.2016 559.104a51.2 51.2 0 0 1 0-72.448L464.384 88.4224a52.224 52.224 0 0 1 0.512-0.512l-0.512-0.512a51.1488 51.1488 0 0 1 72.3456 0l398.336 399.2576zM947.2 921.6c-42.3936 0-76.8-38.1952-76.8-85.3504 0-31.3856 25.6-88.2688 76.8-170.6496 51.2 82.3808 76.8 139.264 76.8 170.6496 0 47.104-34.4064 85.3504-76.8 85.3504z" fill="#5E80EB" ></path></symbol><symbol id="icon-zitiyanse" viewBox="0 0 1024 1024"><path d="M438.613333 1.024L146.033778 768.227556h139.150222l60.643556-179.029334h297.358222l65.479111 179.029334h139.150222L555.235556 1.024H438.613333z m55.921778 163.043556l107.064889 318.008888H382.691556l111.843555-318.065777v0.056889zM85.333333 1024h818.403556v-153.429333H85.333333z" fill="#CF1322" ></path></symbol><symbol id="icon-huabi" viewBox="0 0 1024 1024"><path d="M134.7 876.6l315.8-94.1c4.7-1.4 9-3.9 12.4-7.4L781.4 453c1.2-1.1 2.2-2.5 3-3.9l114.4-114.3c11.7-11.7 18.2-27.3 18.2-43.9 0.1-16.5-6.4-32.4-18.1-44L733.4 81.6c-23.5-23.5-64.5-23.4-87.9 0l-118 117.9c-1.2 1.1-2.2 2.4-3.1 3.9L206 521.9c-3.2 3.2-5.6 7.1-7 11.4l-99.9 307c-3.2 10.2-0.6 21.3 6.8 28.9 7.5 7.6 18.6 10.5 28.8 7.4z m551.5-754.4c2.4-2.4 4.2-2.5 6.6 0l165.5 165.4c0.9 0.8 1.4 2 1.3 3.2 0 1.3-0.5 2.5-1.4 3.3l-97.4 97.4-172-172 97.4-97.3zM548.6 260.6l172.1 172.1-267.5 270.6-19.7-70.9-88.7-0.9 0.3-90.2-61.8-15.4 265.3-265.3zM245.5 576.4l41.8 9.5v74.5c0 7.6 3 14.9 8.4 20.3s12.7 8.4 20.3 8.4h73.2l13.8 47.8L170.8 806l74.7-229.6zM884.6 895.6H130c-17.8 0-32.3 14.5-32.3 32.3 0 17.8 14.5 32.3 32.3 32.3h754.6c17.8 0 32.3-14.5 32.3-32.3 0-17.8-14.4-32.3-32.3-32.3z" fill="" ></path></symbol><symbol id="icon-tuodong" viewBox="0 0 1024 1024"><path d="M341.333333 85.333333h101.973334v101.973334H341.333333V85.333333z m231.765334 0h101.973333v101.973334h-101.973333V85.333333zM341.333333 326.4h101.973334v101.973333H341.333333V326.4z m231.765334 0h101.973333v101.973333h-101.973333V326.4zM341.333333 567.381333h101.973334v101.973334H341.333333v-101.973334z m231.765334 0h101.973333v101.973334h-101.973333v-101.973334zM341.333333 808.490667h101.973334v101.973333H341.333333v-101.973333z m231.765334 0h101.973333v101.973333h-101.973333v-101.973333z" fill="#9FAABA" ></path></symbol><symbol id="icon-jiance" viewBox="0 0 1024 1024"><path d="M512 1024c-4.266667 0-8.533333 0-12.8-4.266667C213.333333 925.866667 42.666667 708.266667 42.666667 430.933333V170.666667c0-17.066667 12.8-34.133333 29.866666-42.666667l426.666667-128h25.6l426.666667 128c17.066667 8.533333 29.866667 25.6 29.866666 42.666667v260.266666c0 273.066667-170.666667 494.933333-456.533333 588.8-4.266667 4.266667-8.533333 4.266667-12.8 4.266667zM128 200.533333v230.4c0 234.666667 140.8 418.133333 384 503.466667 243.2-85.333333 384-268.8 384-503.466667V200.533333L512 85.333333 128 200.533333z" ></path><path d="M563.2 704c-12.8 0-25.6-8.533333-29.866667-21.333333l-76.8-230.4-21.333333 68.266666c-4.266667 12.8-17.066667 21.333333-29.866667 21.333334H298.666667c-17.066667 0-34.133333-12.8-34.133334-34.133334s12.8-34.133333 34.133334-34.133333h85.333333L426.666667 341.333333c4.266667-12.8 17.066667-21.333333 29.866666-21.333333s25.6 8.533333 29.866667 21.333333l76.8 230.4 21.333333-68.266666c4.266667-12.8 17.066667-21.333333 29.866667-21.333334H725.333333c17.066667 0 34.133333 12.8 34.133334 34.133334s-12.8 34.133333-34.133334 34.133333h-85.333333L597.333333 682.666667c-4.266667 12.8-17.066667 21.333333-34.133333 21.333333z" ></path></symbol><symbol id="icon-tubiao_shizixian" viewBox="0 0 1024 1024"><path d="M896 469.333333h-256c-4.266667 0-12.8 0-17.066667 4.266667-12.8-34.133333-38.4-59.733333-72.533333-72.533333 4.266667-4.266667 4.266667-12.8 4.266667-17.066667V128c0-25.6-17.066667-42.666667-42.666667-42.666667s-42.666667 17.066667-42.666667 42.666667v256c0 4.266667 0 12.8 4.266667 17.066667-34.133333 12.8-59.733333 38.4-72.533333 72.533333-4.266667-4.266667-12.8-4.266667-17.066667-4.266667H128c-25.6 0-42.666667 17.066667-42.666667 42.666667s17.066667 42.666667 42.666667 42.666667h256c4.266667 0 12.8 0 17.066667-4.266667 12.8 34.133333 38.4 59.733333 72.533333 72.533333-4.266667 4.266667-4.266667 12.8-4.266667 17.066667v256c0 25.6 17.066667 42.666667 42.666667 42.666667s42.666667-17.066667 42.666667-42.666667v-256c0-4.266667 0-12.8-4.266667-17.066667 34.133333-12.8 59.733333-38.4 72.533333-72.533333 4.266667 4.266667 12.8 4.266667 17.066667 4.266667h256c25.6 0 42.666667-17.066667 42.666667-42.666667s-17.066667-42.666667-42.666667-42.666667z m-384 93.866667c-29.866667 0-51.2-25.6-51.2-51.2s25.6-51.2 51.2-51.2 51.2 25.6 51.2 51.2-21.333333 51.2-51.2 51.2z" ></path></symbol><symbol id="icon-xifu" viewBox="0 0 1024 1024"><path d="M449 62l138.6 126-84.6 91.8-138.6-126L449 62z m370.8 336.6l138.6 126-84.6 93.6-138.6-126 84.6-93.6z m-104.4 117l-189 207C468.8 787.4 369.8 791 305 733.4c-64.8-57.6-68.4-156.6-10.8-221.4l189-208.8-138.6-126-189 208.8C26 526.4 36.8 744.2 177.2 872c140.4 127.8 358.2 117 486-23.4l190.8-207-138.6-126z" ></path></symbol><symbol id="icon-maodianwenzi" viewBox="0 0 1024 1024"><path d="M124.342857 117.028571h530.285714v36.571429H124.342857z" fill="" ></path><path d="M373.028571 135.314286h29.257143v753.371428h-29.257143zM124.342857 135.314286h29.257143v76.8h-29.257143zM625.371429 135.314286h29.257142v76.8h-29.257142z" fill="" ></path><path d="M296.228571 870.4h190.171429v36.571429H296.228571z" fill="" ></path><path d="M716.8 486.4h36.571429v387.657143h-36.571429z" fill="" ></path><path d="M735.085714 906.971429c-113.371429 0-193.828571-124.342857-193.828571-128l29.257143-18.285715s73.142857 109.714286 164.571428 109.714286c54.857143 0 106.057143-36.571429 153.6-109.714286l29.257143 21.942857c-54.857143 80.457143-117.028571 124.342857-182.857143 124.342858z" fill="" ></path><path d="M632.685714 643.657143h204.8v36.571428h-204.8z" fill="" ></path><path d="M735.085714 519.314286m-43.885714 0a43.885714 43.885714 0 1 0 87.771429 0 43.885714 43.885714 0 1 0-87.771429 0Z" fill="" ></path><path d="M735.085714 581.485714c-32.914286 0-62.171429-29.257143-62.171428-62.171428 0-32.914286 29.257143-62.171429 62.171428-62.171429s62.171429 29.257143 62.171429 62.171429c-3.657143 32.914286-29.257143 62.171429-62.171429 62.171428z m0-87.771428c-14.628571 0-25.6 10.971429-25.6 25.6s10.971429 25.6 25.6 25.6 25.6-10.971429 25.6-25.6-14.628571-25.6-25.6-25.6z" fill="" ></path></symbol><symbol id="icon-maodian" viewBox="0 0 1024 1024"><path d="M511.146667 286.08a150.762667 150.762667 0 0 0-147.626667 121.6 150.613333 150.613333 0 0 0 90.453333 168.533333 150.826667 150.826667 0 0 0 183.04-55.68 150.592 150.592 0 0 0-18.986666-190.293333 150.058667 150.058667 0 0 0-106.88-44.16zM512 60.16c97.92 0 191.786667 39.68 259.84 109.653333 143.36 147.626667 143.36 381.653333 0 529.28L512 963.84 252.16 699.093333c-143.36-147.626667-143.36-381.653333 0-529.28C320.213333 99.626667 414.08 60.16 512 60.16z" fill="#148AFF" ></path></symbol><symbol id="icon-feibonaqisuduzulishan" viewBox="0 0 1024 1024"><path d="M658.285714 438.857143c-3.657143-10.971429-14.628571-21.942857-25.6-29.257143-3.657143 0-3.657143-3.657143-7.314285-3.657143-10.971429-7.314286-21.942857-7.314286-32.914286-7.314286-40.228571 0-73.142857 32.914286-73.142857 73.142858 0 14.628571 3.657143 25.6 10.971428 36.571428 7.314286 10.971429 14.628571 18.285714 25.6 25.6h3.657143c10.971429 7.314286 21.942857 7.314286 32.914286 7.314286 10.971429 0 18.285714-3.657143 29.257143-7.314286 3.657143 0 10.971429-3.657143 14.628571-7.314286 10.971429-7.314286 18.285714-18.285714 21.942857-29.257142 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143 0-7.314286-3.657143-18.285714-7.314286-29.257143z m-54.857143 69.485714H585.142857c-7.314286 0-10.971429-3.657143-18.285714-7.314286-3.657143-3.657143-7.314286-10.971429-10.971429-14.628571V475.428571c0-18.285714 10.971429-29.257143 25.6-36.571428h10.971429c3.657143 0 10.971429 0 14.628571 3.657143 3.657143 0 10.971429 3.657143 10.971429 7.314285 7.314286 3.657143 10.971429 10.971429 10.971428 21.942858v3.657142c0 14.628571-10.971429 29.257143-25.6 32.914286zM226.742857 866.742857c-3.657143-29.257143-21.942857-51.2-47.542857-62.171428-7.314286-3.657143-14.628571-3.657143-25.6-3.657143h-10.971429c-36.571429 7.314286-62.171429 36.571429-62.171428 73.142857 0 40.228571 32.914286 73.142857 73.142857 73.142857 29.257143 0 54.857143-18.285714 65.828571-43.885714 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143v-7.314286z m-73.142857 43.885714c-21.942857 0-36.571429-18.285714-36.571429-36.571428 0-21.942857 18.285714-36.571429 36.571429-36.571429s36.571429 14.628571 36.571429 36.571429-18.285714 36.571429-36.571429 36.571428z" fill="" ></path><path d="M735.085714 885.028571c0 7.314286-14.628571 10.971429-10.971428 18.285715H201.142857v-36.571429h522.971429c-3.657143 3.657143 10.971429 10.971429 10.971428 18.285714z" fill="" ></path><path d="M943.542857 866.742857v36.571429h-237.714286c3.657143-3.657143 3.657143-10.971429 3.657143-18.285715s0-10.971429-3.657143-18.285714h237.714286zM208.457143 420.571429c3.657143 0 7.314286-3.657143 10.971428-3.657143l-3.657142 113.371428-7.314286 292.571429v10.971428h-36.571429v-3.657142l7.314286-299.885715 3.657143-113.371428c3.657143 3.657143 14.628571 3.657143 25.6 3.657143z" fill="" ></path><path d="M226.742857 84.114286L219.428571 387.657143v36.571428c-7.314286-3.657143-18.285714-7.314286-25.6-3.657142-3.657143 0-7.314286 0-10.971428 3.657142v-40.228571l7.314286-303.542857 36.571428 3.657143zM164.900571 817.517714l363.629715-684.726857 32.292571 17.152-363.629714 684.726857zM197.632 844.032l717.677714-216.758857 10.605715 35.035428-717.714286 216.722286z" fill="" ></path><path d="M566.857143 501.028571c3.657143 3.657143 10.971429 7.314286 18.285714 7.314286l-29.257143 29.257143-343.771428 325.485714-25.6-25.6 343.771428-321.828571 29.257143-25.6s3.657143 7.314286 7.314286 10.971428zM932.571429 179.2L658.285714 438.857143l-29.257143 29.257143c0-10.971429-3.657143-18.285714-10.971428-21.942857-3.657143-3.657143-7.314286-7.314286-10.971429-7.314286l29.257143-25.6 274.285714-259.657143 21.942858 25.6z" fill="" ></path><path d="M190.171429 449.828571h351.085714v36.571429H190.171429z" fill="" ></path><path d="M588.8 526.628571h36.571429v354.742858h-36.571429z" fill="" ></path></symbol><symbol id="icon-feibonaqihuiche" viewBox="0 0 1024 1024"><path d="M201.142857 804.571429c-7.314286-32.914286-36.571429-58.514286-73.142857-58.514286s-65.828571 25.6-69.485714 58.514286c0 3.657143-3.657143 10.971429-3.657143 14.628571 0 7.314286 0 14.628571 3.657143 21.942857 10.971429 29.257143 36.571429 51.2 69.485714 51.2 32.914286 0 62.171429-21.942857 69.485714-51.2 3.657143-7.314286 3.657143-14.628571 3.657143-21.942857V804.571429z m-73.142857 51.2c-14.628571 0-21.942857-7.314286-29.257143-14.628572-3.657143-7.314286-7.314286-14.628571-7.314286-21.942857 0-7.314286 0-10.971429 3.657143-14.628571 7.314286-14.628571 18.285714-21.942857 32.914286-21.942858s25.6 7.314286 32.914286 21.942858c3.657143 3.657143 3.657143 10.971429 3.657143 14.628571 0 7.314286-3.657143 14.628571-7.314286 21.942857-3.657143 10.971429-14.628571 14.628571-29.257143 14.628572z" fill="" ></path><path d="M654.628571 822.857143c0 7.314286-25.6 10.971429-21.942857 18.285714h-438.857143v-36.571428h424.228572c0 3.657143 36.571429 10.971429 36.571428 18.285714z" fill="" ></path><path d="M969.142857 804.571429v36.571428h-351.085714c3.657143-7.314286 7.314286-14.628571 7.314286-21.942857 0-7.314286 0-10.971429-3.657143-14.628571h347.428571zM822.857143 416.914286c0 7.314286 0 14.628571 3.657143 21.942857 10.971429 29.257143 36.571429 51.2 69.485714 51.2 32.914286 0 62.171429-21.942857 69.485714-51.2 3.657143-7.314286 3.657143-14.628571 3.657143-21.942857 0-3.657143 0-10.971429-3.657143-14.628572-7.314286-32.914286-36.571429-58.514286-69.485714-58.514285-36.571429 0-65.828571 25.6-73.142857 58.514285v14.628572z m40.228571 21.942857c-3.657143-7.314286-7.314286-14.628571-7.314285-21.942857 0-7.314286 0-10.971429 3.657142-14.628572 7.314286-14.628571 18.285714-21.942857 32.914286-21.942857s25.6 7.314286 32.914286 21.942857c3.657143 3.657143 3.657143 10.971429 3.657143 14.628572 0 7.314286-3.657143 14.628571-7.314286 21.942857-7.314286 7.314286-18.285714 14.628571-29.257143 14.628571-10.971429 0-21.942857-3.657143-29.257143-14.628571z" fill="" ></path><path d="M369.371429 420.571429c0 7.314286 25.6 10.971429 21.942857 18.285714h438.857143v-36.571429H405.942857c0 3.657143-36.571429 10.971429-36.571428 18.285715z" fill="" ></path><path d="M54.857143 402.285714v36.571429h351.085714c-3.657143-7.314286-7.314286-14.628571-7.314286-21.942857 0-7.314286 0-10.971429 3.657143-14.628572H54.857143z" fill="" ></path><path d="M599.771429 621.714286c0 7.314286-29.257143 10.971429-25.6 18.285714H54.857143v-36.571429h501.028571c0 3.657143 43.885714 10.971429 43.885715 18.285715z" fill="" ></path><path d="M969.142857 603.428571v36.571429H555.885714c3.657143-7.314286 7.314286-14.628571 7.314286-21.942857 0-7.314286 0-10.971429-3.657143-14.628572h409.6z" fill="" ></path><path d="M424.228571 219.428571c0 7.314286 29.257143 10.971429 25.6 18.285715h515.657143v-36.571429H468.114286c0 3.657143-43.885714 10.971429-43.885715 18.285714z" fill="" ></path><path d="M54.857143 201.142857v36.571429h413.257143c-3.657143-7.314286-7.314286-14.628571-7.314286-21.942857 0-7.314286 0-10.971429 3.657143-14.628572H54.857143z" fill="" ></path></symbol><symbol id="icon-feibonaqiqixing" viewBox="0 0 1024 1024"><path d="M219.428571 753.371429h-14.628571c-7.314286 0-14.628571 0-21.942857 3.657142-7.314286 0-10.971429 3.657143-18.285714 7.314286-10.971429 7.314286-18.285714 14.628571-25.6 25.6-3.657143 10.971429-7.314286 21.942857-7.314286 36.571429 0 32.914286 21.942857 62.171429 51.2 69.485714 7.314286 3.657143 14.628571 3.657143 21.942857 3.657143 3.657143 0 10.971429 0 14.628571-3.657143 10.971429-3.657143 18.285714-7.314286 29.257143-14.628571 7.314286-3.657143 18.285714-14.628571 21.942857-25.6 3.657143-7.314286 7.314286-18.285714 7.314286-29.257143 0-36.571429-25.6-65.828571-58.514286-73.142857z m18.285715 80.457142c-3.657143 10.971429-10.971429 18.285714-18.285715 25.6 0 0-3.657143 0-7.314285 3.657143h-10.971429c-7.314286 0-14.628571-3.657143-21.942857-7.314285-7.314286-7.314286-14.628571-18.285714-14.628571-29.257143v-3.657143c0-10.971429 7.314286-18.285714 14.628571-25.6 3.657143 0 3.657143-3.657143 7.314286-3.657143s7.314286-3.657143 14.628571-3.657143 10.971429 0 14.628572 3.657143c14.628571 7.314286 21.942857 18.285714 21.942857 32.914286 3.657143 3.657143 3.657143 3.657143 0 7.314285z" fill="" ></path><path d="M263.314286 808.228571h508.342857v36.571429H263.314286zM186.514286 256h36.571428v504.685714h-36.571428z" fill="" ></path><path d="M826.514286 753.371429h-14.628572c-7.314286 0-14.628571 0-21.942857 3.657142-7.314286 0-10.971429 3.657143-18.285714 7.314286-10.971429 7.314286-18.285714 14.628571-25.6 25.6-3.657143 10.971429-7.314286 21.942857-7.314286 36.571429 0 32.914286 21.942857 62.171429 51.2 69.485714 7.314286 3.657143 14.628571 3.657143 21.942857 3.657143 3.657143 0 10.971429 0 14.628572-3.657143 10.971429-3.657143 18.285714-7.314286 29.257143-14.628571 10.971429-7.314286 18.285714-18.285714 21.942857-29.257143 3.657143-7.314286 7.314286-18.285714 7.314285-29.257143 0-32.914286-25.6-62.171429-58.514285-69.485714z m18.285714 80.457142c-3.657143 10.971429-10.971429 18.285714-18.285714 25.6 0 0-3.657143 0-7.314286 3.657143h-10.971429c-7.314286 0-14.628571-3.657143-21.942857-7.314285-7.314286-7.314286-14.628571-18.285714-14.628571-29.257143v-3.657143c0-10.971429 7.314286-18.285714 14.628571-25.6 3.657143 0 3.657143-3.657143 7.314286-3.657143s7.314286-3.657143 14.628571-3.657143 10.971429 0 14.628572 3.657143c14.628571 7.314286 21.942857 18.285714 21.942857 32.914286 3.657143 3.657143 3.657143 3.657143 0 7.314285zM219.428571 146.285714h-14.628571c-7.314286 0-14.628571 0-21.942857 3.657143-7.314286 0-10.971429 3.657143-18.285714 7.314286-10.971429 7.314286-18.285714 14.628571-25.6 25.6-3.657143 10.971429-7.314286 25.6-7.314286 36.571428 0 32.914286 21.942857 62.171429 51.2 69.485715 7.314286 3.657143 14.628571 3.657143 21.942857 3.657143 3.657143 0 10.971429 0 14.628571-3.657143 10.971429-3.657143 18.285714-7.314286 29.257143-14.628572 7.314286-3.657143 18.285714-14.628571 21.942857-25.6 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143 0-36.571429-25.6-65.828571-58.514286-73.142857z m18.285715 80.457143c0 10.971429-7.314286 21.942857-18.285715 25.6 0 0-3.657143 0-7.314285 3.657143h-7.314286c-7.314286 0-14.628571-3.657143-21.942857-7.314286-7.314286-7.314286-14.628571-18.285714-14.628572-29.257143v-3.657142c0-10.971429 7.314286-18.285714 14.628572-25.6 3.657143 0 3.657143-3.657143 7.314286-3.657143 3.657143-3.657143 7.314286-3.657143 14.628571-3.657143 3.657143 0 10.971429 0 14.628571 3.657143 14.628571 7.314286 21.942857 18.285714 21.942858 32.914285 0 3.657143 0 7.314286-3.657143 7.314286zM416.914286 830.171429l-36.571429-7.314286c7.314286-58.514286-3.657143-106.057143-32.914286-142.628572-10.971429-14.628571-25.6-25.6-36.571428-32.914285-25.6-18.285714-58.514286-29.257143-98.742857-36.571429l3.657143-36.571428c3.657143 0 58.514286 3.657143 113.371428 40.228571 25.6 14.628571 43.885714 32.914286 58.514286 58.514286 47.542857 73.142857 29.257143 153.6 29.257143 157.257143z" fill="" ></path><path d="M522.971429 837.485714l-36.571429-7.314285c10.971429-102.4-7.314286-186.514286-58.514286-248.685715-21.942857-25.6-43.885714-43.885714-69.485714-62.171428-43.885714-25.6-102.4-43.885714-168.228571-54.857143l3.657142-36.571429c3.657143 0 102.4 7.314286 190.171429 65.828572 40.228571 25.6 69.485714 54.857143 95.085714 91.428571 76.8 117.028571 47.542857 248.685714 43.885715 252.342857z" fill="" ></path><path d="M629.028571 837.485714l-36.571428-7.314285c14.628571-135.314286-10.971429-245.028571-80.457143-329.142858-29.257143-32.914286-58.514286-58.514286-91.428571-80.457142-58.514286-36.571429-131.657143-62.171429-219.428572-76.8l3.657143-36.571429c7.314286 0 131.657143 10.971429 245.028571 87.771429 47.542857 32.914286 87.771429 69.485714 120.685715 117.028571 98.742857 149.942857 62.171429 321.828571 58.514285 325.485714z" fill="" ></path></symbol><symbol id="icon-feibonaqizhouqixian" viewBox="0 0 1024 1024"><path d="M52.244898 975.245061v-919.510204h83.591837v919.510204H52.244898zM198.530612 975.245061v-919.510204h83.591837v919.510204H198.530612zM344.816327 975.245061v-919.510204h83.591836v919.510204h-83.591836zM553.795918 975.245061v-919.510204h83.591837v919.510204h-83.591837zM888.163265 975.245061v-919.510204h83.591837v919.510204h-83.591837z" ></path></symbol><symbol id="icon-jiangenjiaoduxian" viewBox="0 0 1024 1024"><path d="M658.285714 438.857143c-3.657143-10.971429-14.628571-21.942857-25.6-29.257143-3.657143 0-3.657143-3.657143-7.314285-3.657143-10.971429-7.314286-21.942857-7.314286-32.914286-7.314286-40.228571 0-73.142857 32.914286-73.142857 73.142858 0 14.628571 3.657143 25.6 10.971428 36.571428 7.314286 10.971429 14.628571 18.285714 25.6 25.6h3.657143c10.971429 7.314286 21.942857 7.314286 32.914286 7.314286 10.971429 0 18.285714-3.657143 29.257143-7.314286 3.657143 0 10.971429-3.657143 14.628571-7.314286 10.971429-7.314286 18.285714-18.285714 21.942857-29.257142 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143 0-10.971429-3.657143-21.942857-7.314286-29.257143z m-54.857143 65.828571H585.142857c-7.314286 0-10.971429-3.657143-18.285714-7.314285-3.657143-3.657143-7.314286-10.971429-10.971429-14.628572v-10.971428c0-18.285714 10.971429-29.257143 25.6-36.571429h10.971429c3.657143 0 10.971429 0 14.628571 3.657143 3.657143 0 10.971429 3.657143 10.971429 7.314286 7.314286 3.657143 10.971429 10.971429 10.971428 21.942857v3.657143c0 14.628571-10.971429 29.257143-25.6 32.914285zM226.742857 863.085714c-3.657143-29.257143-21.942857-51.2-47.542857-62.171428-7.314286-3.657143-14.628571-3.657143-25.6-3.657143h-10.971429c-36.571429 7.314286-62.171429 36.571429-62.171428 73.142857 0 40.228571 32.914286 73.142857 73.142857 73.142857 29.257143 0 54.857143-18.285714 65.828571-43.885714 3.657143-10.971429 7.314286-18.285714 7.314286-29.257143v-7.314286z m-73.142857 43.885715c-21.942857 0-36.571429-18.285714-36.571429-36.571429 0-21.942857 18.285714-36.571429 36.571429-36.571429s36.571429 14.628571 36.571429 36.571429-18.285714 36.571429-36.571429 36.571429z" fill="" ></path><path d="M735.085714 881.371429c0 7.314286-14.628571 10.971429-10.971428 18.285714H201.142857v-36.571429h522.971429c-3.657143 3.657143 10.971429 10.971429 10.971428 18.285715z" fill="" ></path><path d="M943.542857 863.085714v36.571429h-237.714286c3.657143-3.657143 3.657143-10.971429 3.657143-18.285714s0-10.971429-3.657143-18.285715h237.714286zM263.314286 405.942857h10.971428l-25.6 109.714286-69.485714 285.257143-3.657143 10.971428-36.571428-7.314285v-3.657143L208.457143 512l25.6-109.714286c10.971429 0 18.285714 3.657143 29.257143 3.657143z" fill="" ></path><path d="M351.085714 84.114286l-69.485714 296.228571-7.314286 36.571429c-7.314286-7.314286-14.628571-10.971429-25.6-10.971429h-10.971428l10.971428-36.571428L314.514286 73.142857l36.571428 10.971429zM164.754286 813.970286l363.593143-684.763429 32.329142 17.188572-363.629714 684.726857z" fill="" ></path><path d="M197.558857 840.411429l717.714286-216.758858 10.605714 34.998858L208.091429 875.410286z" fill="" ></path><path d="M566.857143 497.371429c3.657143 3.657143 10.971429 7.314286 18.285714 7.314285l-29.257143 29.257143-343.771428 325.485714-25.6-25.6 343.771428-321.828571 29.257143-25.6s3.657143 7.314286 7.314286 10.971429zM932.571429 175.542857L658.285714 438.857143l-29.257143 29.257143c0-10.971429-3.657143-18.285714-10.971428-21.942857-3.657143-3.657143-7.314286-7.314286-10.971429-7.314286l29.257143-25.6 274.285714-259.657143 21.942858 21.942857z" fill="" ></path></symbol><symbol id="icon-GoldenSection" viewBox="0 0 1024 1024"><path d="M960.5 170.7v55.1h-897v-55.1h897z m0 156.9v55.1H510.8v-55.1h449.7z m0 156.9v55.1H510.8v-55.1h449.7zM334.3 263.7c43 0 79.8 10.2 94.1 14.7-1 16.8-4.1 48.3-5.6 84.9l-17.4 1.5c-4.1-62.5-37.8-80.3-83.9-80.3-83.4 0-147.8 79.8-147.8 179.4 0 78.8 38.9 131.1 104.3 131.1 24.5 0 43-7.1 48.6-35.6l8.7-45.2c7.2-38.6 3.6-40.7-48.1-45.7l4.1-15.8H436l-4.1 15.8c-28.6 4.1-31.7 6.6-38.9 45.7l-7.7 41.7c-3.1 15.2-4.1 29-2.6 39.1-31.7 8.1-71.1 19.8-113.5 19.8-96.7 0-162.6-52.9-162.6-148.4 0.1-120.8 95.3-202.7 227.7-202.7z m626.2 377.6v55.1h-897v-55.1h897z m0 156.9v55.1h-897v-55.1h897z" ></path></symbol><symbol id="icon-PercentageLine" viewBox="0 0 1024 1024"><path d="M960.5 170.7v55.2h-897v-55.2h897z m0 156.8v55.2H510.7v-55.2h449.8z m-764.2-24.7v104.6H91.1V302.8h105.2z m764.2 181.6v55.2H510.7v-55.2h449.8z m-501.1-24.7v104.6H354.2V459.7h105.2zM367.1 290l38.9 39.1-19.6 19.4-223.2 221.9-19.6 19.4-38.9-39.1 19.6-19.4 223.2-221.9 19.6-19.4z m593.4 351.3v55.2h-897v-55.2h897z m0 156.9v55.2h-897v-55.2h897z" ></path></symbol><symbol id="icon-a-xiangpicachuxiangpica" viewBox="0 0 1024 1024"><path d="M554.3 850.7L981 424c12.5-12.5 12.5-32.8 0-45.3L636.7 34.6c-12.5-12.5-32.8-12.5-45.3 0L90.5 535.5c-50 50-50 131 0 181l272.1 270.3c24 23.8 56.4 37.2 90.2 37.2H864c17.7 0 32-14.3 32-32s-14.3-32-32-32H599.5c-57 0-85.6-68.9-45.2-109.3z m71.1-736.9l276.4 276.4c6.2 6.2 6.2 16.4 0 22.6L607.9 706.6l-299-299 293.8-293.9c6.3-6.2 16.4-6.2 22.7 0.1zM135.8 580.7l127.9-127.9 299 299-127.9 127.9c-25 25-65.5 25-90.5 0L135.8 671.3c-25-25-25-65.6 0-90.6z" fill="#8A8A8A" ></path></symbol><symbol id="icon-jiagefanwei" viewBox="0 0 1024 1024"><path d="M576 629.312h138.688l-160 213.376-160-213.376H512V192h64v437.312zM832 896v-64h192v192h-192v-64H0v-64h832zM192 128v64H0V0h192v64h832v64H192zM64 64v64h64V64H64z m832 832v64h64v-64h-64z m-373.312-202.688l32 42.688 32-42.688h-64z" fill="#767D87" ></path></symbol><symbol id="icon-shijianfanwei" viewBox="0 0 1024 1024"><path d="M614.4 512V409.6l170.65 128-170.65 128V563.2H256V512h358.4z m256 256h51.2v153.6H768V768h51.2V102.4h51.2V768zM153.6 256h-51.2V102.4H256V256h-51.2v665.6h-51.2V256z m0-102.4v51.2h51.2v-51.2h-51.2z m665.6 665.6v51.2h51.2v-51.2h-51.2zM665.6 512v51.2l34.15-25.6L665.6 512z" fill="#767D87" ></path></symbol><symbol id="icon-buxiangjiaojiao" viewBox="0 0 1024 1024"><path d="M84.114286 512c-36.571429-14.628571-58.514286-54.857143-43.885715-95.085714s54.857143-58.514286 95.085715-43.885715c36.571429 14.628571 58.514286 54.857143 43.885714 95.085715S120.685714 526.628571 84.114286 512z m36.571428-102.4c-18.285714-7.314286-40.228571 0-47.542857 21.942857-7.314286 18.285714 0 40.228571 21.942857 47.542857 18.285714 7.314286 40.228571 0 47.542857-21.942857 7.314286-21.942857-3.657143-40.228571-21.942857-47.542857z" fill="" ></path><path d="M153.6 394.971429l625.371429-277.942858 14.628571 32.914286-625.371429 277.942857z" fill="" ></path><path d="M815.542857 168.228571c-36.571429-14.628571-58.514286-54.857143-43.885714-95.085714 14.628571-36.571429 54.857143-58.514286 95.085714-43.885714s58.514286 54.857143 43.885714 95.085714-54.857143 58.514286-95.085714 43.885714z m40.228572-102.4c-18.285714-7.314286-40.228571 0-47.542858 21.942858-7.314286 18.285714 0 40.228571 21.942858 47.542857 18.285714 7.314286 40.228571 0 47.542857-21.942857s-3.657143-40.228571-21.942857-47.542858zM190.171429 614.4c18.285714 36.571429 7.314286 80.457143-29.257143 98.742857s-80.457143 7.314286-98.742857-29.257143-7.314286-80.457143 29.257142-98.742857c32.914286-18.285714 80.457143-3.657143 98.742858 29.257143z m-32.914286 18.285714c-10.971429-18.285714-32.914286-21.942857-51.2-14.628571-18.285714 10.971429-21.942857 32.914286-14.628572 51.2 10.971429 18.285714 32.914286 21.942857 51.2 14.628571s25.6-32.914286 14.628572-51.2z" fill="" ></path><path d="M186.514286 658.285714l658.285714 190.171429-10.971429 36.571428L179.2 694.857143z" fill="" ></path><path d="M961.828571 859.428571c18.285714 36.571429 7.314286 80.457143-29.257142 98.742858s-80.457143 7.314286-98.742858-29.257143-7.314286-80.457143 29.257143-98.742857c36.571429-21.942857 80.457143-7.314286 98.742857 29.257142z m-29.257142 14.628572c-10.971429-18.285714-32.914286-21.942857-51.2-14.628572-18.285714 10.971429-21.942857 32.914286-14.628572 51.2 10.971429 18.285714 32.914286 21.942857 51.2 14.628572 14.628571-10.971429 21.942857-29.257143 14.628572-51.2z" fill="" ></path></symbol><symbol id="icon-tubiao_buxiangjiaotongdao" viewBox="0 0 1024 1024"><path d="M192 473.6c8.533333 0 21.333333 0 29.866667-4.266667 51.2-12.8 81.066667-55.466667 85.333333-106.666666h21.333333l371.2-98.133334c4.266667 0 12.8-4.266667 17.066667-8.533333 8.533333 12.8 21.333333 25.6 38.4 34.133333 17.066667 8.533333 38.4 17.066667 59.733333 17.066667 8.533333 0 21.333333 0 29.866667-4.266667 64-17.066667 98.133333-81.066667 81.066667-145.066666s-81.066667-98.133333-145.066667-81.066667c-29.866667 8.533333-55.466667 25.6-72.533333 55.466667-8.533333 17.066667-12.8 34.133333-17.066667 51.2h-17.066667L302.933333 281.6c-4.266667 0-12.8 4.266667-17.066666 8.533333-25.6-38.4-76.8-59.733333-128-46.933333-59.733333 17.066667-98.133333 81.066667-81.066667 140.8 12.8 55.466667 59.733333 89.6 115.2 89.6z m571.733333-311.466667c8.533333-12.8 17.066667-21.333333 34.133334-25.6 29.866667-8.533333 59.733333 8.533333 64 38.4s-8.533333 59.733333-38.4 64c-12.8 4.266667-29.866667 0-38.4-4.266666-12.8-8.533333-21.333333-17.066667-25.6-34.133334-8.533333-8.533333-4.266667-25.6 4.266666-38.4zM174.933333 302.933333c29.866667-8.533333 59.733333 8.533333 68.266667 38.4 8.533333 29.866667-8.533333 59.733333-38.4 64-29.866667 8.533333-59.733333-8.533333-68.266667-34.133333-4.266667-29.866667 12.8-59.733333 38.4-68.266667zM840.533333 755.2c-29.866667-8.533333-64-4.266667-89.6 12.8-17.066667 8.533333-29.866667 21.333333-38.4 34.133333-4.266667-4.266667-8.533333-8.533333-17.066666-8.533333l-371.2-98.133333h-17.066667c-4.266667-46.933333-38.4-89.6-85.333333-106.666667-64-17.066667-128 21.333333-145.066667 81.066667-8.533333 29.866667-4.266667 64 12.8 89.6 17.066667 25.6 42.666667 46.933333 72.533333 55.466666 8.533333 4.266667 21.333333 4.266667 29.866667 4.266667 21.333333 0 38.4-4.266667 59.733333-17.066667 17.066667-8.533333 29.866667-21.333333 38.4-34.133333 4.266667 4.266667 8.533333 8.533333 17.066667 8.533333l371.2 98.133334h21.333333c0 17.066667 4.266667 34.133333 17.066667 51.2 17.066667 25.6 42.666667 46.933333 72.533333 55.466666 8.533333 4.266667 21.333333 4.266667 29.866667 4.266667 51.2 0 98.133333-34.133333 115.2-85.333333 8.533333-29.866667 4.266667-64-12.8-89.6-25.6-29.866667-51.2-46.933333-81.066667-55.466667z m-597.333333-38.4c-4.266667 12.8-12.8 25.6-25.6 34.133333-12.8 8.533333-25.6 8.533333-38.4 4.266667-12.8-4.266667-25.6-12.8-34.133333-25.6-8.533333-12.8-8.533333-25.6-4.266667-38.4 4.266667-25.6 29.866667-38.4 51.2-38.4h12.8c25.6 4.266667 42.666667 34.133333 38.4 64z m614.4 166.4c-8.533333 29.866667-38.4 46.933333-64 38.4-12.8-4.266667-25.6-12.8-34.133333-25.6-8.533333-12.8-8.533333-25.6-4.266667-38.4 4.266667-12.8 12.8-25.6 25.6-34.133333 8.533333-4.266667 17.066667-8.533333 25.6-8.533334h12.8c12.8 4.266667 25.6 12.8 34.133333 25.6s8.533333 25.6 4.266667 42.666667z" ></path></symbol><symbol id="icon-drawicon_1" viewBox="0 0 1024 1024"><path d="M510.981095 4.075622L91.19204 508.943284h261.349254V1024h310.256716V508.943284h268.991045z" fill="#FF1F14" ></path></symbol><symbol id="icon-drawicon_2" viewBox="0 0 1024 1024"><path d="M512 1024l419.789055-504.867662h-261.349254V4.075622H360.183085v515.056716H91.19204z" fill="#03F838" ></path></symbol><symbol id="icon-tooltiptext" viewBox="0 0 1024 1024"><path d="M170.666667 85.333333 853.333333 85.333333C900.266667 85.333333 938.666667 123.733333 938.666667 170.666667L938.666667 682.666667C938.666667 729.6 900.266667 768 853.333333 768L682.666667 768 512 938.666667 341.333333 768 170.666667 768C123.733333 768 85.333333 729.6 85.333333 682.666667L85.333333 170.666667C85.333333 123.733333 123.733333 85.333333 170.666667 85.333333M213.333333 213.333333 213.333333 298.666667 810.666667 298.666667 810.666667 213.333333 213.333333 213.333333M213.333333 384 213.333333 469.333333 640 469.333333 640 384 213.333333 384M213.333333 554.666667 213.333333 640 725.333333 640 725.333333 554.666667 213.333333 554.666667Z" ></path></symbol><symbol id="icon-Tooltip" viewBox="0 0 1102 1024"><path d="M0 109.714286a73.142857 73.142857 0 0 1 73.142857-73.142857h841.142857a73.142857 73.142857 0 0 1 73.142857 73.142857V658.285714a73.142857 73.142857 0 0 1-73.142857 73.142857h-658.285714a73.142857 73.142857 0 0 0-58.514286 29.257143L0 1024V109.714286z m914.285714 0H73.142857V804.571429l65.828572-87.771429A146.285714 146.285714 0 0 1 256 658.285714h658.285714V109.714286z" ></path></symbol><symbol id="icon-fangkuai" viewBox="0 0 1024 1024"><path d="M65.166185 65.144696l893.016807 0 0 893.016807-893.016807 0 0-893.016807Z" fill="#f1f1f1" ></path></symbol><symbol id="icon-draw_quadrangle" viewBox="0 0 1024 1024"><path d="M353.7 378.4h-47.1L93 651.8h47.1z" fill="#748696" ></path><path d="M913.1 341.3H335.6l-29 37.1h624.6l29-37.1z" fill="#748696" ></path><path d="M884.1 378.4L670.6 651.8H93l-29 37.1h624.6l27-34.6 215.6-275.9z" fill="#748696" ></path></symbol><symbol id="icon-arrow" viewBox="0 0 1024 1024"><path d="M570.3 939.6c-11.7 0-23-6.5-28.6-17.7l-95.2-190.1-137 102.7c-9.7 7.3-22.6 8.4-33.5 3-10.8-5.4-17.7-16.4-17.7-28.5l-2.7-672.9c-0.1-12.7 7.4-24.2 19-29.4 11.6-5.2 25.1-3 34.5 5.5l496.4 449.2c9 8.1 12.6 20.6 9.4 32.2-3.2 11.7-12.7 20.5-24.6 22.9l-165.5 33.1L717.2 834c3.8 7.6 4.4 16.4 1.8 24.4-2.7 8.1-8.5 14.7-16 18.5l-118.3 59.2c-4.7 2.5-9.6 3.5-14.4 3.5zM457.8 651.3c2.4 0 4.9 0.3 7.3 0.9 9.2 2.2 17 8.3 21.3 16.8l98.1 195.8 61.1-30.6-96.8-193.3c-4.5-8.9-4.5-19.4-0.1-28.4s12.7-15.4 22.5-17.3l144.3-28.9-395.6-357.9 2.1 536.7 116.6-87.4c5.6-4.2 12.4-6.4 19.2-6.4z" fill="#231815" ></path></symbol><symbol id="icon-draw_arc" viewBox="0 0 1024 1024"><path d="M 186 63.9 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.7 -37 82.7 -82.7 82.7 Z M 839.6 717.1 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.6 -37 82.7 -82.7 82.7 Z M 698.9 197.5 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.2 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 s -37 82.7 -82.7 82.7 Z" fill="#748696" ></path><path d="M 364.3 164.8 c -21.6 0 -43 1.4 -63.9 4.1 c -4.1 0.5 -7.2 4 -7.2 8.2 v 21.7 c 0 5 4.5 8.9 9.4 8.2 c 20.8 -2.9 42 -4.4 63.5 -4.4 c 91.6 0 177 26.8 248.7 72.9 c 5.5 3.6 12.8 -0.4 12.8 -6.9 v -23.8 c 0 -2.9 -1.5 -5.6 -3.9 -7 c -75.5 -46.3 -164.3 -73 -259.4 -73 Z M 772.2 377.7 v 20.9 h -29.4 c 52.5 74.8 83.3 165.8 83.3 264.1 c 0 26.5 -2.3 52.5 -6.6 77.8 h 35.7 c 4.1 -25.6 6.2 -51.8 6.2 -78.5 c 0.2 -105.7 -32.9 -203.7 -89.2 -284.3 Z" fill="#748696" ></path></symbol><symbol id="icon-draw_line" viewBox="0 0 1024 1024"><path d="M236.1 757.3l533.6-524 25.9 26.6-533.7 524z" fill="#748696" ></path><path d="M837.2 66.4c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM185 717.3c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path></symbol><symbol id="icon-draw_rays" viewBox="0 0 1024 1024"><path d="M238.6 760.3l408.2-399.7 26.2 26.3-408.2 399.7z" fill="#748696" ></path><path d="M717.2 186.4c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM185 717.3c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M800.8 253.5l158.5-151.6-25.9-26.6L774 228.1c10.2 7 19.2 15.6 26.8 25.4z" fill="#748696" ></path></symbol><symbol id="icon-rectangle" viewBox="0 0 1024 1024"><path d="M 273.9 168.3 H 739 v 37.1 H 273.9 Z M 273.9 819.6 H 739 v 37.1 H 273.9 Z M 165.812 740.898 v -465.1 h 37.1 v 465.1 Z M 821.11 740.896 v -465.1 h 37.1 v 465.1 Z" fill="#748696" ></path><path d="M 184.7 66.2 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.7 -37 82.7 -82.7 82.7 Z M 184.7 717.5 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.6 -37 82.7 -82.7 82.7 Z M 840 717.5 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.6 -37 82.7 -82.7 82.7 Z M 840 66.2 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.1 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 c 0.1 45.7 -37 82.7 -82.7 82.7 Z" fill="#748696" ></path></symbol><symbol id="icon-draw_parallel_lines" viewBox="0 0 1024 1024"><path d="M 242.242 556.785 l 333.663 -324.036 l 25.847 26.616 L 268.09 583.4 Z" fill="#748696" ></path><path d="M 643.4 65.9 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.2 -121 -121 -121 Z m -0.1 203.5 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 s -37 82.7 -82.7 82.7 Z" fill="#748696" ></path><path d="M 801.1 593.9 L 959.3 442 l -25.9 -26.6 l -159.1 153.1 c 10.2 7 19.2 15.6 26.8 25.4 Z M 603.8 733.9 L 396.6 933.4 l 25.4 26.2 l 206.3 -198.2 c -9.5 -7.9 -17.7 -17.2 -24.5 -27.5 Z M 773.4 620.8 c 9.2 13.3 14.6 29.5 14.6 47 c 0 45.7 -37 82.7 -82.7 82.7 c -18.4 0 -35.4 -6 -49.1 -16.2 l -27.9 27 c 20.9 17.3 47.8 27.7 77.1 27.7 c 66.8 0 121 -54.2 121 -121 c 0 -27.9 -9.4 -53.6 -25.3 -74 l -27.7 26.8 Z M 622.5 667.8 c 0 -45.7 37 -82.7 82.7 -82.7 c 14.9 0 28.8 3.9 40.8 10.8 l 28.2 -27.4 c -19.6 -13.6 -43.3 -21.6 -69 -21.6 c -66.8 0 -121 54.2 -121 121 c 0 24.3 7.2 46.9 19.5 65.9 l 28.3 -27.5 c -6 -11.4 -9.5 -24.6 -9.5 -38.5 Z" fill="#748696" ></path><path d="M 773.4 620.8 l 27.8 -26.9 c -7.6 -9.8 -16.6 -18.4 -26.8 -25.4 l -28.2 27.4 c 10.8 6.1 20.1 14.7 27.2 24.9 Z M 632.1 706.4 l -28.3 27.5 c 6.7 10.3 15 19.6 24.5 27.4 l 27.9 -27 c -10 -7.3 -18.2 -16.9 -24.1 -27.9 Z M 185.2 522.8 c -66.8 0 -121 54.2 -121 121 s 54.2 121 121 121 s 121 -54.2 121 -121 s -54.2 -121 -121 -121 Z m -0.1 203.6 c -45.7 0 -82.7 -37 -82.7 -82.7 s 37 -82.7 82.7 -82.7 s 82.7 37 82.7 82.7 s -37 82.7 -82.7 82.7 Z" fill="#748696" ></path></symbol><symbol id="icon-setting" viewBox="0 0 1024 1024"><path d="M 810.342 334.848 c 16.384 29.184 45.824 46.592 78.592 46.592 c 27.392 0 49.818 22.938 49.818 51.302 v 158.67 c 0 28.16 -22.426 51.2 -49.818 51.2 c -32.87 0 -62.208 17.458 -78.592 46.694 a 94.72 94.72 0 0 0 0 93.286 a 52.07 52.07 0 0 1 -18.278 69.99 L 658.688 931.84 a 49.152 49.152 0 0 1 -67.994 -18.637 a 89.344 89.344 0 0 0 -78.592 -46.745 c -32.768 0 -62.208 17.408 -78.592 46.643 a 49.51 49.51 0 0 1 -43.264 25.6 a 48.589 48.589 0 0 1 -24.73 -6.861 l -133.58 -79.258 a 50.637 50.637 0 0 1 -23.245 -31.078 a 51.763 51.763 0 0 1 4.967 -38.912 a 94.72 94.72 0 0 0 0 -93.286 a 89.446 89.446 0 0 0 -78.592 -46.644 c -27.392 0 -49.818 -23.04 -49.818 -51.25 v -158.72 c 0 -28.16 22.426 -51.2 49.818 -51.2 c 32.768 0 62.208 -17.46 78.592 -46.695 a 94.72 94.72 0 0 0 0 -93.287 a 51.968 51.968 0 0 1 18.227 -69.939 l 133.53 -79.309 a 48.998 48.998 0 0 1 67.993 18.74 a 89.446 89.446 0 0 0 157.184 0 a 49.05 49.05 0 0 1 68.096 -18.842 l 133.376 79.36 c 23.808 14.131 32 45.517 18.278 69.99 a 94.72 94.72 0 0 0 0 93.287 Z M 512 750.899 A 239.258 239.258 0 0 0 750.95 512 A 239.411 239.411 0 0 0 512 273.05 A 239.36 239.36 0 0 0 273.05 512 A 239.36 239.36 0 0 0 512 750.95 Z" fill="#748696" ></path><path d="M 512 642.406 A 130.611 130.611 0 0 1 381.594 512 A 130.611 130.611 0 0 1 512 381.594 A 130.611 130.611 0 0 1 642.406 512 A 130.56 130.56 0 0 1 512 642.406" fill="#748696" ></path></symbol><symbol id="icon-recycle_bin" viewBox="0 0 1024 1024"><path d="M 609.522 769.748 c -17.717 0 -32.041 -14.324 -32.041 -32.04 v -352.46 c 0 -17.718 14.324 -32.042 32.041 -32.042 c 17.718 0 32.042 14.324 32.042 32.042 v 352.46 c 0 17.716 -14.324 32.04 -32.042 32.04 Z m -192.25 0 c -17.718 0 -32.042 -14.324 -32.041 -32.04 v -352.46 c 0 -17.718 14.323 -32.042 32.041 -32.042 s 32.042 14.324 32.042 32.042 v 352.46 c 0 17.716 -14.324 32.04 -32.042 32.04 Z m 512.669 -544.71 H 769.732 v -64.083 c 0 -52.996 -42.777 -96.125 -95.39 -96.125 H 353.187 c -52.997 0 -96.125 43.129 -96.125 96.125 v 64.084 H 96.853 c -17.717 0 -32.041 14.323 -32.041 32.041 c 0 17.718 14.324 32.042 32.042 32.042 h 833.085 c 17.717 0 32.042 -14.324 32.042 -32.042 c 0 -17.717 -14.322 -32.041 -32.04 -32.041 Z m -608.795 -64.083 c 0 -17.656 14.384 -32.041 32.042 -32.041 H 674.34 c 17.558 0 31.308 14.066 31.308 32.041 v 64.084 H 321.146 v -64.084 Z M 737.82 962 H 289.171 c -53 0 -96.125 -43.127 -96.125 -96.126 V 384.768 c 0 -17.689 14.353 -32.042 32.042 -32.042 c 17.685 0 32.041 14.353 32.041 32.042 v 481.106 c 0 17.687 14.387 32.043 32.042 32.043 h 448.65 c 17.682 0 32.04 -14.356 32.04 -32.043 V 386.081 c 0 -17.688 14.32 -32.042 32.043 -32.042 c 17.718 0 32.041 14.354 32.041 32.042 v 479.792 c 0 53.002 -43.132 96.127 -96.126 96.127 Z" fill="#748696" ></path></symbol><symbol id="icon-draw_trendline" viewBox="0 0 1024 1024"><path d="M714 177.3c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM301.8 598.2c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M959.5 90.4L806.4 243.5l-26.2-26.2L933.3 64.2zM663.9 386.5L397.3 653.2 371 627l266.7-266.7zM246.3 803.7L90.4 959.6l-26.2-26.3 155.9-155.9z" fill="#748696" ></path></symbol><symbol id="icon-draw_goldensection" viewBox="0 0 1024 1024"><path d="M92.5 184.4h845.2v37.1H92.5zM93 802.4h845.2v37.1H93zM92.8 670.3H938v37.1H92.8zM370.1 578.5c-29.9 17-63.6 25.5-101.2 25.5-43.3 0-78.2-13.7-104.6-41.1-26.5-27.4-39.7-63.9-39.7-109.6 0-46.2 14.6-84.2 43.9-114 29.2-29.8 66.7-44.6 112.4-44.6 32.3 0 59.7 5.2 82.1 15.5v41.7c-24-15.1-52.5-22.6-85.6-22.6-32.6 0-59.4 11.1-80.6 33.4-21.1 22.3-31.7 51.7-31.7 88.1 0 37.5 9.7 66.7 29.2 87.5 19.4 20.9 45.7 31.3 78.8 31.3 22.8 0 42.2-4.4 58.2-13.1v-81h-64.9v-34.2h103.8v137.2z" fill="#748696" ></path></symbol><symbol id="icon-draw_gannfan" viewBox="0 0 1024 1024"><path d="M64 63.9h37.1v895.7H64z" fill="#748696" ></path><path d="M84.475 913.272l849.439-849.44 26.233 26.234-849.439 849.44z" fill="#748696" ></path><path d="M71.998 925.89L943.86 519.35l15.678 33.623-871.86 406.541z" fill="#748696" ></path><path d="M65.179 943.878l406.54-871.861 33.624 15.678-406.54 871.861z" fill="#748696" ></path><path d="M64 922.5h895.7v37.1H64z" fill="#748696" ></path></symbol><symbol id="icon-draw_percentage" viewBox="0 0 1024 1024"><path d="M92 184.4h845.2v37.1H92zM92 802.4h845.2v37.1H92zM92 670.3h845.2v37.1H92zM486.3 508.3h450v37.1h-450zM486.3 346.4h450v37.1h-450zM112.6 378.9c0-22.8 6.1-40.9 18.2-54.3 12.2-13.4 28.5-20.1 49.2-20.1 19.8 0 35.2 6.2 46.3 18.5 11.1 12.3 16.6 29.5 16.6 51.6 0 21.9-6.1 39.7-18.3 53.4-12.2 13.7-28.5 20.5-48.7 20.5-19.2 0-34.5-6.3-46-19.1-11.5-12.7-17.3-29.5-17.3-50.5z m27.7-1.8c0 15.5 3.4 27.4 10.1 35.8 6.7 8.4 15.9 12.6 27.5 12.6 12 0 21.2-4.3 27.8-13 6.5-8.7 9.8-20.9 9.8-36.8 0-15.5-3.2-27.4-9.6-35.9-6.4-8.4-15.4-12.7-27.1-12.7-11.9 0-21.2 4.4-28.1 13.2-6.9 8.9-10.4 21.1-10.4 36.8z m224-68.4L185.4 588.9h-30l178.8-280.2h30.1z m-84.9 213.1c0-22.8 6.1-40.9 18.2-54.5 12.2-13.6 28.5-20.4 49-20.4 19.7 0 35 6.2 46.2 18.6s16.7 29.9 16.7 52.4c0 21.8-6.2 39.5-18.5 53.1-12.3 13.6-28.5 20.4-48.3 20.4-19.3 0-34.7-6.4-46.1-19.3-11.4-12.9-17.2-29.7-17.2-50.3z m27.5-1.6c0 15.1 3.4 26.9 10.1 35.3 6.7 8.4 15.9 12.7 27.5 12.7 12 0 21.2-4.4 27.8-13.1 6.5-8.7 9.8-21 9.8-36.7 0-15.6-3.3-27.5-9.8-35.8-6.5-8.3-15.5-12.4-26.9-12.4-12.2 0-21.7 4.4-28.4 13.2-6.7 8.9-10.1 21.1-10.1 36.8z" fill="#748696" ></path></symbol><symbol id="icon-draw_waveband" viewBox="0 0 1024 1024"><path d="M92 184.4h845.2v37.1H92zM92 802.4h845.2v37.1H92zM92 670.3h845.2v37.1H92zM486.3 508.3h450v37.1h-450zM486.3 346.4h450v37.1h-450zM298.7 607.9h-97.5v-11.2h16.9c6.2 0 10.6-1.3 13.1-3.8s3.7-6.3 3.7-11.3V317.4c0-10-0.6-15.7-1.9-17-1.3-1.3-6.3-1.9-15-1.9-17.5 0-29.7 3.2-36.6 9.7-6.9 6.4-15.3 23.8-25.3 52.2l-11.2-1.9 16.9-71.2H340l15 71.2-9.4 1.9c-10-27.1-17.8-44.1-23.4-51.2-5.6-7.1-17.2-10.6-34.7-10.6-12.5 0-19.4 0.6-20.6 1.9-1.3 1.3-1.9 7.5-1.9 18.8v262.2c0 5 1.6 8.8 4.7 11.3s7.2 3.8 12.2 3.8h16.9v11.3z" fill="#748696" ></path></symbol><symbol id="icon-draw_resline" viewBox="0 0 1024 1024"><path d="M70.768 939.52l622.178-622.178 13.717 13.718L84.486 953.237z" fill="#748696" ></path><path d="M74.678 936.093l773.28-281.432 6.429 17.666L81.107 953.76z" fill="#748696" ></path><path d="M69.06 942.134l286.527-787.281 19.545 7.114-286.527 787.28z" fill="#748696" ></path><path d="M959.7 959.6H64l12-37.1h883.7z" fill="#748696" ></path></symbol><symbol id="icon-draw_text" viewBox="0 0 1024 1024"><path d="M647.5 959.3H375.2v-31.4h47.1c17.4 0 29.6-3.5 36.7-10.6 7-7 10.5-17.5 10.5-31.6V148c0-28.1-1.8-43.9-5.2-47.4-3.5-3.5-17.5-5.3-41.9-5.3-48.9 0-83 9-102.1 27-19.2 18-42.8 66.6-70.7 145.8l-31.4-5.2 47.1-199h497.5l41.9 199-26.2 5.2c-28-75.6-49.7-123.3-65.5-143.1-15.7-19.8-48-29.7-96.9-29.7-34.9 0-54.2 1.8-57.6 5.3-3.5 3.5-5.2 21-5.2 52.6v732.5c0 14.1 4.3 24.5 13.1 31.6 8.7 7 20 10.6 34 10.6h47.1v31.4z" fill="#748696" ></path></symbol><symbol id="icon-draw_parallelchannel" viewBox="0 0 1024 1024"><path d="M242.242 556.785l333.663-324.036 25.847 26.616L268.09 583.4z" fill="#748696" ></path><path d="M643.4 65.9c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M801.1 593.9L959.3 442l-25.9-26.6-159.1 153.1c10.2 7 19.2 15.6 26.8 25.4zM603.8 733.9L396.6 933.4l25.4 26.2 206.3-198.2c-9.5-7.9-17.7-17.2-24.5-27.5zM773.4 620.8c9.2 13.3 14.6 29.5 14.6 47 0 45.7-37 82.7-82.7 82.7-18.4 0-35.4-6-49.1-16.2l-27.9 27c20.9 17.3 47.8 27.7 77.1 27.7 66.8 0 121-54.2 121-121 0-27.9-9.4-53.6-25.3-74l-27.7 26.8zM622.5 667.8c0-45.7 37-82.7 82.7-82.7 14.9 0 28.8 3.9 40.8 10.8l28.2-27.4c-19.6-13.6-43.3-21.6-69-21.6-66.8 0-121 54.2-121 121 0 24.3 7.2 46.9 19.5 65.9l28.3-27.5c-6-11.4-9.5-24.6-9.5-38.5z" fill="#748696" ></path><path d="M773.4 620.8l27.8-26.9c-7.6-9.8-16.6-18.4-26.8-25.4l-28.2 27.4c10.8 6.1 20.1 14.7 27.2 24.9zM632.1 706.4l-28.3 27.5c6.7 10.3 15 19.6 24.5 27.4l27.9-27c-10-7.3-18.2-16.9-24.1-27.9zM185.2 522.8c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.6c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path></symbol><symbol id="icon-draw_wavemw" viewBox="0 0 1024 1024"><path d="M507.5 269.2L307 826.9h-37.4L63.7 194.5H102l189.5 565.9c15.8-45.6 32-91.3 48.7-137.1 16.7-45.9 32.9-91.9 48.7-138L490 203.7h36.4l200.5 556.8c15.8-46.8 31.9-93.2 48.3-139.4s32.8-92.9 49.2-140.3L923 194.5h37.4l-216 632.4h-34.6L507.5 269.2z" fill="#748696" ></path></symbol><symbol id="icon-draw_triangle" viewBox="0 0 1024 1024"><path d="M185.8 63.9c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM838.2 716.7c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7zM186.2 715.6c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M287.2 818.1h447.6v37H287.2zM167.319 733.019v-451h37v451zM750.725 776.404L235.673 261.353l26.163-26.163L776.887 750.24z" fill="#748696" ></path></symbol><symbol id="icon-draw_pricechannel" viewBox="0 0 1024 1024"><path d="M189.9 191.4c-47.2 47.2-47.2 123.9 0 171.1s123.9 47.2 171.1 0 47.2-123.9 0-171.1-123.8-47.2-171.1 0z m143.9 144c-32.3 32.3-84.6 32.3-117 0s-32.3-84.6 0-117 84.6-32.3 117 0 32.3 84.7 0 117z" fill="#748696" ></path><path d="M336.266 190.085L462.484 63.867l26.162 26.163L362.43 216.248zM66.391 459.906L190.416 335.88l26.163 26.163L92.554 486.068zM636.5 214.9c-47.2 47.2-47.2 123.9 0 171.1 47.2 47.2 123.9 47.2 171.1 0 47.2-47.2 47.2-123.9 0-171.1-47.3-47.2-123.9-47.2-171.1 0z m143.8 144c-32.3 32.3-84.6 32.3-117 0-32.3-32.3-32.3-84.6 0-117 32.3-32.3 84.6-32.3 117 0s32.3 84.7 0 117zM222.5 630.6c-47.2 47.2-47.2 123.9 0 171.1 47.2 47.2 123.9 47.2 171.1 0 47.2-47.2 47.2-123.9 0-171.1s-123.8-47.3-171.1 0z m143.8 143.9c-32.3 32.3-84.6 32.3-117 0s-32.3-84.6 0-117c32.3-32.3 84.6-32.3 117 0 32.4 32.4 32.4 84.7 0 117z" fill="#748696" ></path><path d="M779.835 216.483l152.31-152.31 26.162 26.164-152.309 152.309zM242.663 805.981L90 958.644l-26.163-26.163L216.5 779.82zM658.982 389.674L388.658 659.998l-26.163-26.163L632.82 363.511zM527.694 931.128l404.178-404.179 26.163 26.163-404.179 404.179z" fill="#748696" ></path></symbol><symbol id="icon-draw_circle" viewBox="0 0 1024 1024"><path d="M532.138 469.26l274.426-274.426 26.163 26.163L558.3 495.423z" fill="#748696" ></path><path d="M697.4 65.9H325.5l-263 263v371.9l263 263h371.9l263-263V328.9l-263-263z m225.5 619.3l-241 241H341l-241-241V344.4l241-241h340.8l241 241v340.8z" fill="#748696" ></path><path d="M511.1 513.2m-121.2 0a121.2 121.2 0 1 0 242.4 0 121.2 121.2 0 1 0-242.4 0Z" fill="#748696" ></path></symbol><symbol id="icon-draw_symangle" viewBox="0 0 1024 1024"><path d="M485.845 771.49l448.302-448.3 26.163 26.162-448.302 448.302z" fill="#748696" ></path><path d="M512.217 797.631L64.764 350.178l26.163-26.162L538.38 771.469z" fill="#748696" ></path><path d="M494.6 226.1v535.7l17.5 35.9 20.7-20.6-1.2-16.1V226.1z" fill="#748696" ></path></symbol><symbol id="icon-draw_hline" viewBox="0 0 1024 1024"><path d="M512.6 390.1c-66.8 0-121 54.2-121 121s54.2 121 121 121 121-54.2 121-121-54.2-121-121-121z m-0.1 203.5c-45.7 0-82.7-37-82.7-82.7s37-82.7 82.7-82.7 82.7 37 82.7 82.7-37 82.7-82.7 82.7z" fill="#748696" ></path><path d="M606 492.6h353.4v37H606zM64.5 492.6h340.1v37H64.5z" fill="#748696" ></path></symbol><symbol id="icon-linear_1" viewBox="0 0 1024 1024"><path d="M804.11648 936.36608l3.54816-848.896 35.84 0.1536-3.54816 848.896z" fill="#748696" ></path><path d="M192.09216 444.73344l625.664-285.22496 14.86336 32.6144-625.664 285.21984zM192.1024 692.5312l625.65888-285.21984 14.86336 32.6144-625.664 285.21984z" fill="#748696" ></path><path d="M180.224 964.096l3.072-876.544h35.84l-2.56 821.248 601.088-273.408 14.848 32.768z" fill="#748696" ></path></symbol><symbol id="icon-linear_2" viewBox="0 0 1024 1024"><path d="M732.22144 923.04384l3.55328-848.896 35.84 0.14848-3.55328 848.896z" fill="#748696" ></path><path d="M120.36096 431.38048l625.664-285.21984 14.86848 32.60928-625.664 285.21984zM120.3712 679.18336l625.65888-285.22496 14.86336 32.6144-625.664 285.21984z" fill="#748696" ></path><path d="M108.544 951.296l2.56-877.056h35.84l-2.56 821.248 601.6-273.408 14.848 32.768z" fill="#748696" ></path><path d="M120.22784 431.1552l780.2368-358.39488 14.95552 32.56832L135.18848 463.7184zM120.22784 678.95296l780.2368-358.38976 14.95552 32.5632L135.18848 711.5264zM119.20384 907.07456l781.04064-357.83168 14.92992 32.58368-781.04064 357.83168z" fill="#748696" ></path></symbol><symbol id="icon-linear_3" viewBox="0 0 1024 1024"><path d="M832.52736 936.62208l3.55328-848.896 35.84 0.1536-3.55328 848.896z" fill="#748696" ></path><path d="M164.096 692.38784l683.19744-285.2608 13.80864 33.0752L177.90464 725.4528z" fill="#748696" ></path><path d="M152.064 936.38144l3.07712-848.896 35.84 0.13312-3.07712 848.896z" fill="#748696" ></path></symbol><symbol id="icon-ruler" viewBox="0 0 1024 1024"><path d="M178.176 316.928h35.84v151.552h-35.84zM390.144 316.928h35.84v151.552h-35.84zM284.16 316.928h35.84v151.552h-35.84zM601.6 316.928h35.84v151.552h-35.84zM495.616 316.928h35.84v151.552h-35.84zM707.584 316.928h35.84v151.552h-35.84zM813.056 316.928h35.84v151.552h-35.84z" fill="#748696" ></path><path d="M973.824 727.04H50.176V296.96h923.136v430.08z m-887.808-35.84h851.456V332.8H86.016v358.4z" fill="#748696" ></path></symbol><symbol id="icon-price_line" viewBox="0 0 1024 1024"><path d="M262.144 663.04c-8.192-38.912-43.008-68.608-84.48-68.608-47.616 0-86.528 38.912-86.528 86.528s38.912 86.528 86.528 86.528c41.472 0 76.288-29.184 84.48-68.608h658.432v-35.84H262.144z m-84.48 77.312c-32.768 0-58.88-26.624-58.88-58.88 0-32.768 26.624-58.88 58.88-58.88 26.624 0 48.64 17.408 56.32 40.96 1.536 5.632 2.56 11.776 2.56 17.92 0 6.144-1.024 12.288-2.56 17.92-7.68 23.552-29.696 40.96-56.32 40.96zM91.648 331.776v-37.888h7.68c24.064 0 41.472-5.12 53.248-15.872 9.728-8.704 14.336-19.456 14.336-31.744h44.544V522.24H157.184V331.776H91.648zM362.496 343.552H309.76c0-38.912 11.776-66.56 35.84-82.432 14.848-10.24 33.28-15.36 54.272-15.36 27.648 0 50.176 7.68 68.096 23.04s26.624 36.864 26.624 64c0 20.992-6.144 39.424-18.432 55.808-8.192 10.752-20.992 22.528-38.912 34.304-11.264 8.192-22.528 15.872-33.792 23.552-15.36 11.264-24.576 20.48-28.16 27.136h119.296v48.128H306.688c0-20.48 3.072-37.376 9.216-50.688 9.216-19.456 27.648-39.424 54.784-58.88 22.528-16.384 36.864-27.136 43.52-33.28 17.408-15.36 26.112-31.232 26.112-48.128 0-10.24-3.072-18.944-8.704-26.624-7.168-8.192-16.896-12.288-29.184-12.288-16.384 0-28.16 6.144-34.304 18.432-3.584 6.656-5.632 17.92-5.632 33.28zM626.688 400.896v-38.912h8.704c12.8 0 22.528-1.536 29.184-5.12 11.264-5.632 16.896-16.384 16.896-32.256 0-8.192-2.048-15.36-5.632-21.504-6.144-9.216-15.36-13.824-28.672-13.824-15.872 0-27.136 6.144-32.768 18.432-3.072 6.656-4.608 15.36-4.608 26.624h-50.688c0-27.136 7.168-48.128 22.016-63.488 15.872-16.384 38.912-25.088 69.12-25.088 22.528 0 40.96 5.632 56.32 16.384 19.456 13.824 29.184 33.792 29.184 60.416 0 12.8-3.584 24.576-10.24 34.304-5.632 8.192-13.312 14.336-22.528 18.432 13.312 5.12 23.552 12.8 30.72 24.064 7.168 11.264 10.752 24.576 10.752 40.96 0 26.112-8.704 47.616-26.112 64-17.408 16.384-39.936 25.088-68.096 25.088-23.04 0-41.984-4.608-57.344-13.824-25.6-14.848-38.4-40.96-38.4-78.336h53.248c-0.512 12.288 1.536 22.016 5.632 29.696 6.656 12.288 17.92 18.432 34.304 18.432 11.776 0 20.992-3.584 28.16-10.752 8.192-8.192 12.288-19.968 12.288-34.816 0-16.384-7.168-27.648-21.504-33.792-8.704-3.584-22.016-5.12-39.936-5.12z" fill="#748696" ></path></symbol><symbol id="icon-vertical_line" viewBox="0 0 1024 1024"><path d="M632.832 512c0-66.56-54.272-120.832-120.832-120.832S391.168 444.928 391.168 512 445.44 632.832 512 632.832s120.832-54.272 120.832-120.832z m-203.264-0.512c0-45.568 36.864-82.944 82.944-82.944s82.944 36.864 82.944 82.944-36.864 82.944-82.944 82.944-82.944-36.864-82.944-82.944z" fill="#748696" ></path><path d="M530.432 605.184v353.28h-36.864v-353.28h36.864z m0-541.696v339.968h-36.864V63.488h36.864z" fill="#748696" ></path></symbol><symbol id="icon-waveruler" viewBox="0 0 1024 1024"><path d="M72.704 210.944H936.96v36.864H72.704zM72.704 343.04H936.96v36.864H72.704zM72.704 475.136H936.96v36.864H72.704z" fill="#748696" ></path><path d="M76.8 872.96l-33.792-11.264c82.432-249.856 173.056-374.272 276.992-380.928 61.44-4.096 105.984 34.816 149.504 72.192 37.888 32.768 73.728 64 116.736 60.928 62.464-4.608 96.256-29.696 178.176-265.216l33.792 11.776c-83.968 242.688-123.904 283.136-209.408 289.28-57.856 4.096-100.864-33.28-142.848-69.632-39.424-34.304-76.8-66.56-123.392-63.488-86.016 5.12-170.496 128.512-245.76 356.352z" fill="#748696" ></path></symbol><symbol id="icon-draw_box" viewBox="0 0 1024 1024"><path d="M84.48 721.408h877.056v69.632H84.48zM920.576 266.24v348.16H125.44V266.24h795.136m40.96-40.96H84.48v430.08h877.056V225.28z" fill="#748696" ></path></symbol><symbol id="icon-draw_head_shoulders_bt" viewBox="0 0 1024 1024"><path d="M626.688 870.4h-1.536c-9.216-1.024-16.896-7.68-18.432-17.408L521.216 298.496 421.376 853.504c-1.536 9.216-9.728 16.384-18.944 16.896-9.216 0.512-17.92-5.632-20.992-14.848l-97.792-329.216-133.12 314.368-37.888-15.872 155.136-367.104c3.584-8.192 11.264-12.8 19.968-12.288 8.704 0.512 15.872 6.144 18.432 14.848l89.6 301.568L502.272 170.496c1.536-9.728 10.24-16.896 20.48-16.896s18.432 7.68 19.968 17.408l91.136 591.36L737.792 445.44c2.56-8.192 10.24-13.824 18.944-14.336 8.704-0.512 16.384 5.12 19.456 13.824l134.656 375.296-38.4 13.824-114.176-319.488-112.128 342.016c-2.56 8.192-10.752 13.824-19.456 13.824z" fill="#748696" ></path></symbol><symbol id="icon-draw_p_rays_lines" viewBox="0 0 1024 1024"><path d="M799.744 403.456c9.216 13.312 14.848 29.696 14.848 47.104 0 45.568-36.864 82.944-82.944 82.944-18.432 0-35.328-6.144-49.152-16.384-10.24-7.168-18.432-16.896-24.064-27.648l-17.92 17.408 17.92-17.408c-6.144-11.264-9.728-24.576-9.728-38.4 0-45.568 36.864-82.944 82.944-82.944 14.848 0 28.672 4.096 40.96 10.752l28.16-27.648c-19.456-13.824-43.52-21.504-69.12-21.504-66.56 0-120.832 54.272-120.832 120.832 0 24.064 7.168 46.592 19.456 66.048l-202.752 196.096c-20.48-16.384-46.592-26.112-75.264-26.112-66.56 0-120.832 54.272-120.832 120.832s53.76 120.832 120.32 120.832 120.832-54.272 120.832-120.832c0-25.088-7.68-48.64-20.992-68.096l202.24-195.584c20.992 17.408 47.616 27.648 77.312 27.648 66.56 0 120.832-54.272 120.832-120.832 0-27.648-9.216-53.76-25.088-74.24l-27.136 27.136z m-448 486.4c-45.568 0-82.944-36.864-82.944-82.944s36.864-82.944 82.944-82.944 82.944 36.864 82.944 82.944-36.864 82.944-82.944 82.944z" fill="#748696" ></path><path d="M827.392 376.832l158.208-152.064-26.112-26.624-159.232 153.088-28.16 27.136c10.752 6.144 19.968 14.848 27.136 25.088l28.16-26.624zM379.904 401.408c0-27.648-9.216-52.736-24.576-73.216l215.04-205.824-25.6-26.624L328.192 302.08c-19.456-13.824-43.52-22.016-69.632-22.016-66.56 0-120.832 54.272-120.832 120.832s54.272 120.832 120.832 120.832 121.344-53.76 121.344-120.32z m-204.288-0.512c0-45.568 36.864-82.944 82.944-82.944s82.944 37.376 82.944 82.944-36.864 82.944-82.944 82.944-82.944-36.864-82.944-82.944z" fill="#748696" ></path></symbol><symbol id="icon-draw_hlinesegment" viewBox="0 0 1024 1024"><path d="M276.992 489.984l471.04 6.656-0.512 37.376-471.04-6.656 0.512-37.376z" fill="#748696" ></path><path d="M926.72 427.008c-40.448-40.448-117.248-54.272-171.008 0-47.104 47.104-47.104 123.904 0 171.008s123.904 47.104 171.008 0 47.616-123.904 0-171.008z m-148.992 143.872c-32.256-32.256-32.256-84.48 0-116.736 32.256-32.256 84.48-32.256 116.736 0 32.256 32.256 32.256 84.48 0 116.736-32.256 32.256-84.48 32.256-116.736 0zM268.288 425.984C221.184 378.88 144.384 378.88 97.28 425.984s-47.104 123.904 0 171.008 123.904 47.104 171.008 0 47.104-123.904 0-171.008z m-143.872 143.872c-32.256-32.256-32.256-84.48 0-116.736 32.256-32.256 84.48-32.256 116.736 0 32.256 32.256 32.256 84.48 0 116.736-32.256 32.256-84.48 32.256-116.736 0z" fill="#748696" ></path></symbol></svg>',(c=>{var l=(h=(h=document.getElementsByTagName("script"))[h.length-1]).getAttribute("data-injectcss"),h=h.getAttribute("data-disable-injectsvg");if(!h){var i,a,t,o,s,z=function(l,h){h.parentNode.insertBefore(l,h)};if(l&&!c.__iconfont__svg__cssinject__){c.__iconfont__svg__cssinject__=!0;try{document.write("<style>.svgfont {display: inline-block;width: 1em;height: 1em;fill: currentColor;vertical-align: -0.1em;font-size:16px;}</style>")}catch(l){console&&console.log(l)}}i=function(){var l,h=document.createElement("div");h.innerHTML=c._iconfont_svg_string_4529603,(h=h.getElementsByTagName("svg")[0])&&(h.setAttribute("aria-hidden","true"),h.style.position="absolute",h.style.width=0,h.style.height=0,h.style.overflow="hidden",h=h,(l=document.body).firstChild?z(h,l.firstChild):l.appendChild(h))},document.addEventListener?~["complete","loaded","interactive"].indexOf(document.readyState)?setTimeout(i,0):(a=function(){document.removeEventListener("DOMContentLoaded",a,!1),i()},document.addEventListener("DOMContentLoaded",a,!1)):document.attachEvent&&(t=i,o=c.document,s=!1,d(),o.onreadystatechange=function(){"complete"==o.readyState&&(o.onreadystatechange=null,p())})}function p(){s||(s=!0,t())}function d(){try{o.documentElement.doScroll("left")}catch(l){return void setTimeout(d,50)}p()}})(window);
|
|
@@ -5,6 +5,20 @@
|
|
|
5
5
|
"css_prefix_text": "icon-",
|
|
6
6
|
"description": "hqchart画图工具",
|
|
7
7
|
"glyphs": [
|
|
8
|
+
{
|
|
9
|
+
"icon_id": "6151227",
|
|
10
|
+
"name": "unlock",
|
|
11
|
+
"font_class": "unlock",
|
|
12
|
+
"unicode": "e7fa",
|
|
13
|
+
"unicode_decimal": 59386
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"icon_id": "6151228",
|
|
17
|
+
"name": "lock",
|
|
18
|
+
"font_class": "lock",
|
|
19
|
+
"unicode": "e7fb",
|
|
20
|
+
"unicode_decimal": 59387
|
|
21
|
+
},
|
|
8
22
|
{
|
|
9
23
|
"icon_id": "392156",
|
|
10
24
|
"name": "箭头",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -7564,7 +7564,7 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
7564
7564
|
this.SelectChartDrawPicture=null;
|
|
7565
7565
|
this.ClearChartDrawPicture(drawPictrueData.ChartDrawPicture);
|
|
7566
7566
|
}
|
|
7567
|
-
else
|
|
7567
|
+
else
|
|
7568
7568
|
{
|
|
7569
7569
|
this.UpDownDrag=null; //画图优先
|
|
7570
7570
|
this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
@@ -7577,19 +7577,16 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
7577
7577
|
|
|
7578
7578
|
if (bDraw) this.Draw();
|
|
7579
7579
|
|
|
7580
|
-
drawPictrueData.ChartDrawPicture.
|
|
7580
|
+
if (drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
7581
|
+
drawPictrueData.ChartDrawPicture.Status=20;
|
|
7582
|
+
|
|
7581
7583
|
drawPictrueData.ChartDrawPicture.ValueToPoint();
|
|
7582
7584
|
drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;
|
|
7583
7585
|
//this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
7584
7586
|
//this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
7585
7587
|
this.SelectChartDrawPicture.DragInfo={Click:{X:e.clientX,Y:e.clientY}};
|
|
7586
7588
|
}
|
|
7587
|
-
|
|
7588
|
-
{
|
|
7589
|
-
this.CurrentChartDrawPicture=null;
|
|
7590
|
-
this.SelectChartDrawPicture=null;
|
|
7591
|
-
}
|
|
7592
|
-
|
|
7589
|
+
|
|
7593
7590
|
var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE); //选中画图工具事件
|
|
7594
7591
|
if (event && event.Callback)
|
|
7595
7592
|
{
|
|
@@ -7778,7 +7775,7 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
7778
7775
|
var sendData={X:x, Y:y, e:e, ChartDrag:this.CustomChartDrag, Drag:drag };
|
|
7779
7776
|
this.TryDragMove_CustomChartDrag(sendData);
|
|
7780
7777
|
}
|
|
7781
|
-
else if (this.CurrentChartDrawPicture)
|
|
7778
|
+
else if (this.CurrentChartDrawPicture && this.CurrentChartDrawPicture.EnableMove===true)
|
|
7782
7779
|
{
|
|
7783
7780
|
var drawPicture=this.CurrentChartDrawPicture;
|
|
7784
7781
|
if (drawPicture.Status==1 || drawPicture.Status==2)
|
|
@@ -8585,21 +8582,13 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
8585
8582
|
var pixelTatio = GetDevicePixelRatio(); //鼠标移动坐标是原始坐标 需要乘以放大倍速
|
|
8586
8583
|
if (this.GetChartDrawPictureByPoint(drawPictrueData))
|
|
8587
8584
|
{
|
|
8588
|
-
if (drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
8589
|
-
{
|
|
8585
|
+
if (drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
8590
8586
|
drawPictrueData.ChartDrawPicture.Status=20;
|
|
8591
|
-
|
|
8592
|
-
|
|
8593
|
-
|
|
8594
|
-
|
|
8595
|
-
|
|
8596
|
-
|
|
8597
|
-
}
|
|
8598
|
-
else
|
|
8599
|
-
{
|
|
8600
|
-
this.CurrentChartDrawPicture=null;
|
|
8601
|
-
this.SelectChartDrawPicture=null;
|
|
8602
|
-
}
|
|
8587
|
+
drawPictrueData.ChartDrawPicture.ValueToPoint();
|
|
8588
|
+
drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;
|
|
8589
|
+
drawPictrueData.ChartDrawPicture.IsSelected=true;
|
|
8590
|
+
this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
8591
|
+
this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
8603
8592
|
|
|
8604
8593
|
var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE); //选中画图工具事件
|
|
8605
8594
|
if (event && event.Callback)
|
|
@@ -8734,7 +8723,7 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
8734
8723
|
|
|
8735
8724
|
//JSConsole.Chart.Log(`[JSChartContainer::OnTouchMove] moveAngle=${moveAngle} , moveUpDown=${moveUpDown}, moveSetp=${moveSetp}`);
|
|
8736
8725
|
|
|
8737
|
-
if (this.CurrentChartDrawPicture)
|
|
8726
|
+
if (this.CurrentChartDrawPicture && this.CurrentChartDrawPicture.EnableMove===true)
|
|
8738
8727
|
{
|
|
8739
8728
|
var drawPicture=this.CurrentChartDrawPicture;
|
|
8740
8729
|
if (drawPicture.Status==1 || drawPicture.Status==2)
|
|
@@ -83530,19 +83519,12 @@ function MinuteChartContainer(uielement,offscreenElement,cacheElement)
|
|
|
83530
83519
|
if (this.GetChartDrawPictureByPoint(drawPictrueData))
|
|
83531
83520
|
{
|
|
83532
83521
|
if (drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
83533
|
-
{
|
|
83534
83522
|
drawPictrueData.ChartDrawPicture.Status=20;
|
|
83535
|
-
|
|
83536
|
-
|
|
83537
|
-
|
|
83538
|
-
|
|
83539
|
-
|
|
83540
|
-
}
|
|
83541
|
-
else
|
|
83542
|
-
{
|
|
83543
|
-
this.CurrentChartDrawPicture=null;
|
|
83544
|
-
this.SelectChartDrawPicture=null;
|
|
83545
|
-
}
|
|
83523
|
+
drawPictrueData.ChartDrawPicture.ValueToPoint();
|
|
83524
|
+
drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;
|
|
83525
|
+
drawPictrueData.ChartDrawPicture.IsSelected=true;
|
|
83526
|
+
this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
83527
|
+
this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
83546
83528
|
|
|
83547
83529
|
let event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE); //选中画图工具事件
|
|
83548
83530
|
if (event && event.Callback)
|
|
@@ -83631,7 +83613,7 @@ function MinuteChartContainer(uielement,offscreenElement,cacheElement)
|
|
|
83631
83613
|
var moveUpDown=Math.abs(drag.LastMove.Y-touches[0].clientY);
|
|
83632
83614
|
moveSetp=parseInt(moveSetp);
|
|
83633
83615
|
|
|
83634
|
-
if (this.CurrentChartDrawPicture)
|
|
83616
|
+
if (this.CurrentChartDrawPicture && this.CurrentChartDrawPicture.EnableMove===true)
|
|
83635
83617
|
{
|
|
83636
83618
|
var drawPicture=this.CurrentChartDrawPicture;
|
|
83637
83619
|
if (drawPicture.Status==1 || drawPicture.Status==2)
|
|
@@ -138413,7 +138395,7 @@ function ScrollBarBGChart()
|
|
|
138413
138395
|
|
|
138414
138396
|
|
|
138415
138397
|
|
|
138416
|
-
var HQCHART_VERSION="1.1.
|
|
138398
|
+
var HQCHART_VERSION="1.1.13742";
|
|
138417
138399
|
|
|
138418
138400
|
function PrintHQChartVersion()
|
|
138419
138401
|
{
|
|
@@ -7608,7 +7608,7 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
7608
7608
|
this.SelectChartDrawPicture=null;
|
|
7609
7609
|
this.ClearChartDrawPicture(drawPictrueData.ChartDrawPicture);
|
|
7610
7610
|
}
|
|
7611
|
-
else
|
|
7611
|
+
else
|
|
7612
7612
|
{
|
|
7613
7613
|
this.UpDownDrag=null; //画图优先
|
|
7614
7614
|
this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
@@ -7621,19 +7621,16 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
7621
7621
|
|
|
7622
7622
|
if (bDraw) this.Draw();
|
|
7623
7623
|
|
|
7624
|
-
drawPictrueData.ChartDrawPicture.
|
|
7624
|
+
if (drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
7625
|
+
drawPictrueData.ChartDrawPicture.Status=20;
|
|
7626
|
+
|
|
7625
7627
|
drawPictrueData.ChartDrawPicture.ValueToPoint();
|
|
7626
7628
|
drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;
|
|
7627
7629
|
//this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
7628
7630
|
//this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
7629
7631
|
this.SelectChartDrawPicture.DragInfo={Click:{X:e.clientX,Y:e.clientY}};
|
|
7630
7632
|
}
|
|
7631
|
-
|
|
7632
|
-
{
|
|
7633
|
-
this.CurrentChartDrawPicture=null;
|
|
7634
|
-
this.SelectChartDrawPicture=null;
|
|
7635
|
-
}
|
|
7636
|
-
|
|
7633
|
+
|
|
7637
7634
|
var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE); //选中画图工具事件
|
|
7638
7635
|
if (event && event.Callback)
|
|
7639
7636
|
{
|
|
@@ -7822,7 +7819,7 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
7822
7819
|
var sendData={X:x, Y:y, e:e, ChartDrag:this.CustomChartDrag, Drag:drag };
|
|
7823
7820
|
this.TryDragMove_CustomChartDrag(sendData);
|
|
7824
7821
|
}
|
|
7825
|
-
else if (this.CurrentChartDrawPicture)
|
|
7822
|
+
else if (this.CurrentChartDrawPicture && this.CurrentChartDrawPicture.EnableMove===true)
|
|
7826
7823
|
{
|
|
7827
7824
|
var drawPicture=this.CurrentChartDrawPicture;
|
|
7828
7825
|
if (drawPicture.Status==1 || drawPicture.Status==2)
|
|
@@ -8629,21 +8626,13 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
8629
8626
|
var pixelTatio = GetDevicePixelRatio(); //鼠标移动坐标是原始坐标 需要乘以放大倍速
|
|
8630
8627
|
if (this.GetChartDrawPictureByPoint(drawPictrueData))
|
|
8631
8628
|
{
|
|
8632
|
-
if (drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
8633
|
-
{
|
|
8629
|
+
if (drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
8634
8630
|
drawPictrueData.ChartDrawPicture.Status=20;
|
|
8635
|
-
|
|
8636
|
-
|
|
8637
|
-
|
|
8638
|
-
|
|
8639
|
-
|
|
8640
|
-
|
|
8641
|
-
}
|
|
8642
|
-
else
|
|
8643
|
-
{
|
|
8644
|
-
this.CurrentChartDrawPicture=null;
|
|
8645
|
-
this.SelectChartDrawPicture=null;
|
|
8646
|
-
}
|
|
8631
|
+
drawPictrueData.ChartDrawPicture.ValueToPoint();
|
|
8632
|
+
drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;
|
|
8633
|
+
drawPictrueData.ChartDrawPicture.IsSelected=true;
|
|
8634
|
+
this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
8635
|
+
this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
8647
8636
|
|
|
8648
8637
|
var event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE); //选中画图工具事件
|
|
8649
8638
|
if (event && event.Callback)
|
|
@@ -8778,7 +8767,7 @@ function JSChartContainer(uielement, OffscreenElement, cacheElement)
|
|
|
8778
8767
|
|
|
8779
8768
|
//JSConsole.Chart.Log(`[JSChartContainer::OnTouchMove] moveAngle=${moveAngle} , moveUpDown=${moveUpDown}, moveSetp=${moveSetp}`);
|
|
8780
8769
|
|
|
8781
|
-
if (this.CurrentChartDrawPicture)
|
|
8770
|
+
if (this.CurrentChartDrawPicture && this.CurrentChartDrawPicture.EnableMove===true)
|
|
8782
8771
|
{
|
|
8783
8772
|
var drawPicture=this.CurrentChartDrawPicture;
|
|
8784
8773
|
if (drawPicture.Status==1 || drawPicture.Status==2)
|
|
@@ -83574,19 +83563,12 @@ function MinuteChartContainer(uielement,offscreenElement,cacheElement)
|
|
|
83574
83563
|
if (this.GetChartDrawPictureByPoint(drawPictrueData))
|
|
83575
83564
|
{
|
|
83576
83565
|
if (drawPictrueData.ChartDrawPicture.EnableMove==true)
|
|
83577
|
-
{
|
|
83578
83566
|
drawPictrueData.ChartDrawPicture.Status=20;
|
|
83579
|
-
|
|
83580
|
-
|
|
83581
|
-
|
|
83582
|
-
|
|
83583
|
-
|
|
83584
|
-
}
|
|
83585
|
-
else
|
|
83586
|
-
{
|
|
83587
|
-
this.CurrentChartDrawPicture=null;
|
|
83588
|
-
this.SelectChartDrawPicture=null;
|
|
83589
|
-
}
|
|
83567
|
+
drawPictrueData.ChartDrawPicture.ValueToPoint();
|
|
83568
|
+
drawPictrueData.ChartDrawPicture.MovePointIndex=drawPictrueData.PointIndex;
|
|
83569
|
+
drawPictrueData.ChartDrawPicture.IsSelected=true;
|
|
83570
|
+
this.CurrentChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
83571
|
+
this.SelectChartDrawPicture=drawPictrueData.ChartDrawPicture;
|
|
83590
83572
|
|
|
83591
83573
|
let event=this.GetEventCallback(JSCHART_EVENT_ID.ON_CLICK_DRAWPICTURE); //选中画图工具事件
|
|
83592
83574
|
if (event && event.Callback)
|
|
@@ -83675,7 +83657,7 @@ function MinuteChartContainer(uielement,offscreenElement,cacheElement)
|
|
|
83675
83657
|
var moveUpDown=Math.abs(drag.LastMove.Y-touches[0].clientY);
|
|
83676
83658
|
moveSetp=parseInt(moveSetp);
|
|
83677
83659
|
|
|
83678
|
-
if (this.CurrentChartDrawPicture)
|
|
83660
|
+
if (this.CurrentChartDrawPicture && this.CurrentChartDrawPicture.EnableMove===true)
|
|
83679
83661
|
{
|
|
83680
83662
|
var drawPicture=this.CurrentChartDrawPicture;
|
|
83681
83663
|
if (drawPicture.Status==1 || drawPicture.Status==2)
|
|
@@ -141261,6 +141243,8 @@ var JS_DRAWTOOL_MENU_ID=
|
|
|
141261
141243
|
CMD_CHANGE_FONT_COLOR_ID:7, //切换字体颜色
|
|
141262
141244
|
CMD_CHANGE_BG_COLOR_ID:8, //切换背景色
|
|
141263
141245
|
CMD_CHANGE_BORDER_COLOR_ID:9, //边框颜色
|
|
141246
|
+
|
|
141247
|
+
CMD_LOCK_DRAW_CHART_ID:10, //上锁
|
|
141264
141248
|
};
|
|
141265
141249
|
|
|
141266
141250
|
function JSDialogDrawTool()
|
|
@@ -141857,6 +141841,7 @@ function JSDialogModifyDraw()
|
|
|
141857
141841
|
this.BGColorButton=null;
|
|
141858
141842
|
this.FontColorButton=null;
|
|
141859
141843
|
this.BorderColorButton=null;
|
|
141844
|
+
this.LockButton=null;
|
|
141860
141845
|
|
|
141861
141846
|
this.RandomLineColor=["rgb(255,69,0)", "rgb(173,255,47)", "rgb(238,154,73)", "rgb(255,105,180)"]; //线段颜色
|
|
141862
141847
|
this.RandomBGColor=["rgba(210,251,209,0.8)", "rgb(217,217,253)", "rgb(255,208,204)", "rgb(252,249,206)"]; //背景颜色
|
|
@@ -141869,7 +141854,9 @@ function JSDialogModifyDraw()
|
|
|
141869
141854
|
{ Title:"修改字体颜色", ClassName: 'hqchart_drawtool icon-zitiyanse', Type:2, Data:{ ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_FONT_COLOR_ID }},
|
|
141870
141855
|
{ Title:"修改背景颜色", ClassName: 'hqchart_drawtool icon-zitibeijingse', Type:2, Data:{ ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BG_COLOR_ID }},
|
|
141871
141856
|
{ Title:"修改边框颜色", ClassName: 'hqchart_drawtool icon-biankuang', Type:2, Data:{ ID:JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BORDER_COLOR_ID }},
|
|
141872
|
-
{ Title:"
|
|
141857
|
+
{ Title:"上锁", ClassName: 'hqchart_drawtool icon-lock', Type:2, Data:{ ID:JS_DRAWTOOL_MENU_ID.CMD_LOCK_DRAW_CHART_ID }},
|
|
141858
|
+
{ Title:"删除图形", ClassName: 'hqchart_drawtool icon-recycle_bin', Type:2, Data:{ ID:JS_DRAWTOOL_MENU_ID.CMD_DELETE_DRAW_CHART_ID }},
|
|
141859
|
+
|
|
141873
141860
|
];
|
|
141874
141861
|
|
|
141875
141862
|
this.Inital=function(hqchart)
|
|
@@ -141953,6 +141940,10 @@ function JSDialogModifyDraw()
|
|
|
141953
141940
|
this.BorderColorButton=data;
|
|
141954
141941
|
divItem.style.display="none";
|
|
141955
141942
|
break;
|
|
141943
|
+
case JS_DRAWTOOL_MENU_ID.CMD_LOCK_DRAW_CHART_ID:
|
|
141944
|
+
this.LockButton=data;
|
|
141945
|
+
this.LockButton.Span.style['color']="rgb(220,220,220)";
|
|
141946
|
+
break;
|
|
141956
141947
|
|
|
141957
141948
|
}
|
|
141958
141949
|
|
|
@@ -141982,6 +141973,9 @@ function JSDialogModifyDraw()
|
|
|
141982
141973
|
case JS_DRAWTOOL_MENU_ID.CMD_CHANGE_BORDER_COLOR_ID:
|
|
141983
141974
|
this.ModifyBorderColor();
|
|
141984
141975
|
break;
|
|
141976
|
+
case JS_DRAWTOOL_MENU_ID.CMD_LOCK_DRAW_CHART_ID:
|
|
141977
|
+
this.ModifyLockChart();
|
|
141978
|
+
break;
|
|
141985
141979
|
}
|
|
141986
141980
|
}
|
|
141987
141981
|
|
|
@@ -142106,6 +142100,14 @@ function JSDialogModifyDraw()
|
|
|
142106
142100
|
this.HQChart.Draw();
|
|
142107
142101
|
}
|
|
142108
142102
|
|
|
142103
|
+
this.ModifyLockChart=function()
|
|
142104
|
+
{
|
|
142105
|
+
if (!this.ChartPicture || !this.HQChart) return;
|
|
142106
|
+
this.ChartPicture.EnableMove=!this.ChartPicture.EnableMove;
|
|
142107
|
+
|
|
142108
|
+
if (this.LockButton) this.LockButton.Span.style['color']=this.ChartPicture.EnableMove?"rgb(220,220,220)":"rgb(0,0,0)";
|
|
142109
|
+
}
|
|
142110
|
+
|
|
142109
142111
|
this.ModifyBorderColor=function()
|
|
142110
142112
|
{
|
|
142111
142113
|
if (!this.ChartPicture || !this.HQChart) return;
|
|
@@ -142202,7 +142204,12 @@ function JSDialogModifyDraw()
|
|
|
142202
142204
|
item.Span.style['color']=borderColor;
|
|
142203
142205
|
}
|
|
142204
142206
|
}
|
|
142205
|
-
|
|
142207
|
+
|
|
142208
|
+
if (this.LockButton)
|
|
142209
|
+
{
|
|
142210
|
+
var item=this.LockButton;
|
|
142211
|
+
item.Span.style['color']=this.ChartPicture.EnableMove?"rgb(220,220,220)":"rgb(0,0,0)";
|
|
142212
|
+
}
|
|
142206
142213
|
}
|
|
142207
142214
|
|
|
142208
142215
|
this.OnMouseDownTitle=function(e)
|
|
@@ -142944,7 +142951,7 @@ function HQChartScriptWorker()
|
|
|
142944
142951
|
|
|
142945
142952
|
|
|
142946
142953
|
|
|
142947
|
-
var HQCHART_VERSION="1.1.
|
|
142954
|
+
var HQCHART_VERSION="1.1.13742";
|
|
142948
142955
|
|
|
142949
142956
|
function PrintHQChartVersion()
|
|
142950
142957
|
{
|