域名增加长度限制1024,自定义district限制长度64,website_domain_topic表域名长度修改为1024 sql提交
This commit is contained in:
@@ -0,0 +1,2 @@
|
|||||||
|
#域名修改长度为1024
|
||||||
|
ALTER TABLE website_domain_topic MODIFY domain VARCHAR(1024);
|
||||||
@@ -24,7 +24,7 @@
|
|||||||
<c:if test="${_cfg.district==_district}">selected</c:if>>${_district }</option>
|
<c:if test="${_cfg.district==_district}">selected</c:if>>${_district }</option>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</select>
|
</select>
|
||||||
<input type="hidden" name="districtShowName" placeholder="<spring:message code='please_input'/> <spring:message code='custom_region'/>" class="otherValue form-control" value="${_cfg.district}"/>
|
<input type="hidden" name="districtShowName" maxlength="64" placeholder="<spring:message code='please_input'/> <spring:message code='custom_region'/>" class="otherValue form-control" value="${_cfg.district}"/>
|
||||||
</div>
|
</div>
|
||||||
<div for="district"></div>
|
<div for="district"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -165,7 +165,7 @@ $(function(){
|
|||||||
<c:if test="${_cfg.district==_district}">selected</c:if>>${_district }</option>
|
<c:if test="${_cfg.district==_district}">selected</c:if>>${_district }</option>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</select>
|
</select>
|
||||||
<input type="hidden" name="districtShowName" placeholder="<spring:message code='please_input'/> <spring:message code='custom_region'/>" class="otherValue form-control" value="${_cfg.district}"/>
|
<input type="hidden" name="districtShowName" maxlength="64" placeholder="<spring:message code='please_input'/> <spring:message code='custom_region'/>" class="otherValue form-control" value="${_cfg.district}"/>
|
||||||
</div>
|
</div>
|
||||||
<div for="district"></div>
|
<div for="district"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -165,7 +165,7 @@ $(function(){
|
|||||||
<c:if test="${_cfg.district==_district}">selected</c:if>>${_district }</option>
|
<c:if test="${_cfg.district==_district}">selected</c:if>>${_district }</option>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</select>
|
</select>
|
||||||
<input type="hidden" name="districtShowName" placeholder="<spring:message code='please_input'/> <spring:message code='custom_region'/>" class="otherValue form-control" value="${_cfg.district}"/>
|
<input type="hidden" name="districtShowName" maxlength="64" placeholder="<spring:message code='please_input'/> <spring:message code='custom_region'/>" class="otherValue form-control" value="${_cfg.district}"/>
|
||||||
</div>
|
</div>
|
||||||
<div for="district"></div>
|
<div for="district"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -164,7 +164,7 @@ $(function(){
|
|||||||
<c:if test="${_cfg.district eq dict.itemValue}">selected</c:if>>${dict.itemValue }</option>
|
<c:if test="${_cfg.district eq dict.itemValue}">selected</c:if>>${dict.itemValue }</option>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</select>
|
</select>
|
||||||
<input type="hidden" name="districtShowName" placeholder="<spring:message code='please_input'/> <spring:message code='custom_region'/>" class="otherValue form-control" value="${_cfg.district}"/>
|
<input type="hidden" name="districtShowName" maxlength="64" placeholder="<spring:message code='please_input'/> <spring:message code='custom_region'/>" class="otherValue form-control" value="${_cfg.district}"/>
|
||||||
</div>
|
</div>
|
||||||
<div for="district"></div>
|
<div for="district"></div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -41,7 +41,7 @@
|
|||||||
<c:if test="${cfg.district==_district}">selected</c:if>>${_district }</option>
|
<c:if test="${cfg.district==_district}">selected</c:if>>${_district }</option>
|
||||||
</c:forEach>
|
</c:forEach>
|
||||||
</select>
|
</select>
|
||||||
<input type="hidden" name="${cfgName}.districtShowName" placeholder="<spring:message code='please_input'/> <spring:message code='custom_region'/>" class="otherValue form-control invisibleChar" value="${cfg.district}"/>
|
<input type="hidden" name="${cfgName}.districtShowName" maxlength="64" placeholder="<spring:message code='please_input'/> <spring:message code='custom_region'/>" class="otherValue form-control invisibleChar" value="${cfg.district}"/>
|
||||||
</div>
|
</div>
|
||||||
<div for="${cfgName}.districtShowName"></div>
|
<div for="${cfgName}.districtShowName"></div>
|
||||||
<div for="${cfgName}.district"></div>
|
<div for="${cfgName}.district"></div>
|
||||||
|
|||||||
@@ -2,6 +2,7 @@ $(function(){
|
|||||||
//增加描述新增时的文字长度限制
|
//增加描述新增时的文字长度限制
|
||||||
$("form input[name='cfgDesc']").attr("maxlength","128");
|
$("form input[name='cfgDesc']").attr("maxlength","128");
|
||||||
$("form input[name$='cfgKeywords']").attr("maxlength","1024");
|
$("form input[name$='cfgKeywords']").attr("maxlength","1024");
|
||||||
|
$("form input[class~='domainCheck']").attr("maxlength","1024");
|
||||||
//截取过长的文字 使用id选择器;例如:tab对象->tr->td对象. 排除日志table .logTb
|
//截取过长的文字 使用id选择器;例如:tab对象->tr->td对象. 排除日志table .logTb
|
||||||
$("#contentTable").not(".logTb").find("td").each(function(i){
|
$("#contentTable").not(".logTb").find("td").each(function(i){
|
||||||
//获取td当前对象的文本,如果长度大于25;
|
//获取td当前对象的文本,如果长度大于25;
|
||||||
|
|||||||
Reference in New Issue
Block a user