<?php /** * Created by PhpStorm. * User: xiaofeng * Date: 2018/3/6 * Time: 下午5:49 */ use backend\assets\AppAsset; //AppAsset::addScript($this,Yii::$app->request->baseUrl."/js/usersignup/userdetails.js"); ?> <style> .layui-table th {text-align:right;} </style> <table class="layui-table" style="width:80%;text-align:center;margin:10px auto 0;"> <tbody class="mai"> <tr> <th>报名用户:</th> <td><?= $model['name'] ?></td> </tr> <tr> <th>手机号码</th> <td><?= $model['mobile'] ?></td> </tr> <tr> <th>设备</th> <td><?= $model['equipment'] ?></td> </tr> <tr> <th>页面来源</th> <td><?= $model['source'] ?></td> </tr> <tr> <th>楼盘名称</th> <td><?= $model['house_name'] ?></td> </tr> <tr> <th>区域</th> <td><?= $model['city_name'] ?></td> </tr> <tr> <th>用户Ip</th> <td><?= $model['ip'] ?></td> </tr> <tr> <th>意向楼盘</th> <td><?= $model['intention_house'] ?></td> </tr> <tr> <th>意向户型</th> <td><?= $model['intention_housetype'] ?></td> </tr> <tr> <th>意向区域</th> <td><?= $model['intention_city'] ?></td> </tr> <tr> <th>预算</th> <td><?= $model['budget'] ?></td> </tr> <tr> <th>发送邮箱</th> <td><?= $model['send_email'] ?></td> </tr> <tr> <th>是否成功</th> <td><?= $model['state'] ?></td> </tr> <tr> <th>日期</th> <td><?= $model['create_at'] ?></td> </tr> </tbody> </table>