@@if(isWindow=="NO"){
@@}





@@if(isNotEmpty(content.thumb)){ @@}






@@for(filed in modelFiled){
@@if(filed.filedClass=="input"){ @@var t=""; @@if(filed.notNull){ @@t ="data-rule=\"required;"; @@if(filed.filedType=='int'){ @@t=t+"'integer;'"; @@if(filed.filedLength>1){ @@t=t+"length(1~"+filed.filedLength+");"; @@}else{ @@t=t+"length("+filed.filedLength+");"; @@} @@} @@t=t+"\""; @@} @@} @@if(filed.filedClass=="image"){ @@} @@if(filed.filedClass=="file"){
@@var strs = strutil.split(filed.filedValue,"#"); @@var str=""; @@if(isNotEmpty(strs)){ @@for(s in strs){ @@str=str+"*."+s+";"; @@} @@}
@@} @@if(filed.filedClass=="editor"){ @@} @@if(filed.filedClass=="textarea"){ @@} @@if(filed.filedClass=="dateInput"){ @@} @@if(filed.filedClass=="radio"){ @@if(isNotEmpty(filed.filedValue)){ @@var radios = strutil.split(filed.filedValue,"#"); @@for(radio in radios){ @@var checked =""; @@if(has(content)){ @@if(radio==content[filed.filedName]){ @@checked="checked"; @@} @@} @@} @@} @@} @@if(filed.filedClass=="checkbox"){ @@if(isNotEmpty(filed.filedValue)){ @@var checkboxs = strutil.split(filed.filedValue,"#"); @@for(checkbox in checkboxs){ @@var checked =""; @@if(has(content)){ @@if(checkbox==content[filed.filedName]){ @@checked="checked"; @@} @@} @@} @@} @@} @@if(filed.filedClass=="select"){ @@if(isNotEmpty(filed.filedValue)){ @@var selects = strutil.split(filed.filedValue,"#"); @@} @@}
@@}