Index.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. <?php
  2. /*
  3. * @Description: 区域插件
  4. * @Author: xiaoyu5062
  5. * @QQ: 170515071
  6. * @E-mail: xiaoyu5062@qq.com
  7. * @Date: 2020-12-23 18:19:22
  8. * @Remark:
  9. * 【自定义数据源使用方法】
  10. * 1、在前台html元素中增加 自定义属性data-datasource
  11. * 2、在该控制器中的datasource方法中根据前台设置的属性值判断(107行)返回遵循示例数据源格式(46行)的数据
  12. */
  13. namespace addons\areapicker\controller;
  14. use think\addons\Controller;
  15. use app\admin\model\Area;
  16. class Index extends Controller
  17. {
  18. public function index()
  19. {
  20. $val = $this->request->get('val', 100001);
  21. $iscustomer = $this->request->get('iscustomer', 'false');
  22. if ($iscustomer == 'true') {
  23. $func = $this->request->get('ds', false);
  24. $this->view->assign('data', $this->datasource($func));
  25. }
  26. $this->view->assign('val', $val);
  27. return $this->view->fetch();
  28. }
  29. /**
  30. * 自定义数据源
  31. * 当元素data-iscustomer='true'时,将会使用此数据源
  32. * 请根据自身数据按照固定结构生成数据源
  33. * 请根据传入的参数source,自定义相应数据源
  34. * @return void
  35. */
  36. protected function datasource($source = false)
  37. {
  38. // 如果没有指定数据源,则使用示例数据源
  39. if ($source == false) {
  40. //示例数据源格式
  41. $data = [ //第一级
  42. [
  43. 'id' => '1000001',
  44. 'name' => '华北',
  45. 'children' => [ //第二级
  46. [
  47. 'id' => '16842752',
  48. 'name' => '北京',
  49. 'children' => [] //第三级
  50. ],
  51. [
  52. 'id' => '16908288',
  53. 'name' => '天津',
  54. 'children' => []
  55. ]
  56. ]
  57. ],
  58. [
  59. 'id' => '1000002',
  60. 'name' => '华东',
  61. 'children' => [
  62. [
  63. 'id' => '17432576',
  64. 'name' => '江苏',
  65. 'children' => [
  66. [
  67. 'id' => '17432832',
  68. 'name' => '南京'
  69. ],
  70. [
  71. 'id' => '17434112',
  72. 'name' => '盐城'
  73. ]
  74. ]
  75. ]
  76. ]
  77. ]
  78. ];
  79. for ($i = 2; $i < 10; $i++) {
  80. $data[$i] = [
  81. 'id' => 'id_' . $i,
  82. 'name' => 'name_' . $i,
  83. 'children' => []
  84. ];
  85. for ($j = 0; $j < 10; $j++) {
  86. $data[$i]['children'][$j] = [
  87. 'id' => 'id_' . $i . '_' . $j,
  88. 'name' => 'name_' . $i . '_' . $j,
  89. 'children' => []
  90. ];
  91. for ($k = 0; $k < 20; $k++) {
  92. $data[$i]['children'][$j]['children'][$k] = [
  93. 'id' => 'id_' . $i . '_' . $j . '_' . $k,
  94. 'name' => 'name_' . $i . '_' . $j . '_' . $k,
  95. 'children' => []
  96. ];
  97. }
  98. }
  99. }
  100. return $data;
  101. } else {
  102. // TODO: 请在此处根据source传入参数返回对应数据源
  103. if ($source == "mysource") {
  104. return [];
  105. }
  106. $list = Area::getAreaList(0);
  107. return $list;
  108. }
  109. return [];
  110. }
  111. }