info.php 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. <?php
  2. $title = '资料认证';
  3. $view
  4. ->import('inc/head')
  5. ->set('title', $title)
  6. ->set('name', 'certify-result')
  7. ->fetch('header span', $title)
  8. ->fetch('header .back@href', '<{Dever::url("user/account", "main")}>')
  9. ->set('info', 'task/user.info_check')
  10. ->render('info', array
  11. (
  12. '.wrapper' => array
  13. (
  14. 'h3 span' => array
  15. (
  16. 'html' => '$v.truename',
  17. ),
  18. '.mini-button' => array
  19. (
  20. 'html' => '$v.show',
  21. 'class' => 'mini-button <{$v.class}>',
  22. ),
  23. '.tips' => array
  24. (
  25. 'style' => '<{$v.status == 3 ? "" : "display:none;"}>',
  26. 'html' => '未通过原因:<{$v.status_desc}>',
  27. ),
  28. 'span|1' => array
  29. (
  30. 'html' => '$v.card',
  31. ),
  32. 'span|2' => array
  33. (
  34. 'html' => '$v.wechat',
  35. ),
  36. 'span|3' => array
  37. (
  38. 'html' => '$v.alipay',
  39. ),
  40. '.button' => array
  41. (
  42. 'href' => '<{Dever::url("user/info_certify", "main")}>',
  43. ),
  44. ),
  45. ))
  46. ->import('inc/foot')
  47. ->display();