sku.php 711 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. return array
  3. (
  4. 'update' => array
  5. (
  6. 'field' => array
  7. (
  8. 'key' => array
  9. (
  10. 'type' => 'hidden',
  11. 'remote' => 'api/manage.keyToField?project=api',
  12. ),
  13. 'price' => array
  14. (
  15. 'type' => 'text',
  16. 'tips' => '设置价格',
  17. 'rules' => true,
  18. ),
  19. 'num' => array
  20. (
  21. 'type' => 'text',
  22. 'rules' => true,
  23. ),
  24. 'day_num' => array
  25. (
  26. 'type' => 'text',
  27. 'rules' => true,
  28. ),
  29. ),
  30. ),
  31. );