feat: 后端全量更新 - 含所有本次需求
- Contract.php: 返回合约账户余额(balance_contract) - My.php: 地址管理增加BTC/ETH - AppContract.php: 一键平仓(closeall) - AppProxy.php: 代理专属注册链接 + 分级权限(L1/L2) - site.php: 手续费减半(0.018→0.009) - agent_permission_setup.sql: 代理权限SQL - crypto_news_crawler.py: 新闻自动采集脚本
This commit is contained in:
Executable
+97
@@ -0,0 +1,97 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<title>Bar Charts</title>
|
||||
<!-- Copyright 1998-2020 by Northwoods Software Corporation. -->
|
||||
<meta name="description" content="GoJS nodes containing simple bar charts." />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<script src="../release/go.js"></script>
|
||||
<script src="../assets/js/goSamples.js"></script> <!-- this is only for the GoJS Samples framework -->
|
||||
<script id="code">
|
||||
function init() {
|
||||
if (window.goSamples) goSamples(); // init for these samples -- you don't need to call this
|
||||
var $ = go.GraphObject.make; // for conciseness in defining templates
|
||||
|
||||
myDiagram =
|
||||
$(go.Diagram, "myDiagramDiv");
|
||||
|
||||
// the template for each item in a node's array of item data
|
||||
var itemTempl =
|
||||
$(go.Panel, "TableColumn",
|
||||
$(go.Shape,
|
||||
{ row: 0, alignment: go.Spot.Bottom },
|
||||
{ fill: "slateblue", stroke: null, width: 40 },
|
||||
new go.Binding("height", "val"),
|
||||
new go.Binding("fill", "color")),
|
||||
$(go.TextBlock,
|
||||
{ row: 1 },
|
||||
new go.Binding("text")),
|
||||
{
|
||||
toolTip:
|
||||
$("ToolTip",
|
||||
$(go.TextBlock, { margin: 4 },
|
||||
new go.Binding("text", "val"))
|
||||
)
|
||||
}
|
||||
);
|
||||
|
||||
myDiagram.nodeTemplate =
|
||||
$(go.Node, "Auto",
|
||||
$(go.Shape,
|
||||
{ fill: "white" }),
|
||||
$(go.Panel, "Vertical",
|
||||
$(go.Panel, "Table",
|
||||
{ margin: 6, itemTemplate: itemTempl },
|
||||
new go.Binding("itemArray", "items")),
|
||||
$(go.TextBlock,
|
||||
{ font: "bold 12pt sans-serif" },
|
||||
new go.Binding("text"))
|
||||
)
|
||||
);
|
||||
|
||||
var nodeDataArray = [
|
||||
{
|
||||
key: 1,
|
||||
text: "Before",
|
||||
items: [{ text: "first", val: 50 },
|
||||
{ text: "second", val: 70 },
|
||||
{ text: "third", val: 60 },
|
||||
{ text: "fourth", val: 80 }]
|
||||
},
|
||||
{
|
||||
key: 2,
|
||||
text: "After",
|
||||
items: [{ text: "first", val: 50 },
|
||||
{ text: "second", val: 70 },
|
||||
{ text: "third", val: 75, color: "red" },
|
||||
{ text: "fourth", val: 80 }]
|
||||
}
|
||||
];
|
||||
var linkDataArray = [
|
||||
{ from: 1, to: 2 }
|
||||
];
|
||||
myDiagram.model = $(go.GraphLinksModel,
|
||||
{
|
||||
copiesArrays: true,
|
||||
copiesArrayObjects: true,
|
||||
nodeDataArray: nodeDataArray,
|
||||
linkDataArray: linkDataArray
|
||||
});
|
||||
}
|
||||
</script>
|
||||
</head>
|
||||
<body onload="init()">
|
||||
<div id="sample">
|
||||
<div id="myDiagramDiv" style="background-color: white; border: solid 1px black; width: 100%; height: 500px"></div>
|
||||
<p>
|
||||
Each node contains a Table Panel whose <a>Panel.itemArray</a> is data bound to the "items" property which holds an Array of data objects.
|
||||
That Table Panel has an <a>Panel.itemTemplate</a> which creates a bar (a rectangular Shape) and a TextBlock label for each item.
|
||||
Each bar also has a tooltip showing the value.
|
||||
</p>
|
||||
<p>
|
||||
For more sophisticated charts within nodes, see the <a href="canvases.html">Canvas Charts</a> sample.
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user