@@ -16,6 +16,7 @@ class Qc extends Base
{
$options = \think\Config::get('queue');
$config = Config::where('name', 'order')->cache(300)->find(); // 读取配置自动缓存 5 分钟
+ $config = isset($config) ? json_decode($config['value'], true) : [];
var_dump($options,$config);
}