perf: 支持绑定两个url地址

This commit is contained in:
xiaojunnuo
2026-02-02 16:36:43 +08:00
parent 0902349130
commit a2e9a41a7e
6 changed files with 80 additions and 25 deletions
@@ -54,9 +54,9 @@ export class PlusService {
await plusRequestService.verify({ license: licenseInfo.license });
}
async bindUrl(url: string) {
async bindUrl(url: string, url2?:string) {
const plusRequestService = await this.getPlusRequestService();
const res = await plusRequestService.bindUrl(url);
const res = await plusRequestService.bindUrl(url,url2);
this.plusRequestService = null;
return res;
}