测试新增商户,在商户后台,上传资质,报错接口不存在;
GLM5.1和CC都反馈是个BUG;根据我目前掌握的证据, 这就是 V4 公测版(20260526)的前端 bug ——但我先严谨地说清楚证据链,避免冤枉官方。
## 证据链
### 证据 1:后端路由强制要求 :field
route/merchant/system.php:161 :
```
Route::post('upload/certificate/:field', 'merchant.Common/uploadCertificate');
```
ThinkPHP 6 中, :field 是 强制路径段 ,不是可选。 POST /mer/upload/certificate (无 field)必然 miss。
### 证据 2:后端 swoole 直连证实接口存在
诊断 Section 3:
```curl POST http://127.0.0.1:8324/mer/upload/certificate/business
```

