|
|
@@ -46,7 +46,7 @@ function searchByKword(s){
|
|
|
var arr = allList[i];
|
|
|
var bdiv=1;
|
|
|
bdiv=1+j;
|
|
|
- if(j<7){j++;}else{j=0;};
|
|
|
+ if(j<7){j++;}else{j=0;};
|
|
|
var cancelRemark = subStr(arr.cancelRemark,0,20);
|
|
|
html+= '<div class="tr_cont_new mar4 f5_new'+bdiv+'">';
|
|
|
if(arr.modelId.control.value == "1"){
|
|
|
@@ -60,7 +60,13 @@ function searchByKword(s){
|
|
|
html+= '<p><img src="/shares/images/master1/rw_ico_menu.png" width="17" height="15" />【'+arr.modelId.modelName+'】【'+arr.state.dataName+'】 '+arr.creator.username+' '+arr.createdate+' </p>';
|
|
|
html+= '<p class="mar5">'+arr.insName ;
|
|
|
if(arr.insSubName){
|
|
|
- html+= " " + arr.insSubName;
|
|
|
+ var insSubName = "";
|
|
|
+ if(arr.state.value == 0){
|
|
|
+ insSubName = subStr(arr.insSubName,0,25);
|
|
|
+ }else{
|
|
|
+ insSubName = subStr(arr.insSubName,0,60);
|
|
|
+ }
|
|
|
+ html+= " " + insSubName;
|
|
|
}
|
|
|
if(arr.state.value == 0){
|
|
|
html+= ' 【撤销原因:'+cancelRemark+'】';
|