Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,18 @@ python app.py;

* (2020-09) 厦门 10 万招聘数据大屏可视化 http://127.0.0.1:5000/job

# 示例
# 在线示例
http://210.22.22.150:4390/

![image](https://github.com/TurboWay/imgstore/blob/master/bigscreen/corp.jpg)
![image1](https://user-images.githubusercontent.com/51977051/111063705-310c4200-84eb-11eb-9bb6-dfd187c4014b.png)

http://210.22.22.150:4390/corp

![image2](https://user-images.githubusercontent.com/51977051/111063695-22be2600-84eb-11eb-96d0-33d873584563.png)

http://210.22.22.150:4390/job

![image3](https://user-images.githubusercontent.com/51977051/111063699-2b166100-84eb-11eb-8913-840745c8e0a7.png)

# 使用

Expand Down
8 changes: 6 additions & 2 deletions data.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
class SourceDataDemo:

def __init__(self):
self.title = '大数据可视化展板通用模板'
self.title = '大数据可视化大屏展示模板'
self.counter = {'name': '2018年总收入情况', 'value': 12581189}
self.counter2 = {'name': '2018年总支出情况', 'value': 3912410}
self.echart1_data = {
Expand Down Expand Up @@ -209,6 +209,9 @@ def __init__(self):
按照 SourceDataDemo 的格式覆盖数据即可
"""
super().__init__()
<<<<<<< HEAD
self.title = '大数据可视化大屏展示模板'
=======
self.title = '大数据可视化展板通用模板'

class CorpData(SourceDataDemo):
Expand Down Expand Up @@ -253,4 +256,5 @@ def __init__(self):
self.echart4_data = data.get('echart4_data')
self.echart5_data = data.get('echart5_data')
self.echart6_data = data.get('echart6_data')
self.map_1_data = data.get('map_1_data')
self.map_1_data = data.get('map_1_data')
>>>>>>> 7736a6ff167c558b16d60f1cb645d29ef3df0bfa
Loading