77 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			HTML
		
	
	
			
		
		
	
	
			77 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			HTML
		
	
	
{layout name="manager/layout" /}
 | 
						|
<div class="layui-bg-gray location-detail-page" style="padding: 30px;">
 | 
						|
    <div class="layui-row layui-col-space15">
 | 
						|
        <div class="layui-col-md6" >
 | 
						|
            <div class="layui-panel" style="border-radius: 8px;min-height: 350px;">
 | 
						|
                <div class="layui-row" style="padding: 40px 5px;">
 | 
						|
                    <div class="layui-col-md4" style="text-align: center;">
 | 
						|
                        <img height="150" style="border-radius: 16px;" src="{$item.headimgurl ?? ''}" class="layui-icon-camera">
 | 
						|
                        <div class="center" style="padding: 10px 3px;display: block">
 | 
						|
                            <h3>{$item.real_name ?? $item.nickname}</h3>
 | 
						|
                            <span>ID:{$item.coding ?? ''}</span>
 | 
						|
                        </div>
 | 
						|
                    </div>
 | 
						|
                    <div class="layui-col-md8">
 | 
						|
                        <fieldset class="layui-elem-field layui-field-title" style="margin-top: 0px;">
 | 
						|
                            <legend>用户信息</legend>
 | 
						|
                        </fieldset>
 | 
						|
                        <div>
 | 
						|
                            <table class="layui-table" lay-even="" lay-skin="nob">
 | 
						|
                                <tbody>
 | 
						|
                                <tr>
 | 
						|
                                    <td>昵称:{$item.nickname ?? ''}</td>
 | 
						|
                                    <td>真实姓名:{$item.real_name ?? ''}</td>
 | 
						|
                                </tr>
 | 
						|
                                <tr>
 | 
						|
                                    <td>佣金:{$item.commission ?? 0}</td>
 | 
						|
                                    <td>出生日期:{:empty($item.birthday) ? '' : date('Y-m-d', strtotime($item.birthday))}</td>
 | 
						|
                                </tr>
 | 
						|
                                <tr>
 | 
						|
                                    <td>电话:{$item.mobile ?? ''}</td>
 | 
						|
                                    {switch $item.gender}
 | 
						|
                                    {case 1}<td>性别:男</td>{/case}
 | 
						|
                                    {case 2}<td>性别:女</td>{/case 2}
 | 
						|
                                    {default /}<td>性别:保密</td>
 | 
						|
                                    {/switch}
 | 
						|
                                </tr>
 | 
						|
                                <tr>
 | 
						|
                                    <td>地址:{$item.country} {$item.province} {$item.city} {$item.county}</td>
 | 
						|
                                </tr>
 | 
						|
                                </tbody>
 | 
						|
                            </table>
 | 
						|
                        </div>
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
        <div class="layui-col-md3">
 | 
						|
            <div class="layui-panel" style="border-radius: 8px;min-height: 350px;">
 | 
						|
                <div style="padding: 40px 5px;">
 | 
						|
                    <fieldset class="layui-elem-field layui-field-title" style="margin-top: 0px;">
 | 
						|
                        <legend>消费信息</legend>
 | 
						|
                    </fieldset>
 | 
						|
                    <div>
 | 
						|
                        <table class="layui-table" lay-even="" lay-skin="nob">
 | 
						|
                            <tbody>
 | 
						|
                            <tr>
 | 
						|
                                <td>累计消费金额:{$item.total_price ?? 0}</td>
 | 
						|
                            </tr>
 | 
						|
                            <tr>
 | 
						|
                                <td>累计商城订单数:{$item.order_num ?? 0}</td>
 | 
						|
                            </tr>
 | 
						|
                            <tr>
 | 
						|
                                <td>累计积分订单数:{$item.order_score_num ?? 0}</td>
 | 
						|
                            </tr>
 | 
						|
                            <tr>
 | 
						|
                                <td>最近消费时间:{$item.order_newest.created_at ?? ''}</td>
 | 
						|
                            </tr>
 | 
						|
                            </tbody>
 | 
						|
                        </table>
 | 
						|
                    </div>
 | 
						|
                </div>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
<script src="__MANAGER__/js/account/account.js?v={:mt_rand()}"></script>
 |