1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * '菜单ID' => [
- * '字段英文名' =》 '字段中文名'
- * ]
- */
- return [
- [
- 'key' =>'order_date',
- 'value' => '订单日期',
- ],
- [
- 'key' =>'order_number',
- 'value' => '订单编号',
- ],
- [
- 'key' =>'business_type',
- 'value' => '业务类型',
- ],
- [
- 'key' =>'supplier_title',
- 'value' => '供应商',
- ],
- [
- 'key' =>'crt_name',
- 'value' => '制单人',
- ],
- ];
|