66.php 627 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. /**
  3. * '菜单ID' => [
  4. * '字段英文名' =》 '字段中文名'
  5. * ]
  6. */
  7. return [
  8. [
  9. 'key' =>'area',
  10. 'value' => '所属区域',
  11. ],
  12. [
  13. 'key' =>'region',
  14. 'value' => '地区',
  15. ],
  16. [
  17. 'key' =>'kilometer',
  18. 'value' => '公里数',
  19. ],
  20. [
  21. 'key' =>'min_freight_fee',
  22. 'value' => '最低运费',
  23. ],
  24. [
  25. 'key' =>'one_and_five',
  26. 'value' => '1-5吨',
  27. ],
  28. [
  29. 'key' =>'greater_than_five',
  30. 'value' => '5吨以上',
  31. ],
  32. [
  33. 'key' =>'company',
  34. 'value' => '物流公司',
  35. ],
  36. ];