goview是一个不错的可视化大屏配置工具;提供了丰富的功能可供调用。
官方地址和文档:
https://gitee.com/dromara/go-view
https://www.mtruning.club/guide/start/
同后端集成时需要注意如下事项:
- 需要clone后端交互的分支;
git clone -b master-fetch https://gitee.com/dromara/go-view.git
如果是默认的分支,只有前端,通过mock方式构造的模拟数据。
- 登录默认的用户名修改的地方;
- 同dotnet集成可参考;https://gitee.com/sun_xiang_yu/go-view-dotnet
- 数据库脚本,参考如下:
-- ---------------------------- -- Table structure for Led_Projectdatas -- ---------------------------- DROP TABLE IF EXISTS `Led_ProjectDatas`; CREATE TABLE `Led_Projectdatas` ( `Id` int(11) NOT NULL AUTO_INCREMENT, `ProjectId` int(11) NOT NULL, `CreateTime` datetime(6) NULL DEFAULT NULL, `CreateUserId` int(11) NULL DEFAULT NULL, `ContentData` longtext CHARACTER SET utf8 COLLATE utf8_general_ci NULL, PRIMARY KEY (`Id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Table structure for Led_Projects -- ---------------------------- DROP TABLE IF EXISTS `Led_Projects`; CREATE TABLE `Led_Projects` ( `Id` int(11) NOT NULL AUTO_INCREMENT, `ProjectName` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL, `State` int(11) NOT NULL, `CreateTime` datetime(6) NULL DEFAULT NULL, `CreateUserId` int(11) NULL DEFAULT NULL, `IsDelete` int(11) NOT NULL, `IndexImage` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL, `Remarks` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL, PRIMARY KEY (`ID`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
- 关闭首页每次打开后的警告提示;
- 其他后续继续补充