| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- $type_one = 1; // 输入框
- $type_two = 2; // 下拉框
- $level = [0,1,2,3,4,5,6,7,8,9,10];
- $yesNo = ['是','否'];
- return [
- [
- 'menu_id' => 56,
- 'menu_title' => '商机管理',
- 'children' => [
- [
- 'key' => 'relationship_level',
- 'title' => '关系程度',
- 'type' => $type_two,
- 'list' => $level,
- ],
- [
- 'key' => 'is_company_title',
- 'title' => '是否公司',
- 'type' => $type_two,
- 'list' => $yesNo,
- ],
- [
- 'key' => 'customer_type',
- 'title' => '商机类型',
- 'type' => $type_one,
- 'list' => [],
- ],
- [
- 'key' => 'intention',
- 'title' => '意向程度',
- 'type' => $type_two,
- 'list' => $level,
- ],
- ]
- ],
- ];
|