|
@@ -699,15 +699,17 @@ class flowModel extends Model
|
|
|
unset($fields['base_name']);
|
|
|
unset($fields['base_deptname']);
|
|
|
}
|
|
|
- $contvimr .= '<div><table width="100%">';
|
|
|
+ $contvimr .= '<div><table width="100%" id="mobile_info_table">';
|
|
|
foreach($fields as $f=>$n){
|
|
|
$vs = arrvalue($data, $f);
|
|
|
if(!isempt($vs)){
|
|
|
//子表
|
|
|
if(substr($f,0,7)=='subdata'){
|
|
|
$contvimr .= '<tr><td colspan="3"><div style="padding:5px" align="left"><div><b>'.$n.'</b></div>'.$vs.'</div></td></tr>';
|
|
|
+
|
|
|
}else{
|
|
|
$contvimr .= '<tr><td nowrap><div align="right" style="color:#888888;padding:3px 0px">'.str_replace(' ','<br>',$n).'</div></td><td style="color:#888888">:</td><td width="95%"><div style="padding:3px" align="left">'.$vs.'</div></td></tr>';
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -1028,7 +1030,7 @@ class flowModel extends Model
|
|
|
$sty = 'color:#888888';
|
|
|
if($rs['isnow']==1)$sty='font-weight:bold;color:#800000';
|
|
|
if($str!='')$str.=' <font color=#888888>→</font> ';
|
|
|
- $str.='<span style="'.$sty.'">'.$rs['name'].'';
|
|
|
+ $str.='<span style="'.$sty.'" step=1>'.$rs['name'].'';
|
|
|
if(!isempt($rs['nowcheckname']))$str.='('.$rs['nowcheckname'].')';
|
|
|
$str.='</span>';
|
|
|
}
|