登录注册页面修改

This commit is contained in:
“wanyongkang”
2023-07-20 14:54:36 +08:00
parent e9731d700b
commit 03056ebe33
7 changed files with 48 additions and 23 deletions

View File

@@ -56,7 +56,7 @@ namespace Hncore.Pass.Vpn.Service
{
var resp = new ProductWithPackageResponse();
resp.Product = p.MapTo<ProductResponse>();
resp.Packages = packages.Where(m => m.ProductId == p.Id).ToList();
resp.Packages = packages.Where(m => m.ProductId == p.Id && m.Status == 1).ToList();
respList.Add(resp);
});
return respList;