增加了日程管理模块 / 通知公告模块

This commit is contained in:
cuibaocheng 2022-03-25 16:35:48 +08:00
parent 2308091b3d
commit 7dddaf1596
6 changed files with 18 additions and 1 deletions

12
pom.xml
View File

@ -68,6 +68,18 @@
<artifactId>service-role</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!-- 日程管理 -->
<dependency>
<groupId>cn.com.tenlion</groupId>
<artifactId>module-schedule</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!-- 通知公告 -->
<dependency>
<groupId>cn.com.tenlion</groupId>
<artifactId>module-notice</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<!-- aspose -->
<dependency>
<groupId>com.aspose</groupId>

View File

@ -3,9 +3,11 @@ package cn.com.tenlion.systemoa;
import org.mybatis.spring.annotation.MapperScan;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.scheduling.annotation.EnableScheduling;
import springfox.documentation.swagger2.annotations.EnableSwagger2;
@EnableSwagger2
@EnableScheduling
@SpringBootApplication(scanBasePackages = {"ink.wgink", "cn.com.tenlion"})
@MapperScan(basePackages = {"ink.wgink.**.dao", "cn.com.tenlion.**.dao"})
public class SystemOaApplication {

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 740 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

View File

@ -20,7 +20,10 @@ window.wangEditor.fullscreen = {
},
customInsert: function (insertImg, result, editor) {
console.log(result);
var url = 'http://192.168.0.104:8082/news/' + result.data[0];
var locat = (window.location+'').split('/');
var server = locat[0]+'//'+locat[2]+'/'+locat[3] + "/";
console.log(server)
var url = server + result.data[0];
insertImg(url);
}
};