增加了日程管理模块 / 通知公告模块
This commit is contained in:
parent
2308091b3d
commit
7dddaf1596
12
pom.xml
12
pom.xml
@ -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>
|
||||
|
@ -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 {
|
||||
|
BIN
src/main/resources/static/assets/images/filetype/audio.png
Normal file
BIN
src/main/resources/static/assets/images/filetype/audio.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
BIN
src/main/resources/static/assets/images/filetype/image.png
Normal file
BIN
src/main/resources/static/assets/images/filetype/image.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 740 B |
BIN
src/main/resources/static/assets/images/filetype/video.png
Normal file
BIN
src/main/resources/static/assets/images/filetype/video.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 KiB |
@ -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);
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user