'基础设置', ]; /** * 更新系统设置 * @param $key * @param $values * @return bool * @throws \think\exception\DbException */ public function edit($key, $values) { $model = self::detail($key) ?: $this; // 删除系统设置缓存 Cache::rm('wow_setting_' . self::$wxapp_id); return $model->save([ 'key' => $key, 'describe' => $this->describe[$key], 'values' => $values, 'wxapp_id' => self::$wxapp_id, ]) !== false; } }