resize优化动画

This commit is contained in:
thinkgem
2018-01-13 14:13:01 +08:00
parent 332b5be61f
commit 951287f062
16 changed files with 6371 additions and 6371 deletions

View File

@@ -682,7 +682,7 @@ $.layout.defaults = {
, inset: null // custom container-inset values (override padding)
, scrollToBookmarkOnLoad: true // after creating a layout, scroll to bookmark in URL (.../page.htm#myBookmark)
, resizeWithWindow: true // bind thisLayout.resizeAll() to the window.resize event
, resizeWithWindowDelay: 200 // delay calling resizeAll because makes window resizing very jerky
, resizeWithWindowDelay: 50 // delay calling resizeAll because makes window resizing very jerky
, resizeWithWindowMaxDelay: 0 // 0 = none - force resize every XX ms while window is being resized
, maskPanesEarly: false // true = create pane-masks on resizer.mouseDown instead of waiting for resizer.dragstart
, onresizeall_start: null // CALLBACK when resizeAll() STARTS - NOT pane-specific

View File

@@ -1,7 +1,7 @@
/**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package com.jeesite.config.common;
package com.jeesite.modules.config;
import java.util.Map;

View File

@@ -132,13 +132,13 @@ page:
# 用户相关参数
user:
# 指定超级管理员编号(实施人员,开发团队使用的用户
superAdminCode: thinkgem
# 指定超级管理员编号(发团队使用的账号
superAdminCode: system
# 超级管理员获取菜单的最小权重默认20>=40二级管理员>=60系统管理员>=80超级管理员
superAdminGetMenuMinWeight: 40
# 系统管理员角色编号(客户方使用的角色,客户方管理员
# 系统管理员角色编号(客户方管理员使用的角色)
corpAdminRoleCode: corpAdmin
# 用户类型配置信息employee员工member会员btype往来单位persion个人expert专家...

View File

@@ -2,6 +2,6 @@
<faceted-project>
<fixed facet="jst.java"/>
<fixed facet="jst.web"/>
<installed facet="jst.web" version="3.0"/>
<installed facet="jst.java" version="1.7"/>
<installed facet="jst.web" version="3.1"/>
</faceted-project>

View File

@@ -19,7 +19,7 @@
<properties>
<start-class>com.jeesite.config.Application</start-class>
<start-class>com.jeesite.modules.config.Application</start-class>
<eclipse-plugin-download-sources>false</eclipse-plugin-download-sources>
<eclipse-plugin-download-javadocs>false</eclipse-plugin-download-javadocs>

View File

@@ -1,7 +1,7 @@
/**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package com.jeesite.config;
package com.jeesite.modules.config;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
@@ -17,7 +17,7 @@ import com.jeesite.common.io.PropertiesUtils;
* @version 2018-1-8
*/
@Profile("default")
@SpringBootApplication(scanBasePackages={"com.jeesite.config"})
@SpringBootApplication(scanBasePackages={"com.jeesite.modules"})
public class Application extends SpringBootServletInitializer {
public static void main(String[] args) {

View File

@@ -1,7 +1,7 @@
/**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package com.jeesite.config.task;
package com.jeesite.modules.config.task;
/**
* 消息发送服务如果需要支持定时任务则要在作业管理里添加该任务msgLocalSendTask.execute();

View File

@@ -1,7 +1,7 @@
/**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package com.jeesite.config.web;
package com.jeesite.modules.config.web;
import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.boot.web.servlet.ServletRegistrationBean;

View File

@@ -1,7 +1,7 @@
/**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package com.jeesite.config.web;
package com.jeesite.modules.config.web;
import javax.servlet.Filter;

View File

@@ -1,7 +1,7 @@
/**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package com.jeesite.config.web;
package com.jeesite.modules.config.web;
import org.springframework.boot.web.servlet.ServletListenerRegistrationBean;
import org.springframework.context.annotation.Bean;

View File

@@ -1,7 +1,7 @@
/**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package com.jeesite.config.web;
package com.jeesite.modules.config.web;
import org.springframework.context.annotation.Configuration;

View File

@@ -1,7 +1,7 @@
/**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package com.jeesite.config.web.interceptor;
package com.jeesite.modules.config.web.interceptor;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Configuration;

View File

@@ -1,7 +1,7 @@
/**
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
*/
package com.jeesite.config.web.interceptor;
package com.jeesite.modules.config.web.interceptor;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.context.annotation.Configuration;

View File

@@ -7,7 +7,7 @@ import org.junit.Test;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.annotation.Commit;
import com.jeesite.config.Application;
import com.jeesite.modules.config.Application;
/**
* 初始化核心表数据
@@ -21,17 +21,17 @@ public class InitCoreData extends com.jeesite.modules.db.InitCoreData {
@Test
public void initCoreData() throws Exception{
initLog();
// initConfig();
// initModule();
// initDict();
// initRole();
// initMenu();
// initUser();
initConfig();
initModule();
initDict();
initRole();
initMenu();
initUser();
// initArea();
// initOffice();
// initCompany();
// initPost();
// initEmpUser();
initOffice();
initCompany();
initPost();
initEmpUser();
}
}