app_func_work.php 865 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. return array
  3. (
  4. 'update' => array
  5. (
  6. 'field' => array
  7. (
  8. 'platform_id' => array
  9. (
  10. 'rules' => true,
  11. 'type' => 'select',
  12. 'remote' => 'api/manage.getApi',
  13. # 无需默认值
  14. 'remote_default' => false,
  15. ),
  16. 'api_id' => array
  17. (
  18. 'rules' => true,
  19. 'type' => 'select',
  20. 'placeholder' => '选择接口',
  21. ),
  22. /*
  23. 'status' => array
  24. (
  25. 'width' => '40',
  26. 'type' => 'switch',
  27. 'show' => '{status}',
  28. 'active_value' => 1,
  29. 'inactive_value' => 2,
  30. ),*/
  31. ),
  32. 'drag' => 'sort',
  33. ),
  34. );