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:
+47
@@ -0,0 +1,47 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Webpack Minimal GoJS Sample</title>
|
||||
<meta name="description" content="An almost minimal diagram using a very simple node template and the default link template." />
|
||||
<!-- Copyright 1998-2020 by Northwoods Software Corporation. -->
|
||||
<meta charset="UTF-8">
|
||||
|
||||
<script src="minimal.js"></script>
|
||||
|
||||
<script>
|
||||
window.onload = function() {
|
||||
// window.init() was created in minimal.js, which was built from minimal.ts with webpack. See readme for details.
|
||||
init();
|
||||
}
|
||||
</script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<div id="sample">
|
||||
<!-- The DIV for the Diagram needs an explicit size or else we won't see anything.
|
||||
This also adds a border to help see the edges of the viewport. -->
|
||||
<div id="myDiagramDiv" style="border: solid 1px black; width:400px; height:400px"></div>
|
||||
|
||||
<p>
|
||||
This sample uses a JavaScript file that is built with Webpack. If you do not see a diagram, you may need to build first.
|
||||
See the <a href="./readme.md">readme.md in this directory</a> for details.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
This minimal sample contains as few GoJS modules as possible when building from the source.
|
||||
As a result, there is almost no interactivity possible, as no tools or the CommandHandler exist.
|
||||
There are also no Layouts (except the base Layout), Overviews, or Palettes.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
If you look at the <a href="./minimal-index.ts">minimal-index.ts</a> you will see what is dis-included.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
For an example of building GoJS from source with all modules, see the <a href="../maximalSource/maximal.html">Maximal project</a> adjacent to this directory.
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user