12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- /**
- * '菜单ID' => [
- * '字段英文名' =》 '字段中文名'
- * ]
- */
- return [
- [
- 'key' =>'area',
- 'value' => '所属区域',
- ],
- [
- 'key' =>'region',
- 'value' => '地区',
- ],
- [
- 'key' =>'kilometer',
- 'value' => '公里数',
- ],
- [
- 'key' =>'min_freight_fee',
- 'value' => '最低运费',
- ],
- [
- 'key' =>'one_and_five',
- 'value' => '1-5吨',
- ],
- [
- 'key' =>'greater_than_five',
- 'value' => '5吨以上',
- ],
- [
- 'key' =>'company',
- 'value' => '物流公司',
- ],
- ];
|