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.
71 lines
1.6 KiB
71 lines
1.6 KiB
<?php
|
|
|
|
namespace addons\shopro\model;
|
|
|
|
use think\Model;
|
|
use addons\shopro\exception\Exception;
|
|
use think\Db;
|
|
|
|
/**
|
|
* 钱包
|
|
*/
|
|
class Feedback extends Model
|
|
{
|
|
|
|
// 表名,不含前缀
|
|
protected $name = 'shopro_feedback';
|
|
// 自动写入时间戳字段
|
|
protected $autoWriteTimestamp = 'int';
|
|
// 定义时间戳字段名
|
|
protected $createTime = 'createtime';
|
|
protected $updateTime = 'updatetime';
|
|
protected $deleteTime = 'deletetime';
|
|
|
|
protected $hidden = ['deletetime'];
|
|
|
|
|
|
// 追加属性
|
|
protected $append = [
|
|
'type_name', 'status_name'
|
|
];
|
|
|
|
public static $typeAll = [
|
|
'product' => ['code' => 'product', 'name' =>'产品功能问题反馈'],
|
|
'feedback' => ['code' => 'feedback', 'name' => '建议及意见反馈'],
|
|
'complaint' => ['code' => 'complaint', 'name' => '投诉客服其他问题'],
|
|
];
|
|
|
|
public static function add($params)
|
|
{
|
|
$user = User::info();
|
|
|
|
extract($params);
|
|
|
|
$self = self::create([
|
|
"user_id" => $user->id,
|
|
"type" => $type,
|
|
"content" => $content,
|
|
"images" => implode(',', $images),
|
|
"phone" => $phone,
|
|
'status' => 0
|
|
]);
|
|
|
|
return $self;
|
|
}
|
|
|
|
|
|
|
|
|
|
public static function getTypeName($type) {
|
|
return isset(self::$typeAll[$type]) ? self::$typeAll[$type]['name'] : '';
|
|
}
|
|
|
|
|
|
public function getTypeNameAttr($value, $data) {
|
|
return self::getTypeName($data['type']);
|
|
}
|
|
|
|
public function getStatusNameAttr($value, $data) {
|
|
return $data['status'] == 1 ? '已处理' : '未处理';
|
|
}
|
|
}
|
|
|