diff --git a/Ewide.NbzsZheliban/Entity/Extends/H5IndexPrjModel.cs b/Ewide.NbzsZheliban/Entity/Extends/H5IndexPrjModel.cs index 99d9dfa..830762f 100644 --- a/Ewide.NbzsZheliban/Entity/Extends/H5IndexPrjModel.cs +++ b/Ewide.NbzsZheliban/Entity/Extends/H5IndexPrjModel.cs @@ -25,6 +25,8 @@ namespace Ewide.NbzsZheliban.Entity.Extends public string XyNo { get; set; } public string HouseAddress { get; set; } public string SummationShouldCompensateMoney { get; set; } + public string SwitchProductionWay { get; set; } + } public class H5IndexModel { diff --git a/Ewide.NbzsZheliban/Service/DataService.cs b/Ewide.NbzsZheliban/Service/DataService.cs index 8487be5..5186d82 100644 --- a/Ewide.NbzsZheliban/Service/DataService.cs +++ b/Ewide.NbzsZheliban/Service/DataService.cs @@ -31,7 +31,14 @@ namespace Ewide.NbzsZheliban.Service } private JObject GetInfoByTicket(string ticket) { - if (!string.IsNullOrWhiteSpace(ticket)) + if (string.IsNullOrWhiteSpace(ticket)) + throw Oops.Oh("无效访问"); + var dbTicket = db.Queryable().Where(p => p.Ticket == ticket && p.ExpireTime > DateTime.Now).OrderBy(p => p.CreateTime, OrderByType.Desc).First(); + if (dbTicket != null) + { + return JObject.Parse(dbTicket.OriginalResponse); + } + else { var time = DateTime.Now.ToString("yyyyMMddHHmmss"); var servicecode = App.Configuration["zlb_setting:servicecode"]; @@ -56,7 +63,7 @@ namespace Ewide.NbzsZheliban.Service throw Oops.Oh($"ticket接口返回值有误,[{tickerRsltStr}]"); } if (ticketObj["result"].Value() != 0) - throw Oops.Oh($"ticket接口返回值有误,[{tickerRsltStr}]"); + throw Oops.Oh(ticketObj["result"].Value(), $"ticket接口返回值有误,[{tickerRsltStr}]"); time = DateTime.Now.ToString("yyyyMMddHHmmss"); sign = MD5Encryption.Encrypt(servicecode + servicepwd + time); url = App.Configuration["zlb_setting:token_url"] @@ -77,14 +84,14 @@ namespace Ewide.NbzsZheliban.Service throw Oops.Oh($"token接口返回值有误,[{tickerRsltStr}]"); } if (userinfoObj["result"].Value() != 0) - throw Oops.Oh($"ticket接口返回值有误,[{tickerRsltStr}]"); + throw Oops.Oh(userinfoObj["result"].Value(), $"ticket接口返回值有误,[{tickerRsltStr}]"); var temp1 = db.Insertable(new zjzwfwTickets { ID = Guid.NewGuid().ToString(), Ticket = ticket, IdCardNo = userinfoObj["idnum"].ToString(), UserName = userinfoObj["username"].ToString(), - ExpireTime = DateTime.Now.AddHours(1), + ExpireTime = DateTime.Now.AddHours(4),//浙里办的token时效也是4个小时 CreateTime = DateTime.Now, OriginalResponse = userinfoRsltStr }).ExecuteCommand(); @@ -92,10 +99,6 @@ namespace Ewide.NbzsZheliban.Service throw Oops.Oh("出现异常,请联系管理员"); return userinfoObj; } - else - { - throw Oops.Oh("无效访问"); - } } private async Task GetInfoByCardNoAsync(string cardno, string username) { @@ -171,5 +174,27 @@ namespace Ewide.NbzsZheliban.Service var username = "张三丰"; return await GetInfoByCardNoAsync(cardno, username); } + /// + /// 政策详细 + /// + /// + /// + [HttpPost("/policies/info")] + [Microsoft.AspNetCore.Authorization.AllowAnonymous] + public async Task PolicieInfo([FromBody] JObject args) + { + var ticket = args.GetJsonValue("ticket", isThrowExp: true); + var id = args.GetJsonGuidValue("id", isThrowExp: true); + JObject userInfoObj = GetInfoByTicket(ticket); + var entity = await db.Queryable().Where(p => p.ID == id).Select(p => new PoliciesRegulation + { + ID = p.ID, + Area = p.Area, + Contents = p.Contents, + PublicTime = p.PublicTime, + Title = p.Title + }).FirstAsync(); + return entity; + } } } diff --git a/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.Core.dll b/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.Core.dll index b17226d..f38d739 100644 Binary files a/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.Core.dll and b/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.Core.dll differ diff --git a/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.Core.pdb b/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.Core.pdb index 3a7cfc6..d02cbf6 100644 Binary files a/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.Core.pdb and b/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.Core.pdb differ diff --git a/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.NbzsZheliban.dll b/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.NbzsZheliban.dll index d8b41d2..6a204e9 100644 Binary files a/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.NbzsZheliban.dll and b/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.NbzsZheliban.dll differ diff --git a/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.NbzsZheliban.pdb b/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.NbzsZheliban.pdb index c340f48..4d0cd89 100644 Binary files a/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.NbzsZheliban.pdb and b/Ewide.NbzsZheliban/bin/Debug/net5.0/Ewide.NbzsZheliban.pdb differ diff --git a/Ewide.NbzsZheliban/bin/Debug/net5.0/Furion.dll b/Ewide.NbzsZheliban/bin/Debug/net5.0/Furion.dll index 1247e1c..49490ed 100644 Binary files a/Ewide.NbzsZheliban/bin/Debug/net5.0/Furion.dll and b/Ewide.NbzsZheliban/bin/Debug/net5.0/Furion.dll differ diff --git a/Ewide.NbzsZheliban/bin/Debug/net5.0/Furion.pdb b/Ewide.NbzsZheliban/bin/Debug/net5.0/Furion.pdb index 7990608..f3e91d1 100644 Binary files a/Ewide.NbzsZheliban/bin/Debug/net5.0/Furion.pdb and b/Ewide.NbzsZheliban/bin/Debug/net5.0/Furion.pdb differ diff --git a/Ewide.NbzsZheliban/bin/Debug/net5.0/Furion.xml b/Ewide.NbzsZheliban/bin/Debug/net5.0/Furion.xml index b264c0d..e73c4a7 100644 --- a/Ewide.NbzsZheliban/bin/Debug/net5.0/Furion.xml +++ b/Ewide.NbzsZheliban/bin/Debug/net5.0/Furion.xml @@ -20815,6 +20815,15 @@ String.Format 参数 异常实例 + + + 抛出字符串异常 + + + 异常消息 + String.Format 参数 + 异常实例 + 抛出字符串异常 diff --git a/Ewide.NbzsZheliban/bin/Debug/net5.0/ref/Ewide.NbzsZheliban.dll b/Ewide.NbzsZheliban/bin/Debug/net5.0/ref/Ewide.NbzsZheliban.dll index 167af8a..8aed91a 100644 Binary files a/Ewide.NbzsZheliban/bin/Debug/net5.0/ref/Ewide.NbzsZheliban.dll and b/Ewide.NbzsZheliban/bin/Debug/net5.0/ref/Ewide.NbzsZheliban.dll differ diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.dll b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.dll index b21ce9c..7a1899c 100644 Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.dll and b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.dll differ diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.pdb b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.pdb index 07016b6..a98aab5 100644 Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.pdb and b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.Core.pdb differ diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.dll b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.dll index 0a4cf21..7ff9133 100644 Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.dll and b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.dll differ diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.pdb b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.pdb index 3eaa9eb..5342979 100644 Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.pdb and b/Ewide.NbzsZheliban/bin/Release/net5.0/Ewide.NbzsZheliban.pdb differ diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.dll b/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.dll index 48c0934..031f04d 100644 Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.dll and b/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.dll differ diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.pdb b/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.pdb index 3aea9b3..04df3d7 100644 Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.pdb and b/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.pdb differ diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.xml b/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.xml index b264c0d..e73c4a7 100644 --- a/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.xml +++ b/Ewide.NbzsZheliban/bin/Release/net5.0/Furion.xml @@ -20815,6 +20815,15 @@ String.Format 参数 异常实例 + + + 抛出字符串异常 + + + 异常消息 + String.Format 参数 + 异常实例 + 抛出字符串异常 diff --git a/Ewide.NbzsZheliban/bin/Release/net5.0/ref/Ewide.NbzsZheliban.dll b/Ewide.NbzsZheliban/bin/Release/net5.0/ref/Ewide.NbzsZheliban.dll index d97df49..4c50b7b 100644 Binary files a/Ewide.NbzsZheliban/bin/Release/net5.0/ref/Ewide.NbzsZheliban.dll and b/Ewide.NbzsZheliban/bin/Release/net5.0/ref/Ewide.NbzsZheliban.dll differ diff --git a/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.assets.cache b/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.assets.cache index 776cd83..b2c118a 100644 Binary files a/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.assets.cache and b/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.assets.cache differ diff --git a/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache b/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache index 5ee2ff5..65d3f34 100644 Binary files a/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache and b/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache differ diff --git a/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.dll b/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.dll index d8b41d2..6a204e9 100644 Binary files a/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.dll and b/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.dll differ diff --git a/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.pdb b/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.pdb index c340f48..4d0cd89 100644 Binary files a/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.pdb and b/Ewide.NbzsZheliban/obj/Debug/net5.0/Ewide.NbzsZheliban.pdb differ diff --git a/Ewide.NbzsZheliban/obj/Debug/net5.0/ref/Ewide.NbzsZheliban.dll b/Ewide.NbzsZheliban/obj/Debug/net5.0/ref/Ewide.NbzsZheliban.dll index 167af8a..8aed91a 100644 Binary files a/Ewide.NbzsZheliban/obj/Debug/net5.0/ref/Ewide.NbzsZheliban.dll and b/Ewide.NbzsZheliban/obj/Debug/net5.0/ref/Ewide.NbzsZheliban.dll differ diff --git a/Ewide.NbzsZheliban/obj/Ewide.NbzsZheliban.csproj.nuget.dgspec.json b/Ewide.NbzsZheliban/obj/Ewide.NbzsZheliban.csproj.nuget.dgspec.json index 3148af4..077d245 100644 --- a/Ewide.NbzsZheliban/obj/Ewide.NbzsZheliban.csproj.nuget.dgspec.json +++ b/Ewide.NbzsZheliban/obj/Ewide.NbzsZheliban.csproj.nuget.dgspec.json @@ -176,7 +176,7 @@ } }, "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj": { - "version": "2.12.9", + "version": "2.18.7", "restore": { "projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Authentication.JwtBearer\\Furion.Extras.Authentication.JwtBearer.csproj", "projectName": "Furion.Extras.Authentication.JwtBearer", @@ -214,13 +214,9 @@ "net5.0": { "targetAlias": "net5.0", "dependencies": { - "Furion.Extras.Web.HttpContext": { - "target": "Package", - "version": "[2.12.9, )" - }, "Microsoft.AspNetCore.Authentication.JwtBearer": { "target": "Package", - "version": "[5.0.7, )" + "version": "[5.0.9, )" } }, "imports": [ @@ -243,7 +239,7 @@ } }, "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj": { - "version": "2.12.9", + "version": "2.18.7", "restore": { "projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.DatabaseAccessor.Dapper\\Furion.Extras.DatabaseAccessor.Dapper.csproj", "projectName": "Furion.Extras.DatabaseAccessor.Dapper", @@ -375,7 +371,7 @@ } }, "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj": { - "version": "2.12.9", + "version": "2.18.7", "restore": { "projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.Logging.Serilog\\Furion.Extras.Logging.Serilog.csproj", "projectName": "Furion.Extras.Logging.Serilog", @@ -441,7 +437,7 @@ } }, "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj": { - "version": "2.12.9", + "version": "2.18.7", "restore": { "projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion.Extras.ObjectMapper.Mapster\\Furion.Extras.ObjectMapper.Mapster.csproj", "projectName": "Furion.Extras.ObjectMapper.Mapster", @@ -511,7 +507,7 @@ } }, "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj": { - "version": "2.12.9", + "version": "2.18.7", "restore": { "projectUniqueName": "D:\\WORK\\C宁波拆迁\\h5_codegit\\framework\\Api\\Furion\\framework\\Furion\\Furion.csproj", "projectName": "Furion", @@ -551,7 +547,7 @@ "dependencies": { "Furion.Extras.DependencyModel.CodeAnalysis": { "target": "Package", - "version": "[2.12.9, )" + "version": "[2.18.7, )" }, "MiniProfiler.AspNetCore.Mvc": { "target": "Package", @@ -559,7 +555,7 @@ }, "Swashbuckle.AspNetCore": { "target": "Package", - "version": "[6.1.4, )" + "version": "[6.1.5, )" } }, "imports": [ diff --git a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache index 22ee909..aa7c48f 100644 Binary files a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache and b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.csproj.AssemblyReference.cache differ diff --git a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.dll b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.dll index 0a4cf21..7ff9133 100644 Binary files a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.dll and b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.dll differ diff --git a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.pdb b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.pdb index 3eaa9eb..5342979 100644 Binary files a/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.pdb and b/Ewide.NbzsZheliban/obj/Release/net5.0/Ewide.NbzsZheliban.pdb differ diff --git a/Ewide.NbzsZheliban/obj/Release/net5.0/ref/Ewide.NbzsZheliban.dll b/Ewide.NbzsZheliban/obj/Release/net5.0/ref/Ewide.NbzsZheliban.dll index d97df49..4c50b7b 100644 Binary files a/Ewide.NbzsZheliban/obj/Release/net5.0/ref/Ewide.NbzsZheliban.dll and b/Ewide.NbzsZheliban/obj/Release/net5.0/ref/Ewide.NbzsZheliban.dll differ diff --git a/Ewide.NbzsZheliban/obj/project.assets.json b/Ewide.NbzsZheliban/obj/project.assets.json index 46e6379..bcfd363 100644 --- a/Ewide.NbzsZheliban/obj/project.assets.json +++ b/Ewide.NbzsZheliban/obj/project.assets.json @@ -71,14 +71,15 @@ "lib/net5.0/Dapper.Contrib.dll": {} } }, - "Furion.Extras.DependencyModel.CodeAnalysis/2.12.9": { + "Furion.Extras.DependencyModel.CodeAnalysis/2.18.7": { "type": "package", "dependencies": { "Ben.Demystifier": "0.4.1", - "Microsoft.AspNetCore.Razor.Language": "5.0.7", - "Microsoft.CodeAnalysis.CSharp": "3.10.0", - "Microsoft.EntityFrameworkCore.Relational": "5.0.7", - "Microsoft.Extensions.DependencyModel": "5.0.0" + "Microsoft.AspNetCore.Razor.Language": "5.0.9", + "Microsoft.CodeAnalysis.CSharp": "3.11.0", + "Microsoft.EntityFrameworkCore.Relational": "5.0.9", + "Microsoft.Extensions.DependencyModel": "5.0.0", + "System.Text.Json": "5.0.2" }, "compile": { "lib/net5.0/Furion.Extras.DependencyModel.CodeAnalysis.dll": {} @@ -87,18 +88,6 @@ "lib/net5.0/Furion.Extras.DependencyModel.CodeAnalysis.dll": {} } }, - "Furion.Extras.Web.HttpContext/2.12.9": { - "type": "package", - "compile": { - "lib/net5.0/Furion.Extras.Web.HttpContext.dll": {} - }, - "runtime": { - "lib/net5.0/Furion.Extras.Web.HttpContext.dll": {} - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, "Google.Protobuf/3.6.1": { "type": "package", "dependencies": { @@ -196,7 +185,7 @@ "lib/netstandard2.0/Mapster.DependencyInjection.dll": {} } }, - "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.7": { + "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.9": { "type": "package", "dependencies": { "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1" @@ -211,7 +200,7 @@ "Microsoft.AspNetCore.App" ] }, - "Microsoft.AspNetCore.Razor.Language/5.0.7": { + "Microsoft.AspNetCore.Razor.Language/5.0.9": { "type": "package", "compile": { "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} @@ -226,7 +215,7 @@ "build/_._": {} } }, - "Microsoft.CodeAnalysis.Common/3.10.0": { + "Microsoft.CodeAnalysis.Common/3.11.0": { "type": "package", "dependencies": { "Microsoft.CodeAnalysis.Analyzers": "3.3.2", @@ -285,10 +274,10 @@ } } }, - "Microsoft.CodeAnalysis.CSharp/3.10.0": { + "Microsoft.CodeAnalysis.CSharp/3.11.0": { "type": "package", "dependencies": { - "Microsoft.CodeAnalysis.Common": "[3.10.0]" + "Microsoft.CodeAnalysis.Common": "[3.11.0]" }, "compile": { "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} @@ -372,13 +361,13 @@ "lib/netstandard2.0/Microsoft.Data.Sqlite.dll": {} } }, - "Microsoft.EntityFrameworkCore/5.0.7": { + "Microsoft.EntityFrameworkCore/5.0.9": { "type": "package", "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", + "Microsoft.EntityFrameworkCore.Abstractions": "5.0.9", + "Microsoft.EntityFrameworkCore.Analyzers": "5.0.9", "Microsoft.Extensions.Caching.Memory": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.DependencyInjection": "5.0.2", "Microsoft.Extensions.Logging": "5.0.0", "System.Collections.Immutable": "5.0.0", "System.ComponentModel.Annotations": "5.0.0", @@ -391,7 +380,7 @@ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} } }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { + "Microsoft.EntityFrameworkCore.Abstractions/5.0.9": { "type": "package", "compile": { "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} @@ -400,7 +389,7 @@ "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} } }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { + "Microsoft.EntityFrameworkCore.Analyzers/5.0.9": { "type": "package", "compile": { "lib/netstandard2.0/_._": {} @@ -409,10 +398,10 @@ "lib/netstandard2.0/_._": {} } }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { + "Microsoft.EntityFrameworkCore.Relational/5.0.9": { "type": "package", "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", + "Microsoft.EntityFrameworkCore": "5.0.9", "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" }, "compile": { @@ -495,7 +484,7 @@ "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll": {} } }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { + "Microsoft.Extensions.DependencyInjection/5.0.2": { "type": "package", "dependencies": { "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" @@ -1475,19 +1464,19 @@ "lib/netstandard1.3/SshNet.Security.Cryptography.dll": {} } }, - "Swashbuckle.AspNetCore/6.1.4": { + "Swashbuckle.AspNetCore/6.1.5": { "type": "package", "dependencies": { "Microsoft.Extensions.ApiDescription.Server": "3.0.0", - "Swashbuckle.AspNetCore.Swagger": "6.1.4", - "Swashbuckle.AspNetCore.SwaggerGen": "6.1.4", - "Swashbuckle.AspNetCore.SwaggerUI": "6.1.4" + "Swashbuckle.AspNetCore.Swagger": "6.1.5", + "Swashbuckle.AspNetCore.SwaggerGen": "6.1.5", + "Swashbuckle.AspNetCore.SwaggerUI": "6.1.5" }, "build": { "build/_._": {} } }, - "Swashbuckle.AspNetCore.Swagger/6.1.4": { + "Swashbuckle.AspNetCore.Swagger/6.1.5": { "type": "package", "dependencies": { "Microsoft.OpenApi": "1.2.3" @@ -1502,10 +1491,10 @@ "Microsoft.AspNetCore.App" ] }, - "Swashbuckle.AspNetCore.SwaggerGen/6.1.4": { + "Swashbuckle.AspNetCore.SwaggerGen/6.1.5": { "type": "package", "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.1.4" + "Swashbuckle.AspNetCore.Swagger": "6.1.5" }, "compile": { "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} @@ -1514,7 +1503,7 @@ "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} } }, - "Swashbuckle.AspNetCore.SwaggerUI/6.1.4": { + "Swashbuckle.AspNetCore.SwaggerUI/6.1.5": { "type": "package", "compile": { "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} @@ -2695,7 +2684,7 @@ "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} } }, - "System.Text.Json/4.6.0": { + "System.Text.Json/5.0.2": { "type": "package", "compile": { "lib/netcoreapp3.0/System.Text.Json.dll": {} @@ -2956,12 +2945,12 @@ "framework": ".NETCoreApp,Version=v5.0", "dependencies": { "CSRedisCore": "3.6.6", - "Furion": "2.12.9", - "Furion.Extras.Authentication.JwtBearer": "2.12.9", - "Furion.Extras.DatabaseAccessor.Dapper": "2.12.9", + "Furion": "2.18.7", + "Furion.Extras.Authentication.JwtBearer": "2.18.7", + "Furion.Extras.DatabaseAccessor.Dapper": "2.18.7", "Furion.Extras.DatabaseAccessor.SqlSugar": "2.12.9", - "Furion.Extras.Logging.Serilog": "2.12.9", - "Furion.Extras.ObjectMapper.Mapster": "2.12.9", + "Furion.Extras.Logging.Serilog": "2.18.7", + "Furion.Extras.ObjectMapper.Mapster": "2.18.7", "Kendo.DynamicLinqCore": "3.1.1", "Portable.BouncyCastle": "1.8.10", "Quartz": "3.3.2", @@ -2977,13 +2966,13 @@ "bin/placeholder/Ewide.Core.dll": {} } }, - "Furion/2.12.9": { + "Furion/2.18.7": { "type": "project", "framework": ".NETCoreApp,Version=v5.0", "dependencies": { - "Furion.Extras.DependencyModel.CodeAnalysis": "2.12.9", + "Furion.Extras.DependencyModel.CodeAnalysis": "2.18.7", "MiniProfiler.AspNetCore.Mvc": "4.2.22", - "Swashbuckle.AspNetCore": "6.1.4" + "Swashbuckle.AspNetCore": "6.1.5" }, "compile": { "bin/placeholder/Furion.dll": {} @@ -2995,12 +2984,11 @@ "Microsoft.AspNetCore.App" ] }, - "Furion.Extras.Authentication.JwtBearer/2.12.9": { + "Furion.Extras.Authentication.JwtBearer/2.18.7": { "type": "project", "framework": ".NETCoreApp,Version=v5.0", "dependencies": { - "Furion.Extras.Web.HttpContext": "2.12.9", - "Microsoft.AspNetCore.Authentication.JwtBearer": "5.0.7" + "Microsoft.AspNetCore.Authentication.JwtBearer": "5.0.9" }, "compile": { "bin/placeholder/Furion.Extras.Authentication.JwtBearer.dll": {} @@ -3009,7 +2997,7 @@ "bin/placeholder/Furion.Extras.Authentication.JwtBearer.dll": {} } }, - "Furion.Extras.DatabaseAccessor.Dapper/2.12.9": { + "Furion.Extras.DatabaseAccessor.Dapper/2.18.7": { "type": "project", "framework": ".NETCoreApp,Version=v5.0", "dependencies": { @@ -3041,7 +3029,7 @@ "Microsoft.AspNetCore.App" ] }, - "Furion.Extras.Logging.Serilog/2.12.9": { + "Furion.Extras.Logging.Serilog/2.18.7": { "type": "project", "framework": ".NETCoreApp,Version=v5.0", "dependencies": { @@ -3057,7 +3045,7 @@ "Microsoft.AspNetCore.App" ] }, - "Furion.Extras.ObjectMapper.Mapster/2.12.9": { + "Furion.Extras.ObjectMapper.Mapster/2.18.7": { "type": "project", "framework": ".NETCoreApp,Version=v5.0", "dependencies": { @@ -3184,34 +3172,20 @@ "lib/netstandard2.0/Dapper.Contrib.xml" ] }, - "Furion.Extras.DependencyModel.CodeAnalysis/2.12.9": { - "sha512": "ewZuytQCMFbqtbz2ILCFGSsPrhixkybYeSrIK2EFxchXOoiSVAsHniKMA+BFuRifxjp+oZHyMvZtNmUvAEK23w==", + "Furion.Extras.DependencyModel.CodeAnalysis/2.18.7": { + "sha512": "WbMhJtJEDaLKgNi8qcGCwPrbWXF+VMC2EtMhdeJXiv0csCR/cEXtX+knfFgsyDx/ldk7t31QrpfWPbMHjmUJAA==", "type": "package", - "path": "furion.extras.dependencymodel.codeanalysis/2.12.9", + "path": "furion.extras.dependencymodel.codeanalysis/2.18.7", "files": [ ".nupkg.metadata", ".signature.p7s", - "furion.extras.dependencymodel.codeanalysis.2.12.9.nupkg.sha512", + "furion.extras.dependencymodel.codeanalysis.2.18.7.nupkg.sha512", "furion.extras.dependencymodel.codeanalysis.nuspec", "icon.png", "lib/net5.0/Furion.Extras.DependencyModel.CodeAnalysis.dll", "lib/net5.0/Furion.Extras.DependencyModel.CodeAnalysis.xml" ] }, - "Furion.Extras.Web.HttpContext/2.12.9": { - "sha512": "ZUnCxN5LHCoDvxFGsVAHaPfvDpkpQQiRPNqrst9GbFUjt/Elt6URfmCEB35NsQ5PSqj0rHQWyY4MLteNsB+8Tw==", - "type": "package", - "path": "furion.extras.web.httpcontext/2.12.9", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "furion.extras.web.httpcontext.2.12.9.nupkg.sha512", - "furion.extras.web.httpcontext.nuspec", - "icon.png", - "lib/net5.0/Furion.Extras.Web.HttpContext.dll", - "lib/net5.0/Furion.Extras.Web.HttpContext.xml" - ] - }, "Google.Protobuf/3.6.1": { "sha512": "741fGeDQjixBJaU2j+0CbrmZXsNJkTn/hWbOh4fLVXndHsCclJmWznCPWrJmPoZKvajBvAz3e8ECJOUvRtwjNQ==", "type": "package", @@ -3348,10 +3322,10 @@ "mapster.dependencyinjection.nuspec" ] }, - "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.7": { - "sha512": "80zYklKE6CZZswm5zjCUNbDx2Pavt45qfmVWLY1Heoe7GiJsPGGs9odgmsUFZ75bq4D6F4ZwK0LOam1TGUlHCg==", + "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.9": { + "sha512": "zG4G0waQzkdG0TazXbyuvIxpmWgQllnIjuKNcXNIh5mwcMVG1UPqT09L5EkAGmW2TtktJNWvojr77OpiOpK9JA==", "type": "package", - "path": "microsoft.aspnetcore.authentication.jwtbearer/5.0.7", + "path": "microsoft.aspnetcore.authentication.jwtbearer/5.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3359,21 +3333,21 @@ "THIRD-PARTY-NOTICES.TXT", "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", "lib/net5.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", - "microsoft.aspnetcore.authentication.jwtbearer.5.0.7.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.5.0.9.nupkg.sha512", "microsoft.aspnetcore.authentication.jwtbearer.nuspec" ] }, - "Microsoft.AspNetCore.Razor.Language/5.0.7": { - "sha512": "U5lqzXIbvS31gPWYgRbJtbPVIlJaLYVjCOpOo0QnhhMDuCv0kxLXjAq30OCUMzq+2gmaa4XsLYHs9n7hXYRLWA==", + "Microsoft.AspNetCore.Razor.Language/5.0.9": { + "sha512": "HxpSdAWFxODqqJ0usB05vU8h4b512wj6DGo8FLF38ihTcSYTAwGkqGHhtPOaXwUplH+y8aLj9yZJbfXvBZa0iQ==", "type": "package", - "path": "microsoft.aspnetcore.razor.language/5.0.7", + "path": "microsoft.aspnetcore.razor.language/5.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "THIRD-PARTY-NOTICES.TXT", "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", - "microsoft.aspnetcore.razor.language.5.0.7.nupkg.sha512", + "microsoft.aspnetcore.razor.language.5.0.9.nupkg.sha512", "microsoft.aspnetcore.razor.language.nuspec" ] }, @@ -3487,10 +3461,10 @@ "tools/uninstall.ps1" ] }, - "Microsoft.CodeAnalysis.Common/3.10.0": { - "sha512": "Htsk5pJmKjTgUwAP5oyuIODX/b6Zl4RD0tpM62NEncxne/LiQvP50j9g8h+qFtp4lS4AmAYTVPBbXgBuC5zcQA==", + "Microsoft.CodeAnalysis.Common/3.11.0": { + "sha512": "FDKSkRRXnaEWMa2ONkLMo0ZAt/uiV1XIXyodwKIgP1AMIKA7JJKXx/OwFVsvkkUT4BeobLwokoxFw70fICahNg==", "type": "package", - "path": "microsoft.codeanalysis.common/3.10.0", + "path": "microsoft.codeanalysis.common/3.11.0", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3528,14 +3502,14 @@ "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", - "microsoft.codeanalysis.common.3.10.0.nupkg.sha512", + "microsoft.codeanalysis.common.3.11.0.nupkg.sha512", "microsoft.codeanalysis.common.nuspec" ] }, - "Microsoft.CodeAnalysis.CSharp/3.10.0": { - "sha512": "GM83V29l0zsOLReyxpFs32Ujss3wkrVbWFTVjGANXxceycWmi7aLBNL4TQ3r3ZiG4m2b+/LIqwIVkDvZpjOnuw==", + "Microsoft.CodeAnalysis.CSharp/3.11.0": { + "sha512": "aDRRb7y/sXoJyDqFEQ3Il9jZxyUMHkShzZeCRjQf3SS84n2J0cTEi3TbwVZE9XJvAeMJhGfVVxwOdjYBg6ljmw==", "type": "package", - "path": "microsoft.codeanalysis.csharp/3.10.0", + "path": "microsoft.codeanalysis.csharp/3.11.0", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3573,7 +3547,7 @@ "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", - "microsoft.codeanalysis.csharp.3.10.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.3.11.0.nupkg.sha512", "microsoft.codeanalysis.csharp.nuspec" ] }, @@ -3671,59 +3645,59 @@ "microsoft.data.sqlite.core.nuspec" ] }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "sha512": "VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", + "Microsoft.EntityFrameworkCore/5.0.9": { + "sha512": "mA+W/zpJZMp802xt2D+qBXrme4VFN+FlsrHdU6WG5HKDAnezClRksJhJicUR8XojnSPp9SgZKa1aIAasB5G67g==", "type": "package", - "path": "microsoft.entityframeworkcore/5.0.7", + "path": "microsoft.entityframeworkcore/5.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll", "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.5.0.9.nupkg.sha512", "microsoft.entityframeworkcore.nuspec" ] }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "sha512": "MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", + "Microsoft.EntityFrameworkCore.Abstractions/5.0.9": { + "sha512": "csbpDaXe9iQUkvDS3JZRAFfkgcRA7BlHE3u8feBLlYervmTAS1WIWPBZKMtH0a2GO5njwAABU3j+hZMCPYBrzQ==", "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/5.0.7", + "path": "microsoft.entityframeworkcore.abstractions/5.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll", "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.5.0.9.nupkg.sha512", "microsoft.entityframeworkcore.abstractions.nuspec" ] }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "sha512": "ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", + "Microsoft.EntityFrameworkCore.Analyzers/5.0.9": { + "sha512": "eyuPLRFjcF7VWH8qy1uUuMrO02W15n9EXAXnYjCTWgH0SDIeZAa2XZXMZ9U3dvOPtvllMBy0obYA5SSbnpaNoQ==", "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/5.0.7", + "path": "microsoft.entityframeworkcore.analyzers/5.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", "lib/netstandard2.0/_._", - "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.5.0.9.nupkg.sha512", "microsoft.entityframeworkcore.analyzers.nuspec" ] }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "sha512": "W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", + "Microsoft.EntityFrameworkCore.Relational/5.0.9": { + "sha512": "rGXoju3HtnxtdYlH7/lOyVlKJ9fZSwORukVCN250Aub2gx9bEmfXlDHeM9Gw9bkeunLEx3OoqL6DAz9VW8YTJA==", "type": "package", - "path": "microsoft.entityframeworkcore.relational/5.0.7", + "path": "microsoft.entityframeworkcore.relational/5.0.9", "files": [ ".nupkg.metadata", ".signature.p7s", "Icon.png", "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll", "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "microsoft.entityframeworkcore.relational.5.0.9.nupkg.sha512", "microsoft.entityframeworkcore.relational.nuspec" ] }, @@ -3840,10 +3814,10 @@ "microsoft.extensions.configuration.binder.nuspec" ] }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", + "Microsoft.Extensions.DependencyInjection/5.0.2": { + "sha512": "xzFW00AZEvOXM1OX+0+AYH5op/Hf3u//e6wszBd/rK72sypD+jx5CtsHxM4BVuFBEs8SajfO4QzSJtrQaHDr4A==", "type": "package", - "path": "microsoft.extensions.dependencyinjection/5.0.1", + "path": "microsoft.extensions.dependencyinjection/5.0.2", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -3858,7 +3832,7 @@ "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.5.0.2.nupkg.sha512", "microsoft.extensions.dependencyinjection.nuspec", "useSharedDesignerContext.txt", "version.txt" @@ -5145,22 +5119,22 @@ "sshnet.security.cryptography.nuspec" ] }, - "Swashbuckle.AspNetCore/6.1.4": { - "sha512": "aglxV+kJA5wP0RoAS8Rrh4Jp7bmVEcDAAofdSyGfea4TSEtNRLam9Fq0A4+0asUWDRk1N0/6VnuLC6+ev50wSQ==", + "Swashbuckle.AspNetCore/6.1.5": { + "sha512": "AFiomCan3c3twBr3q/0P0YECN+AtJEKASjtRybbKlFyqSyENrwj8Q3JmPQ7knyp7Z2TzbhZ+ZccA3eXpGcD97g==", "type": "package", - "path": "swashbuckle.aspnetcore/6.1.4", + "path": "swashbuckle.aspnetcore/6.1.5", "files": [ ".nupkg.metadata", ".signature.p7s", "build/Swashbuckle.AspNetCore.props", - "swashbuckle.aspnetcore.6.1.4.nupkg.sha512", + "swashbuckle.aspnetcore.6.1.5.nupkg.sha512", "swashbuckle.aspnetcore.nuspec" ] }, - "Swashbuckle.AspNetCore.Swagger/6.1.4": { - "sha512": "5XRKPKXpQRJMdOwHgotSZjWYGKnvresUIKiUOecmDrsiTkRpUd15QJMS/+HKYjjOvWnJthYwhLJG3pABJOHwOg==", + "Swashbuckle.AspNetCore.Swagger/6.1.5": { + "sha512": "Wp8FlwNCKR/DfxvEkjQdru0l7aUp4/5VLEvejCA8t/SMMcUTP+xw4zvyEjGCBoJ/ETqzQM3y+72iYaEOhBlYOw==", "type": "package", - "path": "swashbuckle.aspnetcore.swagger/6.1.4", + "path": "swashbuckle.aspnetcore.swagger/6.1.5", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -5173,14 +5147,14 @@ "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", - "swashbuckle.aspnetcore.swagger.6.1.4.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.6.1.5.nupkg.sha512", "swashbuckle.aspnetcore.swagger.nuspec" ] }, - "Swashbuckle.AspNetCore.SwaggerGen/6.1.4": { - "sha512": "i0Y3a3XMKz7r9vMNtB7TUIsWXpz9uJwnJ42NV3lAnmem7XpTykxm/cFJqHc9CqVBdbPf7XPvhUvEiUybRlocIg==", + "Swashbuckle.AspNetCore.SwaggerGen/6.1.5": { + "sha512": "16M5iJN+hzykkH/vEm4V+47rh8r8KNCOSkIWvP9/+krH3hqVjMlhuop8Xzq6IXckmpXLwxoylLBpiSG9Yy2UUQ==", "type": "package", - "path": "swashbuckle.aspnetcore.swaggergen/6.1.4", + "path": "swashbuckle.aspnetcore.swaggergen/6.1.5", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -5193,14 +5167,14 @@ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "swashbuckle.aspnetcore.swaggergen.6.1.4.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.6.1.5.nupkg.sha512", "swashbuckle.aspnetcore.swaggergen.nuspec" ] }, - "Swashbuckle.AspNetCore.SwaggerUI/6.1.4": { - "sha512": "Ue8Ag73DOXPPB/NCqT7oN1PYSj35IETWROsIZG9EbwAtFDcgonWOrHbefjMFUGyPalNm6CSmVm1JInpURnxMgw==", + "Swashbuckle.AspNetCore.SwaggerUI/6.1.5": { + "sha512": "/YwEGAdkDK8rEPSuPURNNgJ3mWmtsCI/xnVlWBaM2UDNVTr8wBUO0qhLvHFgrf6NjjjNq6cyO3M7lZMLXcGusw==", "type": "package", - "path": "swashbuckle.aspnetcore.swaggerui/6.1.4", + "path": "swashbuckle.aspnetcore.swaggerui/6.1.5", "files": [ ".nupkg.metadata", ".signature.p7s", @@ -5213,7 +5187,7 @@ "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "swashbuckle.aspnetcore.swaggerui.6.1.4.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.6.1.5.nupkg.sha512", "swashbuckle.aspnetcore.swaggerui.nuspec" ] }, @@ -8763,13 +8737,14 @@ "system.text.encoding.extensions.nuspec" ] }, - "System.Text.Json/4.6.0": { - "sha512": "4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==", + "System.Text.Json/5.0.2": { + "sha512": "I47dVIGiV6SfAyppphxqupertT/5oZkYLDCX6vC3HpOI4ZLjyoKAreUoem2ie6G0RbRuFrlqz/PcTQjfb2DOfQ==", "type": "package", - "path": "system.text.json/4.6.0", + "path": "system.text.json/5.0.2", "files": [ ".nupkg.metadata", ".signature.p7s", + "Icon.png", "LICENSE.TXT", "THIRD-PARTY-NOTICES.TXT", "lib/net461/System.Text.Json.dll", @@ -8778,7 +8753,7 @@ "lib/netcoreapp3.0/System.Text.Json.xml", "lib/netstandard2.0/System.Text.Json.dll", "lib/netstandard2.0/System.Text.Json.xml", - "system.text.json.4.6.0.nupkg.sha512", + "system.text.json.5.0.2.nupkg.sha512", "system.text.json.nuspec", "useSharedDesignerContext.txt", "version.txt" @@ -9582,17 +9557,17 @@ "path": "../framework/Api/Ewide.Core/Ewide.Core.csproj", "msbuildProject": "../framework/Api/Ewide.Core/Ewide.Core.csproj" }, - "Furion/2.12.9": { + "Furion/2.18.7": { "type": "project", "path": "../framework/Api/Furion/framework/Furion/Furion.csproj", "msbuildProject": "../framework/Api/Furion/framework/Furion/Furion.csproj" }, - "Furion.Extras.Authentication.JwtBearer/2.12.9": { + "Furion.Extras.Authentication.JwtBearer/2.18.7": { "type": "project", "path": "../framework/Api/Furion/framework/Furion.Extras.Authentication.JwtBearer/Furion.Extras.Authentication.JwtBearer.csproj", "msbuildProject": "../framework/Api/Furion/framework/Furion.Extras.Authentication.JwtBearer/Furion.Extras.Authentication.JwtBearer.csproj" }, - "Furion.Extras.DatabaseAccessor.Dapper/2.12.9": { + "Furion.Extras.DatabaseAccessor.Dapper/2.18.7": { "type": "project", "path": "../framework/Api/Furion/framework/Furion.Extras.DatabaseAccessor.Dapper/Furion.Extras.DatabaseAccessor.Dapper.csproj", "msbuildProject": "../framework/Api/Furion/framework/Furion.Extras.DatabaseAccessor.Dapper/Furion.Extras.DatabaseAccessor.Dapper.csproj" @@ -9602,12 +9577,12 @@ "path": "../framework/Api/Furion/framework/Furion.Extras.DatabaseAccessor.SqlSugar/Furion.Extras.DatabaseAccessor.SqlSugar.csproj", "msbuildProject": "../framework/Api/Furion/framework/Furion.Extras.DatabaseAccessor.SqlSugar/Furion.Extras.DatabaseAccessor.SqlSugar.csproj" }, - "Furion.Extras.Logging.Serilog/2.12.9": { + "Furion.Extras.Logging.Serilog/2.18.7": { "type": "project", "path": "../framework/Api/Furion/framework/Furion.Extras.Logging.Serilog/Furion.Extras.Logging.Serilog.csproj", "msbuildProject": "../framework/Api/Furion/framework/Furion.Extras.Logging.Serilog/Furion.Extras.Logging.Serilog.csproj" }, - "Furion.Extras.ObjectMapper.Mapster/2.12.9": { + "Furion.Extras.ObjectMapper.Mapster/2.18.7": { "type": "project", "path": "../framework/Api/Furion/framework/Furion.Extras.ObjectMapper.Mapster/Furion.Extras.ObjectMapper.Mapster.csproj", "msbuildProject": "../framework/Api/Furion/framework/Furion.Extras.ObjectMapper.Mapster/Furion.Extras.ObjectMapper.Mapster.csproj" diff --git a/Ewide.NbzsZheliban/obj/project.nuget.cache b/Ewide.NbzsZheliban/obj/project.nuget.cache index 5cbdad5..c695614 100644 --- a/Ewide.NbzsZheliban/obj/project.nuget.cache +++ b/Ewide.NbzsZheliban/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "ZXANC+B5SCP4wJprlorNQWG4iz2lKJqoGFaX0pn5YPk5QLwvetGiGsjb9g3lgV0YpHU8QD53tRnf2juMedAU1g==", + "dgSpecHash": "0IMfZyWrfmJdEOCxyzTJ62B5ottopPVDUVlnEWLYxLV215VQiPlNxxDh8MzbhUPyPmnKOaK1lKhu44x1N/O12A==", "success": true, "projectFilePath": "D:\\WORK\\C宁波拆迁\\h5_codegit\\Ewide.NbzsZheliban\\Ewide.NbzsZheliban.csproj", "expectedPackageFiles": [ @@ -10,8 +10,7 @@ "C:\\Users\\z1303\\.nuget\\packages\\csrediscore\\3.6.6\\csrediscore.3.6.6.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\dapper\\2.0.78\\dapper.2.0.78.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\dapper.contrib\\2.0.78\\dapper.contrib.2.0.78.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\furion.extras.dependencymodel.codeanalysis\\2.12.9\\furion.extras.dependencymodel.codeanalysis.2.12.9.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\furion.extras.web.httpcontext\\2.12.9\\furion.extras.web.httpcontext.2.12.9.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\furion.extras.dependencymodel.codeanalysis\\2.18.7\\furion.extras.dependencymodel.codeanalysis.2.18.7.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\google.protobuf\\3.6.1\\google.protobuf.3.6.1.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\k4os.compression.lz4\\1.1.11\\k4os.compression.lz4.1.1.11.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\k4os.compression.lz4.streams\\1.1.11\\k4os.compression.lz4.streams.1.1.11.nupkg.sha512", @@ -20,25 +19,25 @@ "C:\\Users\\z1303\\.nuget\\packages\\mapster\\7.2.0\\mapster.7.2.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\mapster.core\\1.2.0\\mapster.core.1.2.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\mapster.dependencyinjection\\1.0.0\\mapster.dependencyinjection.1.0.0.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\5.0.7\\microsoft.aspnetcore.authentication.jwtbearer.5.0.7.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.7\\microsoft.aspnetcore.razor.language.5.0.7.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\5.0.9\\microsoft.aspnetcore.authentication.jwtbearer.5.0.9.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.9\\microsoft.aspnetcore.razor.language.5.0.9.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.2\\microsoft.codeanalysis.analyzers.3.3.2.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.common\\3.10.0\\microsoft.codeanalysis.common.3.10.0.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.10.0\\microsoft.codeanalysis.csharp.3.10.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.common\\3.11.0\\microsoft.codeanalysis.common.3.11.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.11.0\\microsoft.codeanalysis.csharp.3.11.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.data.sqlite\\2.2.4\\microsoft.data.sqlite.2.2.4.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.data.sqlite.core\\2.2.4\\microsoft.data.sqlite.core.2.2.4.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.7\\microsoft.entityframeworkcore.5.0.7.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.7\\microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.7\\microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.7\\microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.9\\microsoft.entityframeworkcore.5.0.9.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.9\\microsoft.entityframeworkcore.abstractions.5.0.9.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.9\\microsoft.entityframeworkcore.analyzers.5.0.9.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.9\\microsoft.entityframeworkcore.relational.5.0.9.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.configuration\\2.0.0\\microsoft.extensions.configuration.2.0.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.configuration.binder\\2.0.0\\microsoft.extensions.configuration.binder.2.0.0.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.2\\microsoft.extensions.dependencyinjection.5.0.2.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.dependencymodel\\5.0.0\\microsoft.extensions.dependencymodel.5.0.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\3.1.8\\microsoft.extensions.fileproviders.abstractions.3.1.8.nupkg.sha512", @@ -109,10 +108,10 @@ "C:\\Users\\z1303\\.nuget\\packages\\sqlsugarcore.kdbndp\\1.0.0\\sqlsugarcore.kdbndp.1.0.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\ssh.net\\2016.1.0\\ssh.net.2016.1.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\sshnet.security.cryptography\\1.2.0\\sshnet.security.cryptography.1.2.0.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore\\6.1.4\\swashbuckle.aspnetcore.6.1.4.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.1.4\\swashbuckle.aspnetcore.swagger.6.1.4.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.1.4\\swashbuckle.aspnetcore.swaggergen.6.1.4.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.1.4\\swashbuckle.aspnetcore.swaggerui.6.1.4.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore\\6.1.5\\swashbuckle.aspnetcore.6.1.5.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.1.5\\swashbuckle.aspnetcore.swagger.6.1.5.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.1.5\\swashbuckle.aspnetcore.swaggergen.6.1.5.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.1.5\\swashbuckle.aspnetcore.swaggerui.6.1.5.nupkg.sha512", "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.buffers\\4.5.0\\system.buffers.4.5.0.nupkg.sha512", "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", @@ -182,7 +181,7 @@ "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", "C:\\Users\\z1303\\.nuget\\packages\\system.text.encoding.codepages\\5.0.0\\system.text.encoding.codepages.5.0.0.nupkg.sha512", "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\z1303\\.nuget\\packages\\system.text.json\\4.6.0\\system.text.json.4.6.0.nupkg.sha512", + "C:\\Users\\z1303\\.nuget\\packages\\system.text.json\\5.0.2\\system.text.json.5.0.2.nupkg.sha512", "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", diff --git a/FrontCode2/sunshine_levy/package-lock.json b/FrontCode2/sunshine_levy/package-lock.json index 08a96d0..969f1fb 100644 --- a/FrontCode2/sunshine_levy/package-lock.json +++ b/FrontCode2/sunshine_levy/package-lock.json @@ -259,7 +259,7 @@ }, "source-map": { "version": "0.5.7", - "resolved": "https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" } } @@ -281,7 +281,7 @@ }, "source-map": { "version": "0.5.7", - "resolved": "https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" } } @@ -357,7 +357,7 @@ "dependencies": { "jsesc": { "version": "0.5.0", - "resolved": "https://registry.nlark.com/jsesc/download/jsesc-0.5.0.tgz", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=" }, "regexpu-core": { @@ -1409,7 +1409,7 @@ }, "to-fast-properties": { "version": "2.0.0", - "resolved": "https://registry.nlark.com/to-fast-properties/download/to-fast-properties-2.0.0.tgz?cache=0&sync_timestamp=1628418893613&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fto-fast-properties%2Fdownload%2Fto-fast-properties-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=" } } @@ -1967,7 +1967,7 @@ }, "ansi-gray": { "version": "0.1.1", - "resolved": "https://registry.npm.taobao.org/ansi-gray/download/ansi-gray-0.1.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-gray/-/ansi-gray-0.1.1.tgz", "integrity": "sha1-KWLPVOyXksSFEKPetSRDaGHvclE=", "requires": { "ansi-wrap": "0.1.0" @@ -1994,12 +1994,12 @@ }, "ansi-wrap": { "version": "0.1.0", - "resolved": "https://registry.npm.taobao.org/ansi-wrap/download/ansi-wrap-0.1.0.tgz", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", "integrity": "sha1-qCJQ3bABXponyoLoLqYDu/pF768=" }, "any-promise": { "version": "1.3.0", - "resolved": "https://registry.npm.taobao.org/any-promise/download/any-promise-1.3.0.tgz", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", "integrity": "sha1-q8av7tzqUugJzcA3au0845Y10X8=" }, "anymatch": { @@ -2013,7 +2013,7 @@ }, "append-buffer": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/append-buffer/download/append-buffer-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/append-buffer/-/append-buffer-1.0.2.tgz", "integrity": "sha1-2CIM9GYIFSXv6lBhTz3mUU36WPE=", "requires": { "buffer-equal": "^1.0.0" @@ -2026,7 +2026,7 @@ }, "archy": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/archy/download/archy-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz", "integrity": "sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=" }, "argparse": { @@ -2044,7 +2044,7 @@ }, "arr-filter": { "version": "1.1.2", - "resolved": "https://registry.nlark.com/arr-filter/download/arr-filter-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/arr-filter/-/arr-filter-1.1.2.tgz", "integrity": "sha1-Q/3d0JHo7xGqTEXZzcGOLf8XEe4=", "requires": { "make-iterator": "^1.0.0" @@ -2057,7 +2057,7 @@ }, "arr-map": { "version": "2.0.2", - "resolved": "https://registry.npm.taobao.org/arr-map/download/arr-map-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/arr-map/-/arr-map-2.0.2.tgz", "integrity": "sha1-Onc0X/wc814qkYJWAfnljy4kysQ=", "requires": { "make-iterator": "^1.0.0" @@ -2070,7 +2070,7 @@ }, "array-each": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/array-each/download/array-each-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/array-each/-/array-each-1.0.1.tgz", "integrity": "sha1-p5SvDAWrF1KEbudTofIRoFugxE8=" }, "array-find-index": { @@ -2100,7 +2100,7 @@ }, "array-initial": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/array-initial/download/array-initial-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/array-initial/-/array-initial-1.1.0.tgz", "integrity": "sha1-L6dLJnOTccOUe9enrcc74zSz15U=", "requires": { "array-slice": "^1.0.0", @@ -2223,7 +2223,7 @@ }, "assert-plus": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/assert-plus/download/assert-plus-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=" }, "assign-symbols": { @@ -2264,7 +2264,7 @@ }, "async-settle": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/async-settle/download/async-settle-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/async-settle/-/async-settle-1.0.0.tgz", "integrity": "sha1-HQqRS7Aldb7IqPOnTlCA9yssDGs=", "requires": { "async-done": "^1.2.2" @@ -2280,7 +2280,7 @@ }, "asynckit": { "version": "0.4.0", - "resolved": "https://registry.npm.taobao.org/asynckit/download/asynckit-0.4.0.tgz", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=" }, "at-least-node": { @@ -2309,7 +2309,7 @@ }, "aws-sign2": { "version": "0.7.0", - "resolved": "https://registry.nlark.com/aws-sign2/download/aws-sign2-0.7.0.tgz", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=" }, "aws4": { @@ -3112,7 +3112,7 @@ "dependencies": { "camelcase": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" } } @@ -3327,7 +3327,7 @@ }, "bach": { "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/bach/download/bach-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/bach/-/bach-1.2.0.tgz", "integrity": "sha1-Szzpa/JxNPeaG0FKUcFONMO9mIA=", "requires": { "arr-filter": "^1.1.1", @@ -3424,7 +3424,7 @@ }, "bcrypt-pbkdf": { "version": "1.0.2", - "resolved": "https://registry.npm.taobao.org/bcrypt-pbkdf/download/bcrypt-pbkdf-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", "requires": { "tweetnacl": "^0.14.3" @@ -3670,7 +3670,7 @@ }, "buffer-equal": { "version": "1.0.0", - "resolved": "https://registry.nlark.com/buffer-equal/download/buffer-equal-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/buffer-equal/-/buffer-equal-1.0.0.tgz", "integrity": "sha1-WWFrSYME1Var1GaWayLu2j7KX74=" }, "buffer-from": { @@ -3803,7 +3803,7 @@ }, "clone": { "version": "2.1.2", - "resolved": "https://registry.nlark.com/clone/download/clone-2.1.2.tgz", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" }, "css-loader": { @@ -3842,7 +3842,7 @@ }, "emojis-list": { "version": "2.1.0", - "resolved": "https://registry.nlark.com/emojis-list/download/emojis-list-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=" }, "enhanced-resolve": { @@ -3891,7 +3891,7 @@ }, "html-webpack-plugin": { "version": "3.2.0", - "resolved": "https://registry.nlark.com/html-webpack-plugin/download/html-webpack-plugin-3.2.0.tgz", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-3.2.0.tgz", "integrity": "sha1-sBq71yOsqqeze2r0SS69oD2d03s=", "requires": { "html-minifier": "^3.2.3", @@ -3905,7 +3905,7 @@ "dependencies": { "loader-utils": { "version": "0.2.17", - "resolved": "https://registry.npm.taobao.org/loader-utils/download/loader-utils-0.2.17.tgz", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", "requires": { "big.js": "^3.1.3", @@ -3940,7 +3940,7 @@ }, "jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/jsonfile/download/jsonfile-4.0.0.tgz?cache=0&sync_timestamp=1604161876665&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonfile%2Fdownload%2Fjsonfile-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { "graceful-fs": "^4.1.6" @@ -4242,7 +4242,7 @@ }, "memory-fs": { "version": "0.4.1", - "resolved": "https://registry.npm.taobao.org/memory-fs/download/memory-fs-0.4.1.tgz", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", "requires": { "errno": "^0.1.3", @@ -4333,7 +4333,7 @@ }, "call-me-maybe": { "version": "1.0.1", - "resolved": "https://registry.nlark.com/call-me-maybe/download/call-me-maybe-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=" }, "caller-callsite": { @@ -4432,7 +4432,7 @@ }, "caseless": { "version": "0.12.0", - "resolved": "https://registry.nlark.com/caseless/download/caseless-0.12.0.tgz", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=" }, "ccount": { @@ -4487,7 +4487,7 @@ }, "charenc": { "version": "0.0.2", - "resolved": "https://registry.npm.taobao.org/charenc/download/charenc-0.0.2.tgz", + "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz", "integrity": "sha1-wKHS86cJLgN3S/qD8UwPxXkKhmc=" }, "check-types": { @@ -4651,12 +4651,12 @@ }, "clone-buffer": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/clone-buffer/download/clone-buffer-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=" }, "clone-stats": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/clone-stats/download/clone-stats-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=" }, "cloneable-readable": { @@ -4696,7 +4696,7 @@ }, "collection-map": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/collection-map/download/collection-map-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/collection-map/-/collection-map-1.0.0.tgz", "integrity": "sha1-rqDwb40mx4DCt1SUOFVEsiVa8Yw=", "requires": { "arr-map": "^2.0.2", @@ -5086,7 +5086,7 @@ }, "crypt": { "version": "0.0.2", - "resolved": "https://registry.npm.taobao.org/crypt/download/crypt-0.0.2.tgz", + "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz", "integrity": "sha1-iNf/fsDfuG9xPch7u0LQRNPmxBs=" }, "crypto-browserify": { @@ -5318,7 +5318,7 @@ }, "css-parse": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/css-parse/download/css-parse-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/css-parse/-/css-parse-2.0.0.tgz", "integrity": "sha1-pGjuZnwW2BzPBcWMONKpfHgNv9Q=", "requires": { "css": "^2.0.0" @@ -6156,7 +6156,7 @@ }, "dashdash": { "version": "1.14.1", - "resolved": "https://registry.npm.taobao.org/dashdash/download/dashdash-1.14.1.tgz?cache=0&sync_timestamp=1601073647826&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdashdash%2Fdownload%2Fdashdash-1.14.1.tgz", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", "requires": { "assert-plus": "^1.0.0" @@ -6222,12 +6222,12 @@ }, "default-resolution": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/default-resolution/download/default-resolution-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/default-resolution/-/default-resolution-2.0.0.tgz", "integrity": "sha1-vLgrqnKtebQmp2cy8aga1t8m1oQ=" }, "defaults": { "version": "1.0.3", - "resolved": "https://registry.nlark.com/defaults/download/defaults-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", "integrity": "sha1-xlYFHpgX2f8I7YgUd/P+QBnz730=", "requires": { "clone": "^1.0.2" @@ -6328,7 +6328,7 @@ }, "delayed-stream": { "version": "1.0.0", - "resolved": "https://registry.nlark.com/delayed-stream/download/delayed-stream-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=" }, "depd": { @@ -6354,7 +6354,7 @@ }, "detect-file": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/detect-file/download/detect-file-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=" }, "detect-indent": { @@ -6510,7 +6510,7 @@ }, "ecc-jsbn": { "version": "0.1.2", - "resolved": "https://registry.nlark.com/ecc-jsbn/download/ecc-jsbn-0.1.2.tgz", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", "requires": { "jsbn": "~0.1.0", @@ -6928,7 +6928,7 @@ }, "expand-tilde": { "version": "2.0.2", - "resolved": "https://registry.npm.taobao.org/expand-tilde/download/expand-tilde-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", "requires": { "homedir-polyfill": "^1.0.1" @@ -7099,7 +7099,7 @@ }, "extsprintf": { "version": "1.3.0", - "resolved": "https://registry.nlark.com/extsprintf/download/extsprintf-1.3.0.tgz", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=" }, "fancy-log": { @@ -7115,7 +7115,7 @@ "dependencies": { "time-stamp": { "version": "1.1.0", - "resolved": "https://registry.nlark.com/time-stamp/download/time-stamp-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-1.1.0.tgz", "integrity": "sha1-dkpaEa9QVhkhsTPztE5hhofg9cM=" } } @@ -7156,7 +7156,7 @@ }, "fast-levenshtein": { "version": "1.1.4", - "resolved": "https://registry.nlark.com/fast-levenshtein/download/fast-levenshtein-1.1.4.tgz", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-1.1.4.tgz", "integrity": "sha1-5qdUzI8V5YmHqpy9J69m/W9OWvk=" }, "fastparse": { @@ -7355,7 +7355,7 @@ }, "for-own": { "version": "1.0.0", - "resolved": "https://registry.nlark.com/for-own/download/for-own-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", "requires": { "for-in": "^1.0.1" @@ -7363,7 +7363,7 @@ }, "forever-agent": { "version": "0.6.1", - "resolved": "https://registry.nlark.com/forever-agent/download/forever-agent-0.6.1.tgz", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=" }, "form-data": { @@ -7473,7 +7473,7 @@ }, "fs-mkdirp-stream": { "version": "1.0.0", - "resolved": "https://registry.nlark.com/fs-mkdirp-stream/download/fs-mkdirp-stream-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/fs-mkdirp-stream/-/fs-mkdirp-stream-1.0.0.tgz", "integrity": "sha1-C3gV/DIBxqaeFNuYzgmMFpNSWes=", "requires": { "graceful-fs": "^4.1.11", @@ -7546,7 +7546,7 @@ }, "getpass": { "version": "0.1.7", - "resolved": "https://registry.nlark.com/getpass/download/getpass-0.1.7.tgz", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", "requires": { "assert-plus": "^1.0.0" @@ -7583,7 +7583,7 @@ }, "glob-stream": { "version": "6.1.0", - "resolved": "https://registry.npm.taobao.org/glob-stream/download/glob-stream-6.1.0.tgz", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-6.1.0.tgz", "integrity": "sha1-cEXJlBOz65SIjYOrRtC0BMx73eQ=", "requires": { "extend": "^3.0.0", @@ -7600,7 +7600,7 @@ "dependencies": { "glob-parent": { "version": "3.1.0", - "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-3.1.0.tgz?cache=0&sync_timestamp=1626760165717&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglob-parent%2Fdownload%2Fglob-parent-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", "requires": { "is-glob": "^3.1.0", @@ -7609,7 +7609,7 @@ }, "is-glob": { "version": "3.1.0", - "resolved": "https://registry.nlark.com/is-glob/download/is-glob-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", "requires": { "is-extglob": "^2.1.0" @@ -7642,7 +7642,7 @@ "dependencies": { "normalize-path": { "version": "2.1.1", - "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", "requires": { "remove-trailing-separator": "^1.0.1" @@ -7693,7 +7693,7 @@ }, "extend-shallow": { "version": "2.0.1", - "resolved": "https://registry.nlark.com/extend-shallow/download/extend-shallow-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "requires": { "is-extendable": "^0.1.0" @@ -7701,7 +7701,7 @@ }, "fill-range": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/fill-range/download/fill-range-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", "requires": { "extend-shallow": "^2.0.1", @@ -7718,7 +7718,7 @@ }, "glob-parent": { "version": "3.1.0", - "resolved": "https://registry.nlark.com/glob-parent/download/glob-parent-3.1.0.tgz?cache=0&sync_timestamp=1626760165717&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fglob-parent%2Fdownload%2Fglob-parent-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", "requires": { "is-glob": "^3.1.0", @@ -7727,7 +7727,7 @@ "dependencies": { "is-glob": { "version": "3.1.0", - "resolved": "https://registry.nlark.com/is-glob/download/is-glob-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", "requires": { "is-extglob": "^2.1.0" @@ -7737,7 +7737,7 @@ }, "is-binary-path": { "version": "1.0.1", - "resolved": "https://registry.nlark.com/is-binary-path/download/is-binary-path-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", "requires": { "binary-extensions": "^1.0.0" @@ -7745,7 +7745,7 @@ }, "is-number": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/is-number/download/is-number-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "requires": { "kind-of": "^3.0.2" @@ -7763,7 +7763,7 @@ }, "to-regex-range": { "version": "2.1.1", - "resolved": "https://registry.nlark.com/to-regex-range/download/to-regex-range-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", "requires": { "is-number": "^3.0.0", @@ -7784,7 +7784,7 @@ }, "global-prefix": { "version": "1.0.2", - "resolved": "https://registry.nlark.com/global-prefix/download/global-prefix-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", "requires": { "expand-tilde": "^2.0.2", @@ -7876,12 +7876,12 @@ "dependencies": { "camelcase": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" }, "cliui": { "version": "3.2.0", - "resolved": "https://registry.nlark.com/cliui/download/cliui-3.2.0.tgz", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", "requires": { "string-width": "^1.0.1", @@ -7891,7 +7891,7 @@ }, "find-up": { "version": "1.1.2", - "resolved": "https://registry.nlark.com/find-up/download/find-up-1.1.2.tgz", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", "requires": { "path-exists": "^2.0.0", @@ -7900,7 +7900,7 @@ }, "is-fullwidth-code-point": { "version": "1.0.0", - "resolved": "https://registry.nlark.com/is-fullwidth-code-point/download/is-fullwidth-code-point-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", "requires": { "number-is-nan": "^1.0.0" @@ -7908,7 +7908,7 @@ }, "load-json-file": { "version": "1.1.0", - "resolved": "https://registry.nlark.com/load-json-file/download/load-json-file-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", "requires": { "graceful-fs": "^4.1.2", @@ -7920,7 +7920,7 @@ }, "os-locale": { "version": "1.4.0", - "resolved": "https://registry.nlark.com/os-locale/download/os-locale-1.4.0.tgz?cache=0&sync_timestamp=1627564416279&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fos-locale%2Fdownload%2Fos-locale-1.4.0.tgz", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", "requires": { "lcid": "^1.0.0" @@ -7928,7 +7928,7 @@ }, "parse-json": { "version": "2.2.0", - "resolved": "https://registry.nlark.com/parse-json/download/parse-json-2.2.0.tgz", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", "requires": { "error-ex": "^1.2.0" @@ -7936,7 +7936,7 @@ }, "path-exists": { "version": "2.1.0", - "resolved": "https://registry.nlark.com/path-exists/download/path-exists-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", "requires": { "pinkie-promise": "^2.0.0" @@ -7944,7 +7944,7 @@ }, "path-type": { "version": "1.1.0", - "resolved": "https://registry.nlark.com/path-type/download/path-type-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", "requires": { "graceful-fs": "^4.1.2", @@ -7954,12 +7954,12 @@ }, "pify": { "version": "2.3.0", - "resolved": "https://registry.nlark.com/pify/download/pify-2.3.0.tgz", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=" }, "read-pkg": { "version": "1.1.0", - "resolved": "https://registry.nlark.com/read-pkg/download/read-pkg-1.1.0.tgz?cache=0&sync_timestamp=1628984695234&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fread-pkg%2Fdownload%2Fread-pkg-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", "requires": { "load-json-file": "^1.0.0", @@ -7969,7 +7969,7 @@ }, "read-pkg-up": { "version": "1.0.1", - "resolved": "https://registry.nlark.com/read-pkg-up/download/read-pkg-up-1.0.1.tgz?cache=0&sync_timestamp=1618846971516&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fread-pkg-up%2Fdownload%2Fread-pkg-up-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", "requires": { "find-up": "^1.0.0", @@ -7978,7 +7978,7 @@ }, "string-width": { "version": "1.0.2", - "resolved": "https://registry.nlark.com/string-width/download/string-width-1.0.2.tgz?cache=0&sync_timestamp=1631551445892&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstring-width%2Fdownload%2Fstring-width-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", "requires": { "code-point-at": "^1.0.0", @@ -7988,7 +7988,7 @@ }, "strip-bom": { "version": "2.0.0", - "resolved": "https://registry.nlark.com/strip-bom/download/strip-bom-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", "requires": { "is-utf8": "^0.2.0" @@ -7996,7 +7996,7 @@ }, "which-module": { "version": "1.0.0", - "resolved": "https://registry.nlark.com/which-module/download/which-module-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=" }, "y18n": { @@ -8071,7 +8071,7 @@ }, "gulplog": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/gulplog/download/gulplog-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", "integrity": "sha1-4oxNRdBey77YGDY86PnFkmIp/+U=", "requires": { "glogg": "^1.0.0" @@ -8095,7 +8095,7 @@ }, "har-schema": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/har-schema/download/har-schema-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=" }, "har-validator": { @@ -8467,7 +8467,7 @@ }, "http-signature": { "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/http-signature/download/http-signature-1.2.0.tgz?cache=0&sync_timestamp=1600868555829&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fhttp-signature%2Fdownload%2Fhttp-signature-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", "requires": { "assert-plus": "^1.0.0", @@ -8521,7 +8521,7 @@ }, "jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/jsonfile/download/jsonfile-4.0.0.tgz?cache=0&sync_timestamp=1604161876665&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonfile%2Fdownload%2Fjsonfile-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { "graceful-fs": "^4.1.6" @@ -8935,7 +8935,7 @@ }, "is-alphanumeric": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-alphanumeric/download/is-alphanumeric-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-alphanumeric/-/is-alphanumeric-1.0.0.tgz", "integrity": "sha1-Spzvcdr0wAHB2B1j0UDPU/1oifQ=" }, "is-alphanumerical": { @@ -9102,7 +9102,7 @@ }, "is-negated-glob": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-negated-glob/download/is-negated-glob-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-negated-glob/-/is-negated-glob-1.0.0.tgz", "integrity": "sha1-aRC8pdqMleeEtXUbl2z1oQ/uNtI=" }, "is-negative-zero": { @@ -9225,7 +9225,7 @@ }, "is-typedarray": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/is-typedarray/download/is-typedarray-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=" }, "is-unc-path": { @@ -9248,7 +9248,7 @@ }, "is-valid-glob": { "version": "1.0.0", - "resolved": "https://registry.nlark.com/is-valid-glob/download/is-valid-glob-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-valid-glob/-/is-valid-glob-1.0.0.tgz", "integrity": "sha1-Kb8+/3Ab4tTTFdusw5vDn+j2Aao=" }, "is-what": { @@ -9293,7 +9293,7 @@ }, "isstream": { "version": "0.1.2", - "resolved": "https://registry.nlark.com/isstream/download/isstream-0.1.2.tgz", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=" }, "jake": { @@ -9309,7 +9309,7 @@ "dependencies": { "async": { "version": "0.9.2", - "resolved": "https://registry.nlark.com/async/download/async-0.9.2.tgz", + "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=" } } @@ -9386,7 +9386,7 @@ }, "jsbn": { "version": "0.1.1", - "resolved": "https://registry.nlark.com/jsbn/download/jsbn-0.1.1.tgz", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=" }, "jsesc": { @@ -9407,7 +9407,7 @@ }, "json-schema": { "version": "0.2.3", - "resolved": "https://registry.nlark.com/json-schema/download/json-schema-0.2.3.tgz", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" }, "json-schema-ref-parser": { @@ -9465,12 +9465,12 @@ }, "json-stable-stringify-without-jsonify": { "version": "1.0.1", - "resolved": "https://registry.nlark.com/json-stable-stringify-without-jsonify/download/json-stable-stringify-without-jsonify-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE=" }, "json-stringify-safe": { "version": "5.0.1", - "resolved": "https://registry.nlark.com/json-stringify-safe/download/json-stringify-safe-5.0.1.tgz", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=" }, "json3": { @@ -9494,7 +9494,7 @@ }, "jsprim": { "version": "1.4.1", - "resolved": "https://registry.npm.taobao.org/jsprim/download/jsprim-1.4.1.tgz", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", "requires": { "assert-plus": "1.0.0", @@ -9533,7 +9533,7 @@ }, "jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/jsonfile/download/jsonfile-4.0.0.tgz?cache=0&sync_timestamp=1604161876665&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonfile%2Fdownload%2Fjsonfile-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { "graceful-fs": "^4.1.6" @@ -9573,12 +9573,12 @@ "dependencies": { "ansi-styles": { "version": "2.2.1", - "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-2.2.1.tgz?cache=0&sync_timestamp=1618995588464&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-styles%2Fdownload%2Fansi-styles-2.2.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, "camelcase": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" }, "cross-spawn": { @@ -9656,7 +9656,7 @@ }, "jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/jsonfile/download/jsonfile-4.0.0.tgz?cache=0&sync_timestamp=1604161876665&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonfile%2Fdownload%2Fjsonfile-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { "graceful-fs": "^4.1.6" @@ -9728,7 +9728,7 @@ }, "source-map": { "version": "0.5.7", - "resolved": "https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" }, "stylesheet-loader": { @@ -9744,7 +9744,7 @@ "dependencies": { "chalk": { "version": "1.1.3", - "resolved": "https://registry.nlark.com/chalk/download/chalk-1.1.3.tgz?cache=0&sync_timestamp=1627646655305&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { "ansi-styles": "^2.2.1", @@ -9758,7 +9758,7 @@ }, "supports-color": { "version": "2.0.0", - "resolved": "https://registry.nlark.com/supports-color/download/supports-color-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" }, "tapable": { @@ -9825,7 +9825,7 @@ }, "last-run": { "version": "1.1.1", - "resolved": "https://registry.nlark.com/last-run/download/last-run-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/last-run/-/last-run-1.1.1.tgz", "integrity": "sha1-RblpQsF7HHnHchmCWbqUO+v4yls=", "requires": { "default-resolution": "^2.0.0", @@ -9840,7 +9840,7 @@ }, "lazystream": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/lazystream/download/lazystream-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.0.tgz", "integrity": "sha1-9plf4PggOS9hOWvolGJAe7dxaOQ=", "requires": { "readable-stream": "^2.0.5" @@ -9856,7 +9856,7 @@ }, "lead": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/lead/download/lead-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/lead/-/lead-1.0.0.tgz", "integrity": "sha1-bxT5mje+Op3XhPVJVpDlkDRm7kI=", "requires": { "flush-write-stream": "^1.0.2" @@ -10010,12 +10010,12 @@ }, "lodash.debounce": { "version": "4.0.8", - "resolved": "https://registry.nlark.com/lodash.debounce/download/lodash.debounce-4.0.8.tgz", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", "integrity": "sha1-gteb/zCmfEAF/9XiUVMArZyk168=" }, "lodash.isequal": { "version": "4.5.0", - "resolved": "https://registry.npm.taobao.org/lodash.isequal/download/lodash.isequal-4.5.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", "integrity": "sha1-QVxEePK8wwEgwizhDtMib30+GOA=" }, "lodash.memoize": { @@ -10025,7 +10025,7 @@ }, "lodash.some": { "version": "4.6.0", - "resolved": "https://registry.npm.taobao.org/lodash.some/download/lodash.some-4.6.0.tgz", + "resolved": "https://registry.npmjs.org/lodash.some/-/lodash.some-4.6.0.tgz", "integrity": "sha1-G7nzFO9ri63tE7VJFpsqlF62jk0=" }, "lodash.uniq": { @@ -10094,7 +10094,7 @@ }, "lru-queue": { "version": "0.1.0", - "resolved": "https://registry.npm.taobao.org/lru-queue/download/lru-queue-0.1.0.tgz", + "resolved": "https://registry.npmjs.org/lru-queue/-/lru-queue-0.1.0.tgz", "integrity": "sha1-Jzi9nw089PhEkMVzbEhpmsYyzaM=", "requires": { "es5-ext": "~0.10.2" @@ -10154,7 +10154,7 @@ }, "matchdep": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/matchdep/download/matchdep-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/matchdep/-/matchdep-2.0.0.tgz", "integrity": "sha1-xvNINKDY28OzfCfui7yyfHd1WC4=", "requires": { "findup-sync": "^2.0.0", @@ -10165,7 +10165,7 @@ "dependencies": { "findup-sync": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/findup-sync/download/findup-sync-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", "requires": { "detect-file": "^1.0.0", @@ -10176,7 +10176,7 @@ }, "is-glob": { "version": "3.1.0", - "resolved": "https://registry.nlark.com/is-glob/download/is-glob-3.1.0.tgz", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", "requires": { "is-extglob": "^2.1.0" @@ -10616,7 +10616,7 @@ }, "jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/jsonfile/download/jsonfile-4.0.0.tgz?cache=0&sync_timestamp=1604161876665&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonfile%2Fdownload%2Fjsonfile-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { "graceful-fs": "^4.1.6" @@ -10784,7 +10784,7 @@ }, "fill-range": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/fill-range/download/fill-range-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", "requires": { "extend-shallow": "^2.0.1", @@ -10795,7 +10795,7 @@ "dependencies": { "extend-shallow": { "version": "2.0.1", - "resolved": "https://registry.nlark.com/extend-shallow/download/extend-shallow-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "requires": { "is-extendable": "^0.1.0" @@ -10857,7 +10857,7 @@ }, "is-number": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/is-number/download/is-number-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", "requires": { "kind-of": "^3.0.2" @@ -10865,7 +10865,7 @@ "dependencies": { "kind-of": { "version": "3.2.2", - "resolved": "https://registry.npm.taobao.org/kind-of/download/kind-of-3.2.2.tgz", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", "requires": { "is-buffer": "^1.1.5" @@ -10888,7 +10888,7 @@ }, "jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/jsonfile/download/jsonfile-4.0.0.tgz?cache=0&sync_timestamp=1604161876665&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonfile%2Fdownload%2Fjsonfile-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { "graceful-fs": "^4.1.6" @@ -11214,7 +11214,7 @@ }, "path-exists": { "version": "3.0.0", - "resolved": "https://registry.nlark.com/path-exists/download/path-exists-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=" }, "pkg-dir": { @@ -11273,7 +11273,7 @@ }, "to-regex-range": { "version": "2.1.1", - "resolved": "https://registry.nlark.com/to-regex-range/download/to-regex-range-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", "requires": { "is-number": "^3.0.0", @@ -11351,7 +11351,7 @@ "dependencies": { "extend-shallow": { "version": "2.0.1", - "resolved": "https://registry.nlark.com/extend-shallow/download/extend-shallow-2.0.1.tgz", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", "requires": { "is-extendable": "^0.1.0" @@ -11379,7 +11379,7 @@ }, "memory-fs": { "version": "0.4.1", - "resolved": "https://registry.npm.taobao.org/memory-fs/download/memory-fs-0.4.1.tgz", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", "requires": { "errno": "^0.1.3", @@ -12212,7 +12212,7 @@ }, "object.defaults": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/object.defaults/download/object.defaults-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/object.defaults/-/object.defaults-1.1.0.tgz", "integrity": "sha1-On+GgzS0B96gbaFtiNXNKeQ1/s8=", "requires": { "array-each": "^1.0.1", @@ -12233,7 +12233,7 @@ }, "object.map": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/object.map/download/object.map-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/object.map/-/object.map-1.0.1.tgz", "integrity": "sha1-z4Plncj8wK1fQlDh94s7gb2AHTc=", "requires": { "for-own": "^1.0.0", @@ -12268,7 +12268,7 @@ }, "object.reduce": { "version": "1.0.1", - "resolved": "https://registry.nlark.com/object.reduce/download/object.reduce-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/object.reduce/-/object.reduce-1.0.1.tgz", "integrity": "sha1-b+NI8qx/oPlcpiEiZZkJaCW7A60=", "requires": { "for-own": "^1.0.0", @@ -12396,7 +12396,7 @@ }, "ordered-read-streams": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/ordered-read-streams/download/ordered-read-streams-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-1.0.1.tgz", "integrity": "sha1-d8DLN8QVJdZBZtmQ/61+xqDhNj4=", "requires": { "readable-stream": "^2.0.1" @@ -12521,7 +12521,7 @@ }, "parse-filepath": { "version": "1.0.2", - "resolved": "https://registry.nlark.com/parse-filepath/download/parse-filepath-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/parse-filepath/-/parse-filepath-1.0.2.tgz", "integrity": "sha1-pjISf1Oq89FYdvWHLz/6x2PWyJE=", "requires": { "is-absolute": "^1.0.0", @@ -12545,7 +12545,7 @@ }, "parse-passwd": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/parse-passwd/download/parse-passwd-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=" }, "parseurl": { @@ -12598,7 +12598,7 @@ }, "path-root": { "version": "0.1.1", - "resolved": "https://registry.npm.taobao.org/path-root/download/path-root-0.1.1.tgz", + "resolved": "https://registry.npmjs.org/path-root/-/path-root-0.1.1.tgz", "integrity": "sha1-mkpoFMrBwM1zNgqV8yCDyOpHRbc=", "requires": { "path-root-regex": "^0.1.0" @@ -12606,7 +12606,7 @@ }, "path-root-regex": { "version": "0.1.2", - "resolved": "https://registry.nlark.com/path-root-regex/download/path-root-regex-0.1.2.tgz", + "resolved": "https://registry.npmjs.org/path-root-regex/-/path-root-regex-0.1.2.tgz", "integrity": "sha1-v8zcjfWxLcUsi0PsONGNcsBLqW0=" }, "path-to-regexp": { @@ -12643,7 +12643,7 @@ }, "performance-now": { "version": "2.1.0", - "resolved": "https://registry.nlark.com/performance-now/download/performance-now-2.1.0.tgz", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=" }, "picomatch": { @@ -16028,7 +16028,7 @@ }, "pretty-data": { "version": "0.40.0", - "resolved": "https://registry.npm.taobao.org/pretty-data/download/pretty-data-0.40.0.tgz", + "resolved": "https://registry.npmjs.org/pretty-data/-/pretty-data-0.40.0.tgz", "integrity": "sha1-Vyqo6iNGdGerlLa1Jmpv2cj93XI=" }, "pretty-error": { @@ -16042,7 +16042,7 @@ }, "pretty-hrtime": { "version": "1.0.3", - "resolved": "https://registry.npm.taobao.org/pretty-hrtime/download/pretty-hrtime-1.0.3.tgz", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", "integrity": "sha1-t+PqQkNaTJsnWdmeDyAesZWALuE=" }, "private": { @@ -16601,7 +16601,7 @@ }, "jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/jsonfile/download/jsonfile-4.0.0.tgz?cache=0&sync_timestamp=1604161876665&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonfile%2Fdownload%2Fjsonfile-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { "graceful-fs": "^4.1.6" @@ -16736,7 +16736,7 @@ }, "jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/jsonfile/download/jsonfile-4.0.0.tgz?cache=0&sync_timestamp=1604161876665&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonfile%2Fdownload%2Fjsonfile-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { "graceful-fs": "^4.1.6" @@ -16823,7 +16823,7 @@ }, "jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/jsonfile/download/jsonfile-4.0.0.tgz?cache=0&sync_timestamp=1604161876665&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonfile%2Fdownload%2Fjsonfile-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { "graceful-fs": "^4.1.6" @@ -17061,7 +17061,7 @@ }, "jsonfile": { "version": "4.0.0", - "resolved": "https://registry.npm.taobao.org/jsonfile/download/jsonfile-4.0.0.tgz?cache=0&sync_timestamp=1604161876665&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fjsonfile%2Fdownload%2Fjsonfile-4.0.0.tgz", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", "requires": { "graceful-fs": "^4.1.6" @@ -17228,12 +17228,12 @@ }, "color-name": { "version": "1.1.3", - "resolved": "https://registry.npm.taobao.org/color-name/download/color-name-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" }, "has-flag": { "version": "3.0.0", - "resolved": "https://registry.nlark.com/has-flag/download/has-flag-3.0.0.tgz?cache=0&sync_timestamp=1626715907927&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fhas-flag%2Fdownload%2Fhas-flag-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" }, "supports-color": { @@ -17642,7 +17642,7 @@ }, "remove-bom-stream": { "version": "1.2.0", - "resolved": "https://registry.npm.taobao.org/remove-bom-stream/download/remove-bom-stream-1.2.0.tgz", + "resolved": "https://registry.npmjs.org/remove-bom-stream/-/remove-bom-stream-1.2.0.tgz", "integrity": "sha1-BfGlk/FuQuH7kOv1nejlaVJflSM=", "requires": { "remove-bom-buffer": "^3.0.0", @@ -17693,7 +17693,7 @@ }, "replace-homedir": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/replace-homedir/download/replace-homedir-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/replace-homedir/-/replace-homedir-1.0.0.tgz", "integrity": "sha1-6H9tUTuSjd6AgmDBK+f+xv9ueYw=", "requires": { "homedir-polyfill": "^1.0.1", @@ -17737,7 +17737,7 @@ }, "request-progress": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/request-progress/download/request-progress-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/request-progress/-/request-progress-3.0.0.tgz", "integrity": "sha1-TKdUCBx/7GP1BeT6qCWqBs1mnb4=", "requires": { "throttleit": "^1.0.0" @@ -17809,7 +17809,7 @@ }, "resolve-dir": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/resolve-dir/download/resolve-dir-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", "requires": { "expand-tilde": "^2.0.0", @@ -17823,7 +17823,7 @@ }, "resolve-options": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/resolve-options/download/resolve-options-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/resolve-options/-/resolve-options-1.1.0.tgz", "integrity": "sha1-MrueOcBtZzONyTeMDW1gdFZq0TE=", "requires": { "value-or-function": "^3.0.0" @@ -17988,7 +17988,7 @@ }, "semver-greatest-satisfied-range": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/semver-greatest-satisfied-range/download/semver-greatest-satisfied-range-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/semver-greatest-satisfied-range/-/semver-greatest-satisfied-range-1.1.0.tgz", "integrity": "sha1-E+jCZYq5aRywzXEJMkAoDTb3els=", "requires": { "sver-compat": "^1.5.0" @@ -18530,7 +18530,7 @@ }, "stack-trace": { "version": "0.0.10", - "resolved": "https://registry.nlark.com/stack-trace/download/stack-trace-0.0.10.tgz?cache=0&sync_timestamp=1620387179562&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fstack-trace%2Fdownload%2Fstack-trace-0.0.10.tgz", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", "integrity": "sha1-VHxws0fo0ytOEI6hoqFZ5f3eGcA=" }, "stackframe": { @@ -18570,7 +18570,7 @@ }, "stealthy-require": { "version": "1.1.1", - "resolved": "https://registry.nlark.com/stealthy-require/download/stealthy-require-1.1.1.tgz", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=" }, "stream-browserify": { @@ -18784,17 +18784,17 @@ "dependencies": { "ansi-styles": { "version": "2.2.1", - "resolved": "https://registry.nlark.com/ansi-styles/download/ansi-styles-2.2.1.tgz?cache=0&sync_timestamp=1618995588464&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fansi-styles%2Fdownload%2Fansi-styles-2.2.1.tgz", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" }, "camelcase": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/camelcase/download/camelcase-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=" }, "chalk": { "version": "1.1.3", - "resolved": "https://registry.nlark.com/chalk/download/chalk-1.1.3.tgz?cache=0&sync_timestamp=1627646655305&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fchalk%2Fdownload%2Fchalk-1.1.3.tgz", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", "requires": { "ansi-styles": "^2.2.1", @@ -18806,7 +18806,7 @@ }, "supports-color": { "version": "2.0.0", - "resolved": "https://registry.nlark.com/supports-color/download/supports-color-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" } } @@ -18861,7 +18861,7 @@ }, "sver-compat": { "version": "1.5.0", - "resolved": "https://registry.npm.taobao.org/sver-compat/download/sver-compat-1.5.0.tgz", + "resolved": "https://registry.npmjs.org/sver-compat/-/sver-compat-1.5.0.tgz", "integrity": "sha1-PPh9/rTQe0o/FIJ7wYaz/QxkXNg=", "requires": { "es6-iterator": "^2.0.1", @@ -19149,7 +19149,7 @@ }, "thenify-all": { "version": "1.6.0", - "resolved": "https://registry.npm.taobao.org/thenify-all/download/thenify-all-1.6.0.tgz", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", "integrity": "sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY=", "requires": { "thenify": ">= 3.1.0 < 4" @@ -19162,12 +19162,12 @@ }, "throttleit": { "version": "1.0.0", - "resolved": "https://registry.npm.taobao.org/throttleit/download/throttleit-1.0.0.tgz", + "resolved": "https://registry.npmjs.org/throttleit/-/throttleit-1.0.0.tgz", "integrity": "sha1-nnhYNtr0Z0MUWlmEtiaNgoUorGw=" }, "through": { "version": "2.3.8", - "resolved": "https://registry.nlark.com/through/download/through-2.3.8.tgz?cache=0&sync_timestamp=1618847037651&other_urls=https%3A%2F%2Fregistry.nlark.com%2Fthrough%2Fdownload%2Fthrough-2.3.8.tgz", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" }, "through2": { @@ -19232,7 +19232,7 @@ }, "to-absolute-glob": { "version": "2.0.2", - "resolved": "https://registry.npm.taobao.org/to-absolute-glob/download/to-absolute-glob-2.0.2.tgz", + "resolved": "https://registry.npmjs.org/to-absolute-glob/-/to-absolute-glob-2.0.2.tgz", "integrity": "sha1-GGX0PZ50sIItufFFt4z/fQ98hJs=", "requires": { "is-absolute": "^1.0.0", @@ -19279,7 +19279,7 @@ }, "to-through": { "version": "2.0.0", - "resolved": "https://registry.npm.taobao.org/to-through/download/to-through-2.0.0.tgz", + "resolved": "https://registry.npmjs.org/to-through/-/to-through-2.0.0.tgz", "integrity": "sha1-/JKtq6ByZHvAtn1rA2ZKoZUJOvY=", "requires": { "through2": "^2.0.3" @@ -19307,12 +19307,12 @@ }, "traverse": { "version": "0.6.6", - "resolved": "https://registry.nlark.com/traverse/download/traverse-0.6.6.tgz", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.6.tgz", "integrity": "sha1-y99WD9e5r2MlAv7UD5GMFX6pcTc=" }, "trim": { "version": "0.0.1", - "resolved": "https://registry.npm.taobao.org/trim/download/trim-0.0.1.tgz", + "resolved": "https://registry.npmjs.org/trim/-/trim-0.0.1.tgz", "integrity": "sha1-WFhUf2spB1fulczMZm+1AITEYN0=" }, "trim-newlines": { @@ -19407,7 +19407,7 @@ }, "tunnel-agent": { "version": "0.6.0", - "resolved": "https://registry.nlark.com/tunnel-agent/download/tunnel-agent-0.6.0.tgz", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", "requires": { "safe-buffer": "^5.0.1" @@ -19415,7 +19415,7 @@ }, "tweetnacl": { "version": "0.14.5", - "resolved": "https://registry.npm.taobao.org/tweetnacl/download/tweetnacl-0.14.5.tgz", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=" }, "type": { @@ -19552,7 +19552,7 @@ }, "unc-path-regex": { "version": "0.1.2", - "resolved": "https://registry.npm.taobao.org/unc-path-regex/download/unc-path-regex-0.1.2.tgz", + "resolved": "https://registry.npmjs.org/unc-path-regex/-/unc-path-regex-0.1.2.tgz", "integrity": "sha1-5z3T17DXxe2G+6xrCufYxqadUPo=" }, "undertaker": { @@ -19574,7 +19574,7 @@ }, "undertaker-registry": { "version": "1.0.1", - "resolved": "https://registry.npm.taobao.org/undertaker-registry/download/undertaker-registry-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/undertaker-registry/-/undertaker-registry-1.0.1.tgz", "integrity": "sha1-XkvaMI5KiirlhPm5pDWaSZglzFA=" }, "unherit": { @@ -19938,7 +19938,7 @@ }, "value-or-function": { "version": "3.0.0", - "resolved": "https://registry.npm.taobao.org/value-or-function/download/value-or-function-3.0.0.tgz", + "resolved": "https://registry.npmjs.org/value-or-function/-/value-or-function-3.0.0.tgz", "integrity": "sha1-HCQ6ULWVwb5Up1S/7OhWO5/42BM=" }, "vant": { @@ -19966,7 +19966,7 @@ }, "verror": { "version": "1.10.0", - "resolved": "https://registry.nlark.com/verror/download/verror-1.10.0.tgz", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", "requires": { "assert-plus": "^1.0.0", @@ -19976,7 +19976,7 @@ "dependencies": { "core-util-is": { "version": "1.0.2", - "resolved": "https://registry.nlark.com/core-util-is/download/core-util-is-1.0.2.tgz", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=" } } @@ -20028,7 +20028,7 @@ "dependencies": { "clone": { "version": "2.1.2", - "resolved": "https://registry.nlark.com/clone/download/clone-2.1.2.tgz", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=" } } @@ -20059,7 +20059,7 @@ }, "vinyl-sourcemap": { "version": "1.1.0", - "resolved": "https://registry.npm.taobao.org/vinyl-sourcemap/download/vinyl-sourcemap-1.1.0.tgz", + "resolved": "https://registry.npmjs.org/vinyl-sourcemap/-/vinyl-sourcemap-1.1.0.tgz", "integrity": "sha1-kqgAWTo4cDqM2xHYswCtS+Y7PhY=", "requires": { "append-buffer": "^1.0.2", @@ -20073,7 +20073,7 @@ "dependencies": { "normalize-path": { "version": "2.1.1", - "resolved": "https://registry.nlark.com/normalize-path/download/normalize-path-2.1.1.tgz", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", "requires": { "remove-trailing-separator": "^1.0.1" @@ -20083,7 +20083,7 @@ }, "vinyl-sourcemaps-apply": { "version": "0.2.1", - "resolved": "https://registry.npm.taobao.org/vinyl-sourcemaps-apply/download/vinyl-sourcemaps-apply-0.2.1.tgz", + "resolved": "https://registry.npmjs.org/vinyl-sourcemaps-apply/-/vinyl-sourcemaps-apply-0.2.1.tgz", "integrity": "sha1-q2VJ1h0XLCsbh75cUI0jnI74dwU=", "requires": { "source-map": "^0.5.1" @@ -20091,7 +20091,7 @@ "dependencies": { "source-map": { "version": "0.5.7", - "resolved": "https://registry.nlark.com/source-map/download/source-map-0.5.7.tgz", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=" } } @@ -20410,7 +20410,7 @@ }, "wcwidth": { "version": "1.0.1", - "resolved": "https://registry.nlark.com/wcwidth/download/wcwidth-1.0.1.tgz", + "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", "integrity": "sha1-8LDc+RW8X/FSivrbLA4XtTLaL+g=", "requires": { "defaults": "^1.0.3" diff --git a/README.md b/README.md index 46d3d5d..4cb6415 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,20 @@ git checkout zsxt_nbzs_h5 递归克隆 git clone --recursive http://118.178.224.202:3000/ewide/zsxt_nbzs_h5.git ---测试回调 +回调: +app: +[https://puser.zjzwfw.gov.cn/sso/mobile.do?action=oauth&scope=1&servicecode=fwzs] +PC: +[https://puser.zjzwfw.gov.cn/sso/newusp.do?action=ssoLogin&servicecode=fwzs] + https://puser.zjzwfw.gov.cn/sso/newusp.do?action=ssoLogin&servicecode=fwzs&goto=http://183.136.157.9:7099/#/index -https://appapi.zjzwfw.gov.cn/sso/servlet/simpleauth?method=ticketValidation&servicecode=fwzs \ No newline at end of file +https://appapi.zjzwfw.gov.cn/sso/servlet/simpleauth?method=ticketValidation&servicecode=fwzs + +https://juejin.cn/post/7005871168733315085 +开发平台 +http://op.zjzwfw.gov.cn/mobile/documents/technology/17111022678 +接入流程 +https://odynww.yuque.com/docs/share/525e3e8a-ad52-421b-90da-2d76808e3050#PzmJW +代码git +http://118.178.224.202:3000/ewide/zsxt_nbzs_h5 \ No newline at end of file diff --git a/framework b/framework index 19892c3..1abc262 160000 --- a/framework +++ b/framework @@ -1 +1 @@ -Subproject commit 19892c3967fbf399d5eae5d42b7271a13118c15e +Subproject commit 1abc262e1f752fba67ea5daec8daee74d012a22b