|
|
@@ -28,7 +28,6 @@ use crmeb\services\FormBuilder as Form;
|
|
|
* @method update($id, array $data, ?string $key = null) 修改数据
|
|
|
* @method value(array $where, ?string $field = '') 获取一条数据
|
|
|
* @method getShippingCity() 获取运费模板城市数据
|
|
|
- * @method fullList(?$field = '') 获取城市数据完整列表
|
|
|
*/
|
|
|
class SystemCityServices extends BaseServices
|
|
|
{
|
|
|
@@ -153,4 +152,14 @@ class SystemCityServices extends BaseServices
|
|
|
}, 0);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取城市数据
|
|
|
+ * @return mixed
|
|
|
+ */
|
|
|
+ public function fullList($field = '*')
|
|
|
+ {
|
|
|
+ return CacheService::remember('CITY_FULL_LIST', function () use ($field) {
|
|
|
+ return $this->dao->fullList($field);
|
|
|
+ }, 0);
|
|
|
+ }
|
|
|
}
|