Browse Source

优化选择栏目对话框

tags/6.1.9
xushubieli 3 years ago
parent
commit
b2682267b2
2 changed files with 6 additions and 6 deletions
  1. +1
    -1
      src/static/web/css/admin.css
  2. +5
    -5
      src/system/typelink/typeunit.class.selector.php

+ 1
- 1
src/static/web/css/admin.css
File diff suppressed because it is too large
View File


+ 5
- 5
src/system/typelink/typeunit.class.selector.php View File

@@ -84,8 +84,8 @@ class TypeUnitSelector
$this->LogicListAllSunType($id, $channel, $soncat); $this->LogicListAllSunType($id, $channel, $soncat);
if ($chackRadio == '' && $soncat == '') continue; if ($chackRadio == '' && $soncat == '') continue;
echo "<div class='quickselItem'>\r\n"; echo "<div class='quickselItem'>\r\n";
echo " <div class='topcat'><label>{$chackRadio} {$typeName}</label></div>\r\n";
if ($soncat != '') echo " <div class='soncat'>{$soncat}</div>\r\n";
echo "<div class='topcat'><label>{$chackRadio} {$typeName}</label></div>\r\n";
if ($soncat != '') echo "<div class='soncat'>{$soncat}</div>\r\n";
echo "</div>\r\n"; echo "</div>\r\n";
} }
} }
@@ -126,12 +126,12 @@ class TypeUnitSelector
continue; continue;
} }
if ($chackRadio != '') { if ($chackRadio != '') {
$soncat .= " <div class='item'><label>".$chackRadio .' '. $typeName."</label></div>\r\n";
$soncat .= "<div class='item'><label>".$chackRadio .' '. $typeName."</label></div>\r\n";
$this->LogicListAllSunType($id, $channel, $soncat); $this->LogicListAllSunType($id, $channel, $soncat);
} else { } else {
$soncat .= " <br style='clear:both' /><div class='item'>".$typeName."</div>\r\n";
$soncat .= "<br style='clear:both'><div class='item'>".$typeName."</div>\r\n";
$this->LogicListAllSunType($id, $channel, $soncat); $this->LogicListAllSunType($id, $channel, $soncat);
$soncat .= " <br style='clear:both' />";
$soncat .= "<br style='clear:both'>";
} }
} }
} }

Loading…
Cancel
Save