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.
28 lines
469 B
28 lines
469 B
<?php
|
|
|
|
namespace app\feedback\logic;
|
|
|
|
use app\feedback\model\FeedbackConfig;
|
|
|
|
|
|
class Config extends Base
|
|
{
|
|
/**
|
|
* 获取意见反馈配置
|
|
* @date 2022-12-20
|
|
*/
|
|
public function getFeedbackConfig()
|
|
{
|
|
$config_model = new FeedbackConfig();
|
|
|
|
$top_img = $config_model->getOneData([
|
|
['uid', '=', $this->mid]
|
|
], 'top_img');
|
|
|
|
return sendSuccessArray([
|
|
'top_img' => $top_img
|
|
]);
|
|
}
|
|
|
|
|
|
} |