diff --git a/app/data/view/shop/goods/index.html b/app/data/view/shop/goods/index.html
index 3a9d6214e..69aece864 100644
--- a/app/data/view/shop/goods/index.html
+++ b/app/data/view/shop/goods/index.html
@@ -21,13 +21,13 @@
{/block}
{block name="content"}
-
+
{foreach ['index'=>'商品管理','recycle'=>'回 收 站'] as $k=>$v}
{if isset($type) and $type eq $k}
- - {$v}
+ - {$v}
{else}
- - {$v}
+ - {$v}
{/if}{/foreach}
diff --git a/app/data/view/shop/order/index.html b/app/data/view/shop/order/index.html
index fe0b1baed..8349ebec9 100644
--- a/app/data/view/shop/order/index.html
+++ b/app/data/view/shop/order/index.html
@@ -9,11 +9,11 @@
{block name="content"}
- {foreach ['ta'=>'全部订单','t2'=>'待支付的订单','t3'=>'待审核的订单','t4'=>'待发货的订单','t5'=>'待收货的订单','t6'=>'已完成的订单','t0'=>'已取消的订单'] as $k=>$v}
- {if isset($type) and 't'.$type eq $k}
- - {$v}{$total[$k]??0}
+ {php}$types = ['ta' => '全部订单', 't2' => '待支付的订单', 't3' => '待审核的订单', 't4' => '待发货的订单', 't5' => '待收货的订单', 't6' => '已完成的订单', 't0' => '已取消的订单'];{/php}
+ {foreach $types as $k=>$v}{if isset($type) and 't'.$type eq $k}
+ - {$v}{$total[$k]??0}
{else}
- - {$v}{$total[$k]??0}
+ - {$v}{$total[$k]??0}
{/if}{/foreach}
diff --git a/app/data/view/shop/send/index.html b/app/data/view/shop/send/index.html
index 6807213b3..abcb54cf3 100644
--- a/app/data/view/shop/send/index.html
+++ b/app/data/view/shop/send/index.html
@@ -11,9 +11,9 @@
{foreach ['ta'=>'全部订单','t1'=>'待发货的订单','t2'=>'已发货的订单','t0'=>'已取消的订单'] as $k => $v}
{if isset($type) and 't'.$type eq $k}
- - {$v}{$total[$k]??0}
+ - {$v}{$total[$k]??0}
{else}
- - {$v}{$total[$k]??0}
+ - {$v}{$total[$k]??0}
{/if}{/foreach}