1234567891011121314151617181920212223242526272829 |
- <?php defined('InShopNC') or exit('Access Invalid!');?>
- <dl>
- <dt>用 户 名:</dt>
- <dd><?php echo $output['delivery_info']['dlyp_name'];?></dd>
- </dl>
- <dl>
- <dt>登 记 人:</dt>
- <dd><?php echo $output['delivery_info']['dlyp_truename'];?> (身份证号码<?php echo encryptShow($output['delivery_info']['dlyp_idcard'], 2, 16);?>)</dd>
- </dl>
- <dl>
- <dt>登记地址:</dt>
- <dd><?php echo $output['delivery_info']['dlyp_area_info'];?> <?php echo $output['delivery_info']['dlyp_address'];?>(<?php echo $output['delivery_info']['dlyp_address_name'];?>)</dd>
- </dl>
- <dl>
- <dt>登记电话:</dt>
- <dd><?php echo $output['delivery_info']['dlyp_mobile'];?>(手机) <?php echo $output['delivery_info']['dlyp_telephony'];?>(座机)</dd>
- </dl>
- <dl>
- <dt>运营状态:</dt>
- <dd><?php echo $output['delivery_state'][$output['delivery_info']['dlyp_state']];?></dd>
- </dl>
- <?php if ($output['delivery_info']['dlyp_fail_reason'] != '') {?>
- <dl>
- <dt>失败原因:</dt>
- <dd><?php echo $output['delivery_info']['dlyp_fail_reason'];?></dd>
- </dl>
- <a href="index.php?act=joinin_again">再次申请</a>
- <?php }?>
|