chore: 实现服务商的查询与查询密码的关联

This commit is contained in:
2025-12-18 15:35:13 +08:00
parent da924ee75f
commit ec0700a6b6
5 changed files with 509 additions and 301 deletions

View File

@@ -31,7 +31,7 @@ class Project extends Base {
/*会员中心数据表*/
$this->project_db = Db::name('project'); //
$this->service_db = Db::name('service'); //
$this->projectQueryPasswordDb = Db::name('project_query_password'); // 查询密码表
$this->projectQueryPasswordDb = Db::name('query_password'); // 查询密码表
// 是否开启支付功能设置
$this->userConfig = getUsersConfigData('all');
@@ -548,6 +548,8 @@ class Project extends Base {
'password' => trim($post['password']),
'allow_keywords' => trim($post['allow_keywords']),
'deny_keywords' => trim($post['deny_keywords']),
'allow_servicer_keywords' => trim($post['allow_servicer_keywords']),
'deny_servicer_keywords' => trim($post['deny_servicer_keywords']),
'status' => !empty($post['status']) ? 1 : 0,
'updatetime' => time()
];