Jeecg-Boot2.1之前版本,手工集成OnlineForm表单功能手册

原创
2019/08/28 19:04
阅读数 2.2K

Jeecg-Boot2.1之前版本,手工集成OnlineForm表单功能手册
友情提醒: 如果你想去掉OnlineForm模块,也可以参考此文档

  • 1、ant-design-jeecg-vue前端项目引入 online-form 依赖

    Install安装

	yarn add @jeecg/antd-onine 

修改ant-design-jeecg-vue/src/main.js 引入online-form

	import "@jeecg/antd-onine"
	import '@jeecg/antd-onine/dist/OnlineForm.css'
  • 2、项目jeecg-boot-module-system 引入 online-form JAR包

    修改jeecg-boot\jeecg-boot-module-system\pom.xml,增加依赖

     <dependency>
      	<groupId>org.jeecgframework.boot</groupId>
      	<artifactId>online-form</artifactId>
      	<version>2.1.2</version>
      </dependency>
      <dependency>
      	<groupId>org.hibernate</groupId>
      	<artifactId>hibernate-core</artifactId>
      	<exclusions>
      		<exclusion>
      			<groupId>commons-collections</groupId>
      			<artifactId>commons-collections</artifactId>
      		</exclusion>
      	</exclusions>
      </dependency>
    
  • 3、将 online-form 的路由vue页面复制到前端ant-design-jeecg-vue里 链接:https://pan.baidu.com/s/1_cPkrLMNrAV1uh5tdslsrw 提取码:tgzd

在这里插入图片描述

在这里插入图片描述

展开阅读全文
加载中
点击引领话题📣 发布并加入讨论🔥
0 评论
1 收藏
1
分享
返回顶部
顶部