12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- /**
- * '菜单ID' => [
- * '字段英文名' =》 '字段中文名'
- * ]
- */
- return [
- [
- 'key' => 'title',
- 'value' => '客户名称',
- ],
- [
- 'key' => 'fz',
- 'value' => '负责人',
- ],
- [
- 'key' => 'customer_intention_title',
- 'value' => '客户意向度',
- ],
- [
- 'key' => 'customer_from_title',
- 'value' => '客户来源',
- ],
- [
- 'key' => 'customer_type_title',
- 'value' => '客户类别',
- ],
- [
- 'key' => 'intention_product_title',
- 'value' => '意向产品',
- ],
- [
- 'key' => 'consulting_product',
- 'value' => '咨询产品',
- ],
- [
- 'key' => 'car_type_title',
- 'value' => '车型',
- ],
- [
- 'key' => 'progress_stage_title',
- 'value' => '进展阶段',
- ],
- [
- 'key' => 'address',
- 'value' => '地址',
- ],
- [
- 'key' => 'mark',
- 'value' => '特殊备注',
- ],
- [
- 'key' => 'crt_time',
- 'value' => '创建时间',
- ],
- [
- 'key' => 'crt_name',
- 'value' => '创建人',
- ],
- ];
|