|
@@ -21,6 +21,7 @@
|
|
|
src="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/3.3.0/mdb.min.js"
|
|
|
></script>
|
|
|
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
|
|
|
+<script src="echarts.min.js"></script>
|
|
|
</head>
|
|
|
<body>
|
|
|
|
|
@@ -174,10 +175,36 @@
|
|
|
</div>
|
|
|
|
|
|
|
|
|
+<div id="main" style="width: 600px;height:400px;"></div>
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
<script>
|
|
|
- function check_form(){
|
|
|
+ var myChart = echarts.init(document.getElementById('main'));
|
|
|
+
|
|
|
+ var option = {
|
|
|
+ title: {
|
|
|
+ text: 'ECharts 入门示例'
|
|
|
+ },
|
|
|
+ tooltip: {},
|
|
|
+ legend: {
|
|
|
+ data:['销量']
|
|
|
+ },
|
|
|
+ xAxis: {
|
|
|
+ data: ["衬衫","羊毛衫","雪纺衫","裤子","高跟鞋","袜子"]
|
|
|
+ },
|
|
|
+ yAxis: {},
|
|
|
+ series: [{
|
|
|
+ name: '销量',
|
|
|
+ type: 'bar',
|
|
|
+ data: [5, 20, 36, 10, 10, 20]
|
|
|
+ }]
|
|
|
+ };
|
|
|
+
|
|
|
+ myChart.setOption(option);
|
|
|
+
|
|
|
+function check_form(){
|
|
|
var qry=document.getElementById('search_query').value;
|
|
|
axios.get('http://www.googo.org:8080/domain/'+qry)
|
|
|
.then((response) => {
|