d_center.information.php 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <?php defined('InShopNC') or exit('Access Invalid!');?>
  2. <dl>
  3. <dt>用&nbsp;&nbsp;户&nbsp;&nbsp;名:</dt>
  4. <dd><?php echo $output['delivery_info']['dlyp_name'];?></dd>
  5. </dl>
  6. <dl>
  7. <dt>登&nbsp;&nbsp;记&nbsp;&nbsp;人:</dt>
  8. <dd><?php echo $output['delivery_info']['dlyp_truename'];?>&nbsp;&nbsp;(身份证号码<?php echo encryptShow($output['delivery_info']['dlyp_idcard'], 2, 16);?>)</dd>
  9. </dl>
  10. <dl>
  11. <dt>登记地址:</dt>
  12. <dd><?php echo $output['delivery_info']['dlyp_area_info'];?>&nbsp;<?php echo $output['delivery_info']['dlyp_address'];?>(<?php echo $output['delivery_info']['dlyp_address_name'];?>)</dd>
  13. </dl>
  14. <dl>
  15. <dt>登记电话:</dt>
  16. <dd><?php echo $output['delivery_info']['dlyp_mobile'];?>(手机)&nbsp;&nbsp;&nbsp;&nbsp;<?php echo $output['delivery_info']['dlyp_telephony'];?>(座机)</dd>
  17. </dl>
  18. <dl>
  19. <dt>运营状态:</dt>
  20. <dd><?php echo $output['delivery_state'][$output['delivery_info']['dlyp_state']];?></dd>
  21. </dl>
  22. <?php if ($output['delivery_info']['dlyp_fail_reason'] != '') {?>
  23. <dl>
  24. <dt>失败原因:</dt>
  25. <dd><?php echo $output['delivery_info']['dlyp_fail_reason'];?></dd>
  26. </dl>
  27. <a href="index.php?act=joinin_again">再次申请</a>
  28. <?php }?>