diff --git a/app/data/view/shop_order/index.html b/app/data/view/shop_order/index.html
index 219b24072..13a02f48d 100644
--- a/app/data/view/shop_order/index.html
+++ b/app/data/view/shop_order/index.html
@@ -115,10 +115,18 @@
{/empty}
- {foreach $vo.items as $item}
+ {foreach $vo.items as $g}
- {$item.stock_sales|default=0}件 x {$item.price_market+0}元
- {$item.goods_name|default=''} ( {$item.goods_spec|show_goods_spec} )
+ {if $g.vip_entry > 0 and $g.vip_upgrade > $g.vip_code}
+ [ VIP{$g.vip_code} VIP{$g.vip_upgrade} ]
+ {else}
+ [ VIP{$g.vip_code} ]
+ {/if}
+ {if $g.discount_rate < 100.00}
+ 享{$g.discount_rate+0}%折扣 x
+ {/if}
+ {$g.stock_sales|default=0}件 x {$g.price_selling+0}元
+ {$g.goods_name|default=''} ( {$g.goods_spec|show_goods_spec} )
{/foreach}
|
diff --git a/app/data/view/user_transfer/index.html b/app/data/view/user_transfer/index.html
index e456fdaef..ebf12b22d 100644
--- a/app/data/view/user_transfer/index.html
+++ b/app/data/view/user_transfer/index.html
@@ -43,15 +43,18 @@
|
-
+ |
- {notempty name='vo.user.username'}
- 姓名:{$vo.user.username|default='-'}
- {else}
- 昵称:{$vo.user.nickname|default='-'}
- {/notempty}
- 手机:{$vo.user.phone|default='-'}
+
+ {notempty name='vo.user.username'}
+ 姓名:{$vo.user.username|default='-'}
+ {else}
+ 昵称:{$vo.user.nickname|default='-'}
+ {/notempty}
+ [ VIP{$vo.user.vip_code} ] {$vo.user.vip_name}
+
+ 手机:{$vo.user.phone|default='-'}
|
|