diff --git a/doc/docs/guide/question.md b/doc/docs/guide/question.md
index f6b2ef73..4645e2fa 100644
--- a/doc/docs/guide/question.md
+++ b/doc/docs/guide/question.md
@@ -29,7 +29,6 @@
- 数据源数据集用法总结
[链接](https://my.oschina.net/u/4517014/blog/5270828)
- **注**:http数据源未来会挪到数据集那边
### 执行源码编译脚本(build.sh)报错
@@ -51,6 +50,7 @@
### 启动服务报错
- 提示“xxx The driver has not received any packets from the server”
+ 连不上mysql。
1、确保软件打包正常
2、mysql版本不兼容,详细看上面关于版本兼容性
3、bootstrap.yml中配置的mysql地址ip不对
diff --git a/report-ui/src/views/report/bigscreen/designer/widget/widgetTable.vue b/report-ui/src/views/report/bigscreen/designer/widget/widgetTable.vue
index 0cdcda66..620ea3c6 100644
--- a/report-ui/src/views/report/bigscreen/designer/widget/widgetTable.vue
+++ b/report-ui/src/views/report/bigscreen/designer/widget/widgetTable.vue
@@ -143,12 +143,12 @@ export default {
const tableData = this.optionsData;
tableData.dataType == "staticData"
? this.handlerStaticData(tableData.staticData)
- : this.handlerDymaicData(tableData.dynamicData, tableData.refreshTime);
+ : this.handlerDynamicData(tableData.dynamicData, tableData.refreshTime);
},
handlerStaticData(data) {
this.list = data;
},
- handlerDymaicData(data, refreshTime) {
+ handlerDynamicData(data, refreshTime) {
if (!data) return;
if (this.ispreview) {
this.getEchartData(data);