target.prototype.url 赋值问题

This commit is contained in:
tonglx 2021-12-10 09:56:03 +08:00
parent ca6d5365dd
commit 722a872b5e

View File

@ -37,7 +37,7 @@ export function Service(value: any) {
if (proxy) {
target.prototype.proxy = proxy;
target.prototype.url = url || item ? item.target : null;
target.prototype.url = url || (item ? item.target : null);
}
}
};