You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.5 KiB
50 lines
1.5 KiB
{extend name="../views/public/detail.html"/}
|
|
|
|
{block name="form"}
|
|
<div class="form-group">
|
|
<label class="control-label col-lg-2">用户信息</label>
|
|
<div class="col-lg-10">
|
|
<p class="form-control-static">{$data.nick_name}-{$data.mobile_phone}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="control-label col-lg-2">专家信息</label>
|
|
<div class="col-lg-10">
|
|
<p class="form-control-static"><img src="{$data.expert_head_img}" style="width:40px;height:40px;border-radius: 25px"> {$data.expert_name}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="control-label col-lg-2">价格</label>
|
|
<div class="col-lg-10">
|
|
<p class="form-control-static">{$data.pay_money}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="control-label col-lg-2">状态</label>
|
|
<div class="col-lg-10">
|
|
<p class="form-control-static">{$data.status_text}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="control-label col-lg-2">创建时间</label>
|
|
<div class="col-lg-10">
|
|
<p class="form-control-static">{$data.create_time}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<div class="col-lg-offset-2 col-lg-10">
|
|
<button class="btn btn-default backPrev" type="button">返回列表</button>
|
|
</div>
|
|
</div>
|
|
<input type="hidden" name="id" value="{$data.id}">
|
|
<input type="hidden" id="do_action" value="{:url('Expert/expertDetail')}"/>
|
|
<input type="hidden" id="do_jump" value="{:url('Expert/order')}"/>
|
|
|
|
{/block}
|