Commit e5920ded authored by 雍欢's avatar 雍欢

1、添加/编辑功能的时候通过easy-search来选择菜单图标;

2、菜单图片改为可以为空
parent ff6207f9
...@@ -38,17 +38,8 @@ sys.server.ip=127.0.0.1:8080/is/ ...@@ -38,17 +38,8 @@ sys.server.ip=127.0.0.1:8080/is/
corpId=wxafae524e350f2298 corpId=wxafae524e350f2298
corpSecret=FwcIKKl8AcVp6xlaXYxfMF0KSTFmyWGP9ZSt0iaCFNf-1GQcLU29ulmk4mVax1QB corpSecret=FwcIKKl8AcVp6xlaXYxfMF0KSTFmyWGP9ZSt0iaCFNf-1GQcLU29ulmk4mVax1QB
# �Ƿ���ҵ��ڵ㳬ʱ������
bpm.bizTask.timeoutCheck.enabled=true
# BPMҵ��ڵ㳬ʱ����������
bpm.bizTask.timeoutCheck.cron=0/10 * * * * ?
email.host=https://mail.topsunit.com/EWS/Exchange.asmx email.host=https://mail.topsunit.com/EWS/Exchange.asmx
email.username=portal@topsunit.com email.username=portal@topsunit.com
email.password=20180101 email.password=20180101
activemq.brokerURL=tcp://127.0.0.1:61616
activemq.userName=admin
activemq.password=admin
icon.cssFile=themes/fontawesome/css/font-awesome.min.css icon.cssFile=themes/fontawesome/css/font-awesome.min.css
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans" <beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:context="http://www.springframework.org/schema/context"
xmlns:context="http://www.springframework.org/schema/context" xmlns:p="http://www.springframework.org/schema/p" xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:mvc="http://www.springframework.org/schema/mvc" xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/context/spring-context.xsd
...@@ -12,17 +12,18 @@ ...@@ -12,17 +12,18 @@
http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd"> http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<context:property-placeholder location="classpath:application.properties"/>
<aop:aspectj-autoproxy></aop:aspectj-autoproxy> <aop:aspectj-autoproxy></aop:aspectj-autoproxy>
<!-- <!--
<context:annotation-config /> <context:annotation-config />
--> -->
<!--注解扫描包 需要扫描的标注了@Controller的类 --> <!--注解扫描包 需要扫描的标注了@Controller的类 -->
<context:component-scan base-package="com.**.controller" use-default-filters="false"> <context:component-scan base-package="com.**.controller" use-default-filters="false">
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller" /> <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan> </context:component-scan>
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"></bean> <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter"></bean>
<bean name="handlerMapping" class="com.huigou.uasp.handlerMapping.UaspRequestMappingHandlerMapping"></bean> <bean name="handlerMapping" class="com.huigou.uasp.handlerMapping.UaspRequestMappingHandlerMapping"></bean>
<bean id="exceptionHandler" class="com.huigou.uasp.exception.ExceptionHandler" /> <bean id="exceptionHandler" class="com.huigou.uasp.exception.ExceptionHandler"/>
<mvc:interceptors> <mvc:interceptors>
<bean id="authenticationInterceptor" class="com.huigou.uasp.bmp.intercept.AuthenticationInterceptor"> <bean id="authenticationInterceptor" class="com.huigou.uasp.bmp.intercept.AuthenticationInterceptor">
<property name="csrfWhiteListURL"> <property name="csrfWhiteListURL">
...@@ -38,14 +39,14 @@ ...@@ -38,14 +39,14 @@
</property> </property>
</bean> </bean>
<bean id="executeContextInterceptor" class="com.huigou.uasp.bmp.intercept.ExecuteContextInterceptor"> <bean id="executeContextInterceptor" class="com.huigou.uasp.bmp.intercept.ExecuteContextInterceptor">
<property name="operatorUIElementPermissionBuilder" ref="operatorUIElementPermissionBuilder" /> <property name="operatorUIElementPermissionBuilder" ref="operatorUIElementPermissionBuilder"/>
</bean> </bean>
<!-- 国际化操作拦截器 如果采用基于(请求/Session/Cookie)则必需配置 --> <!-- 国际化操作拦截器 如果采用基于(请求/Session/Cookie)则必需配置 -->
<bean class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor" /> <bean class="org.springframework.web.servlet.i18n.LocaleChangeInterceptor"/>
</mvc:interceptors> </mvc:interceptors>
<!-- 视图解析器 --> <!-- 视图解析器 -->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/"></property> <property name="prefix" value="/"></property>
<property name="suffix" value=".jsp"></property> <property name="suffix" value=".jsp"></property>
</bean> </bean>
......
...@@ -161,6 +161,7 @@ ...@@ -161,6 +161,7 @@
<huigou.uasp.version>1.2.7</huigou.uasp.version> <huigou.uasp.version>1.2.7</huigou.uasp.version>
<classgraph.version>4.8.43</classgraph.version> <classgraph.version>4.8.43</classgraph.version>
<fastjson.version>1.2.59</fastjson.version> <fastjson.version>1.2.59</fastjson.version>
<jstyleparser.version>3.5</jstyleparser.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
...@@ -1929,6 +1930,11 @@ ...@@ -1929,6 +1930,11 @@
<artifactId>fastjson</artifactId> <artifactId>fastjson</artifactId>
<version>${fastjson.version}</version> <version>${fastjson.version}</version>
</dependency> </dependency>
<dependency>
<groupId>net.sf.cssbox</groupId>
<artifactId>jstyleparser</artifactId>
<version>${jstyleparser.version}</version>
</dependency>
</dependencies> </dependencies>
</dependencyManagement> </dependencyManagement>
<distributionManagement> <distributionManagement>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment