Sfoglia il codice sorgente

😎升级依赖及代码整理

zuohuaijun 1 anno fa
parent
commit
a7f94b84da

+ 2 - 2
Admin.NET/Admin.NET.Core/Admin.NET.Core.csproj

@@ -35,10 +35,10 @@
     <PackageReference Include="SkiaSharp.NativeAssets.Linux.NoDependencies" Version="2.88.8" />
     <PackageReference Include="SKIT.FlurlHttpClient.Wechat.Api" Version="3.5.0" />
     <PackageReference Include="SKIT.FlurlHttpClient.Wechat.TenpayV3" Version="3.7.0" />
-    <PackageReference Include="SqlSugarCore" Version="5.1.4.166" />
+    <PackageReference Include="SqlSugarCore" Version="5.1.4.167" />
     <PackageReference Include="SSH.NET" Version="2024.1.0" />
     <PackageReference Include="System.Linq.Dynamic.Core" Version="1.4.4" />
-    <PackageReference Include="TencentCloudSDK.Sms" Version="3.0.1070" />
+    <PackageReference Include="TencentCloudSDK.Sms" Version="3.0.1071" />
     <PackageReference Include="UAParser" Version="3.1.47" />
     <PackageReference Include="Yitter.IdGenerator" Version="1.0.14" />
   </ItemGroup>

+ 6 - 6
Web/package.json

@@ -2,7 +2,7 @@
 	"name": "admin.net",
 	"type": "module",
 	"version": "2.4.33",
-	"lastBuildTime": "2024.08.15",
+	"lastBuildTime": "2024.08.19",
 	"description": "Admin.NET 站在巨人肩膀上的 .NET 通用权限开发框架",
 	"author": "zuohuaijun",
 	"license": "MIT",
@@ -34,7 +34,7 @@
 		"echarts-wordcloud": "^2.1.0",
 		"element-plus": "^2.8.0",
 		"ezuikit": "^1.0.0",
-		"ezuikit-js": "^8.0.8",
+		"ezuikit-js": "^8.0.9",
 		"js-cookie": "^3.0.5",
 		"js-table2excel": "^1.1.2",
 		"jsplumb": "^2.15.6",
@@ -44,14 +44,14 @@
 		"monaco-editor": "^0.50.0",
 		"mqtt": "^4.3.8",
 		"nprogress": "^0.2.0",
-		"pinia": "^2.2.1",
+		"pinia": "^2.2.2",
 		"print-js": "^1.6.0",
 		"push.js": "^1.0.12",
 		"qrcodejs2-fixes": "^0.0.2",
 		"qs": "^6.13.0",
 		"relation-graph": "^2.2.3",
 		"screenfull": "^6.0.2",
-		"sm-crypto-v2": "^1.9.1",
+		"sm-crypto-v2": "^1.9.2",
 		"sortablejs": "^1.15.2",
 		"splitpanes": "^3.1.5",
 		"vcrontab-3": "^3.3.22",
@@ -61,7 +61,7 @@
 		"vue-demi": "^0.14.6",
 		"vue-draggable-plus": "^0.5.3",
 		"vue-grid-layout": "3.0.0-beta1",
-		"vue-i18n": "^9.13.1",
+		"vue-i18n": "^9.14.0",
 		"vue-json-pretty": "^2.4.0",
 		"vue-plugin-hiprint": "0.0.57-beta27",
 		"vue-router": "^4.4.3",
@@ -90,7 +90,7 @@
 		"sass": "^1.77.8",
 		"terser": "^5.31.6",
 		"typescript": "^5.5.4",
-		"vite": "^5.4.0",
+		"vite": "^5.4.1",
 		"vite-plugin-cdn-import": "^1.0.1",
 		"vite-plugin-compression2": "^1.2.0",
 		"vite-plugin-vue-setup-extend": "^0.4.0",

+ 1 - 1
Web/src/views/system/menu/index.vue

@@ -119,7 +119,7 @@ const openCopyMenu = (row: any) => {
 	state.editMenuTitle = '复制菜单';
 	var copyRow = JSON.parse(JSON.stringify(row)) as UpdateMenuInput;
 	copyRow.id = 0;
-	copyRow.title = "";
+	copyRow.title = '';
 	editMenuRef.value?.openDialog(copyRow);
 };
 

+ 1 - 1
Web/src/views/system/org/index.vue

@@ -140,7 +140,7 @@ const openCopyOrg = (row: any) => {
 	state.editOrgTitle = '复制菜单';
 	var copyRow = JSON.parse(JSON.stringify(row)) as UpdateOrgInput;
 	copyRow.id = 0;
-	copyRow.name = "";
+	copyRow.name = '';
 	editOrgRef.value?.openDialog(copyRow);
 };