order.php 996 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | home
  5. |--------------------------------------------------------------------------
  6. */
  7. $view
  8. # 定义名称
  9. ->fetch('#content_2@test', '1')
  10. ->fetch('#status', 'store/admin/order.getSearch')
  11. ->fetch('#source_out_status', 'store/admin/order.getSearchOutStatus')
  12. ->fetch('#form1@action', 'store/admin/order.getConfig#search')
  13. ->fetch('#list-tbody', 'store/admin/order.getList')
  14. ->fetch('#order_num@value', '<{Dever::input("order_num")}>')
  15. ->fetch('#start@value', '<{Dever::input("start")}>')
  16. ->fetch('#end@value', '<{Dever::input("end")}>')
  17. ->fetch('#type@value', '<{Dever::input("type")}>')
  18. ->fetch('#parent_type@value', '<{Dever::input("parent_type")}>')
  19. ->fetch('#source_type@value', '<{Dever::input("source_type")}>')
  20. ->fetch('#import@data-value', 'store/admin/order.getConfig#import')
  21. ->fetch('#page','<{Dever::page("current")}>')
  22. # display
  23. ->display();