Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

Region.php 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\controller;
  14. use think\Page;
  15. class Region extends Base
  16. {
  17. /**
  18. * 获取子类列表
  19. */
  20. public function ajax_get_region($pid = 0, $level = 2, $region_id = '', $text = '--请选择--'){
  21. $data = model('Region')->getList($pid,'*','',$level);
  22. $html = "<option value=''>".urldecode($text)."</option>";
  23. foreach($data as $key=>$val){
  24. if ($val['id'] == $region_id) {
  25. unset($data[$key]);
  26. continue;
  27. }
  28. $html.="<option value='".$val['id']."'>".$val['name']."</option>";
  29. }
  30. $isempty = 0;
  31. if (empty($data)){
  32. $isempty = 1;
  33. }
  34. $this->success($html,'',['isempty'=>$isempty]);
  35. }
  36. }