fix ueditor upload error

This commit is contained in:
thinkgem
2018-03-10 10:09:52 +08:00
parent 33eda68534
commit 504fa68d03
8 changed files with 19 additions and 21 deletions

View File

@@ -522,7 +522,7 @@ CREATE TABLE js_sys_msg_template
module_code varchar(64) COMMENT '归属模块',
tpl_key varchar(100) NOT NULL COMMENT '模板键值',
tpl_name varchar(100) NOT NULL COMMENT '模板名称',
tpl_type char(1) NOT NULL COMMENT '模板类型',
tpl_type varchar(16) NOT NULL COMMENT '模板类型',
tpl_content text NOT NULL COMMENT '模板内容',
status char(1) DEFAULT '0' NOT NULL COMMENT '状态0正常 1删除 2停用',
create_by varchar(64) NOT NULL COMMENT '创建者',

View File

@@ -1,5 +1,4 @@
/* Drop Tables */
DROP TABLE js_sys_company_office CASCADE CONSTRAINTS;
@@ -520,7 +519,7 @@ CREATE TABLE js_sys_msg_template
module_code varchar2(64),
tpl_key varchar2(100) NOT NULL,
tpl_name nvarchar2(100) NOT NULL,
tpl_type char(1) NOT NULL,
tpl_type varchar2(16) NOT NULL,
tpl_content clob NOT NULL,
status char(1) DEFAULT '0' NOT NULL,
create_by varchar2(64) NOT NULL,

View File

@@ -143,8 +143,7 @@
<label class="control-label col-sm-2" title="">
<span class="required hide">*</span> 备注信息:<i class="fa icon-question hide"></i></label>
<div class="col-sm-10">
<!-- <#form:textarea path="remarks" rows="4" maxlength="500" class="form-control"/> -->
<#form:ueditor name="remarks" maxlength="10000" height="200" class="required"
<#form:ueditor path="remarks" maxlength="10000" height="200" class="required"
simpleToolbars="true" readonly="false" outline="false"/>
</div>
</div>