You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
774 B
PHTML
17 lines
774 B
PHTML
1 year ago
|
<div class="page-header">
|
||
|
<?php if ($batchType == BatchConst::batchTypeMoveCategory) {?>
|
||
|
<h3>类目迁移</h3>
|
||
|
<?php } else {?>
|
||
|
<h3>批量修改</h3>
|
||
|
<?php }?>
|
||
|
</div>
|
||
|
<?php if ($batchType != BatchConst::batchTypeMoveCategory) {?>
|
||
|
<div class="batch-top-nav">
|
||
|
<a href="<?php echo Zc::url(RouteConst::goodsBatchTask);?>" class="<?php echo ($batchType == '') ? 'active' : ''?>">全部</a>
|
||
|
<?php foreach ($batchTypeMapIndex as $bTIndex => $bTName) { ?>
|
||
|
<?php if ($bTIndex == BatchConst::batchTypeMoveCategory) continue; ?>
|
||
|
<a href="<?php echo Zc::url(RouteConst::goodsBatchTask, array('batchType' => $bTIndex));?>" class="<?php echo ($batchType == $bTIndex) ? 'active' : ''?>"><?php echo $bTName; ?></a>
|
||
|
<?php } ?>
|
||
|
</div>
|
||
|
<?php }?>
|