resize优化动画
This commit is contained in:
@@ -682,7 +682,7 @@ $.layout.defaults = {
|
|||||||
, inset: null // custom container-inset values (override padding)
|
, inset: null // custom container-inset values (override padding)
|
||||||
, scrollToBookmarkOnLoad: true // after creating a layout, scroll to bookmark in URL (.../page.htm#myBookmark)
|
, scrollToBookmarkOnLoad: true // after creating a layout, scroll to bookmark in URL (.../page.htm#myBookmark)
|
||||||
, resizeWithWindow: true // bind thisLayout.resizeAll() to the window.resize event
|
, 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
|
, 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
|
, 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
|
, onresizeall_start: null // CALLBACK when resizeAll() STARTS - NOT pane-specific
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
||||||
*/
|
*/
|
||||||
package com.jeesite.config.common;
|
package com.jeesite.modules.config;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
Binary file not shown.
@@ -132,13 +132,13 @@ page:
|
|||||||
# 用户相关参数
|
# 用户相关参数
|
||||||
user:
|
user:
|
||||||
|
|
||||||
# 指定超级管理员编号(实施人员,开发团队使用的用户)
|
# 指定超级管理员编号(研发团队使用的账号)
|
||||||
superAdminCode: thinkgem
|
superAdminCode: system
|
||||||
|
|
||||||
# 超级管理员获取菜单的最小权重(默认20;>=40二级管理员;>=60系统管理员;>=80超级管理员)
|
# 超级管理员获取菜单的最小权重(默认20;>=40二级管理员;>=60系统管理员;>=80超级管理员)
|
||||||
superAdminGetMenuMinWeight: 40
|
superAdminGetMenuMinWeight: 40
|
||||||
|
|
||||||
# 系统管理员角色编号(客户方使用的角色,客户方管理员)
|
# 系统管理员角色编号(客户方管理员使用的角色)
|
||||||
corpAdminRoleCode: corpAdmin
|
corpAdminRoleCode: corpAdmin
|
||||||
|
|
||||||
# 用户类型配置信息(employee员工,member会员,btype往来单位,persion个人,expert专家,...)
|
# 用户类型配置信息(employee员工,member会员,btype往来单位,persion个人,expert专家,...)
|
||||||
|
|||||||
@@ -2,6 +2,6 @@
|
|||||||
<faceted-project>
|
<faceted-project>
|
||||||
<fixed facet="jst.java"/>
|
<fixed facet="jst.java"/>
|
||||||
<fixed facet="jst.web"/>
|
<fixed facet="jst.web"/>
|
||||||
<installed facet="jst.web" version="3.0"/>
|
|
||||||
<installed facet="jst.java" version="1.7"/>
|
<installed facet="jst.java" version="1.7"/>
|
||||||
|
<installed facet="jst.web" version="3.1"/>
|
||||||
</faceted-project>
|
</faceted-project>
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
|
|
||||||
<properties>
|
<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-sources>false</eclipse-plugin-download-sources>
|
||||||
<eclipse-plugin-download-javadocs>false</eclipse-plugin-download-javadocs>
|
<eclipse-plugin-download-javadocs>false</eclipse-plugin-download-javadocs>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
* 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.SpringApplication;
|
||||||
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
import org.springframework.boot.autoconfigure.SpringBootApplication;
|
||||||
@@ -17,7 +17,7 @@ import com.jeesite.common.io.PropertiesUtils;
|
|||||||
* @version 2018-1-8
|
* @version 2018-1-8
|
||||||
*/
|
*/
|
||||||
@Profile("default")
|
@Profile("default")
|
||||||
@SpringBootApplication(scanBasePackages={"com.jeesite.config"})
|
@SpringBootApplication(scanBasePackages={"com.jeesite.modules"})
|
||||||
public class Application extends SpringBootServletInitializer {
|
public class Application extends SpringBootServletInitializer {
|
||||||
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
||||||
*/
|
*/
|
||||||
package com.jeesite.config.task;
|
package com.jeesite.modules.config.task;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 消息发送服务,如果需要支持定时任务,则要在作业管理里添加该任务:msgLocalSendTask.execute();
|
* 消息发送服务,如果需要支持定时任务,则要在作业管理里添加该任务:msgLocalSendTask.execute();
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
* 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.FilterRegistrationBean;
|
||||||
import org.springframework.boot.web.servlet.ServletRegistrationBean;
|
import org.springframework.boot.web.servlet.ServletRegistrationBean;
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
* 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;
|
import javax.servlet.Filter;
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
* 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.boot.web.servlet.ServletListenerRegistrationBean;
|
||||||
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Bean;
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
* 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;
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
* 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.boot.autoconfigure.condition.ConditionalOnProperty;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* Copyright (c) 2013-Now http://jeesite.com All rights reserved.
|
* 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.boot.autoconfigure.condition.ConditionalOnProperty;
|
||||||
import org.springframework.context.annotation.Configuration;
|
import org.springframework.context.annotation.Configuration;
|
||||||
@@ -7,7 +7,7 @@ import org.junit.Test;
|
|||||||
import org.springframework.boot.test.context.SpringBootTest;
|
import org.springframework.boot.test.context.SpringBootTest;
|
||||||
import org.springframework.test.annotation.Commit;
|
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
|
@Test
|
||||||
public void initCoreData() throws Exception{
|
public void initCoreData() throws Exception{
|
||||||
initLog();
|
initLog();
|
||||||
// initConfig();
|
initConfig();
|
||||||
// initModule();
|
initModule();
|
||||||
// initDict();
|
initDict();
|
||||||
// initRole();
|
initRole();
|
||||||
// initMenu();
|
initMenu();
|
||||||
// initUser();
|
initUser();
|
||||||
// initArea();
|
// initArea();
|
||||||
// initOffice();
|
initOffice();
|
||||||
// initCompany();
|
initCompany();
|
||||||
// initPost();
|
initPost();
|
||||||
// initEmpUser();
|
initEmpUser();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user