商城分销系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
764 B

3 weeks ago
<?php
namespace app\admin\model\shopro\order;
use app\admin\model\shopro\Common;
class ExpressLog extends Common
{
protected $name = 'shopro_order_express_log';
protected $type = [
];
// 追加属性
protected $append = [
'status_text'
];
public function statusList()
{
return [
'noinfo' => '',
'collect' => '已揽件',
'transport' => '运输中',
'delivery' => '派送中',
'signfor' => '已签收',
'refuse' => '用户拒收',
'difficulty' => '问题件',
'invalid' => '无效件',
'timeout' => '超时单',
'fail' => '签收失败',
'back' => '退回',
];
}
}