ChinaArea.php 470 B

12345678910111213141516
  1. <?php
  2. namespace app\common\model;
  3. use think\Model;
  4. // 地址管理
  5. class ChinaArea extends Model
  6. {
  7. public static function getAllCity()
  8. {
  9. $all_first = self::field('first')->order('first asc')->group('first')->select()->toArray();
  10. array_walk($all_first,function (&$v,$k){
  11. $v['city_list'] = self::field('id,name,short_name')->where(['first'=>$v['first'],'level'=>2])->select()->toArray();
  12. });
  13. return $all_first;
  14. }
  15. }