list.php 651 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. $view
  3. ->set('name', 'list')
  4. ->import('inc/head')
  5. ->fetch('body@check', 'buy/data.checkLogin')
  6. ->fetch(array('.tab@href', 0), 'buy/base.config#list_link')
  7. ->fetch(array('.tab@href', 1), 'buy/base.config#my_link')
  8. ->loop
  9. (
  10. '.order',
  11. 'buy/buy.lists_code',
  12. array
  13. (
  14. '.order-time span' => '$v.cdate',
  15. 'a|0' => array
  16. (
  17. 'href' => '$v.link',
  18. ),
  19. '.name' => '$v.name',
  20. '.count' => '$v.desc',
  21. )
  22. )
  23. # 暂无记录
  24. ->append('body', '<div id="page" dever-page-link="<{Dever::pageInfo()["link"]}>" dever-page-list=".pages"></div>')
  25. ->import('inc/foot')
  26. ->display();