|
@@ -19,10 +19,12 @@ class AddrLogic extends BaseLogic
|
|
|
$count = $db->count('id');
|
|
|
|
|
|
$list = $db
|
|
|
- ->field('id,addr_code,addr,contactor,mobile')
|
|
|
+ ->field('id,addr_code,addr,contactor,mobile,"" addr_name')
|
|
|
->page($data['page'], $data['size'])
|
|
|
->withAttr('addr_code', function ($val) {
|
|
|
return explode(',', $val);
|
|
|
+ })->withAttr('addr_name', function ($val, $da) {
|
|
|
+ return get_addr_name($da['addr_code']);
|
|
|
})
|
|
|
->order('id', 'desc')
|
|
|
->select()
|
|
@@ -52,8 +54,11 @@ class AddrLogic extends BaseLogic
|
|
|
{
|
|
|
$rs = AddrModel::withoutField('uid,is_del')
|
|
|
->where(['id' => $id, 'is_del' => CommonModel::$del_normal])
|
|
|
+ ->append(['addr_name'])
|
|
|
->withAttr('addr_code', function ($val) {
|
|
|
return explode(',', $val);
|
|
|
+ })->withAttr('addr_name', function ($val, $da) {
|
|
|
+ return get_addr_name($da['addr_code']);
|
|
|
})
|
|
|
->findOrEmpty()
|
|
|
->toArray();
|