Compare commits
40 Commits
f2bc8d14ab
...
feature-制度
| Author | SHA1 | Date | |
|---|---|---|---|
| fe0f67a777 | |||
| 3c8bb51c41 | |||
| 858b79942d | |||
| e9c3aee252 | |||
| f6f9543455 | |||
| 7b4e79b2eb | |||
| 4d12c3b794 | |||
| dd9230e5a1 | |||
| fd6b77bdc3 | |||
| 02ee929029 | |||
| 3382fe7b3f | |||
| 9f2bc65a0e | |||
| 8879c6ed3c | |||
| be9d2177c4 | |||
| ad66144bc3 | |||
| 8ebb2d68d9 | |||
| 2913b10fe4 | |||
| cde2478f05 | |||
| 616ab06f0e | |||
| 49a8256638 | |||
| 29cca0e4dd | |||
| 5c410e3837 | |||
| 534d7c4d01 | |||
| 2ae751bc4c | |||
| cdc0f5b51b | |||
| 8e97044faa | |||
| 835e812d4e | |||
| bf6e78b423 | |||
| 88ba348242 | |||
| 51cf0da474 | |||
| de68525230 | |||
| 207e5aeb0c | |||
| 91adce0fef | |||
| 1e20eeb0d1 | |||
| d22b29f45d | |||
| c9c2493671 | |||
| e73ce4b4b0 | |||
| 9e1fdcdd6a | |||
| de0b396bcb | |||
| 5d7aee0e7c |
@@ -7,3 +7,5 @@
|
||||
# 密码
|
||||
## mysql
|
||||
root@localhost ^QaKwfmo#HNy&0D7
|
||||
|
||||
zhiduguanli@192.168.39.183 Cpic#1234
|
||||
@@ -1,4 +1,4 @@
|
||||
{
|
||||
"java.configuration.updateBuildConfiguration": "interactive",
|
||||
"java.configuration.updateBuildConfiguration": "automatic",
|
||||
"java.compile.nullAnalysis.mode": "automatic"
|
||||
}
|
||||
|
||||
@@ -16,11 +16,11 @@
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
<maven.compiler.source>18</maven.compiler.source>
|
||||
<maven.compiler.target>18</maven.compiler.target>
|
||||
<maven.compiler.source>21</maven.compiler.source>
|
||||
<maven.compiler.target>21</maven.compiler.target>
|
||||
<spring.version>6.2.11</spring.version>
|
||||
<log4j.version>2.24.3</log4j.version>
|
||||
<jackson.version>2.18.3</jackson.version>
|
||||
<log4j.version>2.25.3</log4j.version>
|
||||
<jackson.version>2.20.1</jackson.version>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
@@ -76,6 +76,7 @@
|
||||
<artifactId>log4j-api</artifactId>
|
||||
<version>${log4j.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- jackson -->
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
@@ -90,7 +91,7 @@
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.core</groupId>
|
||||
<artifactId>jackson-annotations</artifactId>
|
||||
<version>${jackson.version}</version>
|
||||
<version>2.20</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
@@ -107,7 +108,7 @@
|
||||
<dependency>
|
||||
<groupId>commons-io</groupId>
|
||||
<artifactId>commons-io</artifactId>
|
||||
<version>2.18.0</version>
|
||||
<version>2.21.0</version>
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
/**
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2026-01-15 15:06:41
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2026-01-15 15:06:41
|
||||
* @FilePath: src/main/java/com/cpic/xim/utils/uuid.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
package com.cpic.xim.utils;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
public class UUIDUtil
|
||||
{
|
||||
public static String getUUID()
|
||||
{
|
||||
return UUID.randomUUID().toString();
|
||||
}
|
||||
}
|
||||
@@ -2,7 +2,7 @@
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2025-10-16 09:46:42
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2025-11-13 15:25:07
|
||||
* @LastModified: 2026-02-06 19:08:46
|
||||
* @FilePath: src/main/java/com/cpic/xim/utils/files/SaveUploadFile.java
|
||||
* @Description:
|
||||
*
|
||||
@@ -80,9 +80,18 @@ public class SaveUploadFile
|
||||
return savedFiles;
|
||||
}
|
||||
|
||||
/**
|
||||
* 将files参数中上传的文件,保存到tempFilePath指定的路径,文件名加上毫秒数避免重复。
|
||||
*
|
||||
* @param files
|
||||
* @param absoluteFilePath
|
||||
* @return 返回UploadedFile对象数组
|
||||
* @throws ProcessUploadedFileException
|
||||
*/
|
||||
public static Vector<UploadedFile> saveUploadFiles(
|
||||
MultipartFile[] files,
|
||||
String tempFilePath
|
||||
String absoluteFilePath,
|
||||
String relativeFilePath
|
||||
)
|
||||
throws ProcessUploadedFileException
|
||||
{
|
||||
@@ -90,15 +99,15 @@ public class SaveUploadFile
|
||||
UploadedFile uploadedFile = null;
|
||||
// File dir = new File( tempFilePath );
|
||||
String fileName = "";
|
||||
String fullPath;
|
||||
String fullPath = null;
|
||||
|
||||
if ( !(tempFilePath.endsWith( "/" ) || tempFilePath.endsWith( "\\" )) )
|
||||
if ( !(absoluteFilePath.endsWith( "/" ) || absoluteFilePath.endsWith( "\\" )) )
|
||||
{
|
||||
fullPath = tempFilePath + "/";
|
||||
fullPath = absoluteFilePath + "/";
|
||||
}
|
||||
else
|
||||
{
|
||||
fullPath = tempFilePath;
|
||||
fullPath = absoluteFilePath;
|
||||
}
|
||||
|
||||
try
|
||||
@@ -115,18 +124,18 @@ public class SaveUploadFile
|
||||
Long milliSecond = LocalDateTime.now().toInstant( ZoneOffset.of( "+8" ) ).toEpochMilli();
|
||||
|
||||
fileName = String.valueOf( milliSecond ) + "-" + file.getOriginalFilename();
|
||||
File destFile = new File( tempFilePath, fileName );
|
||||
File destFile = new File( fullPath, fileName );
|
||||
|
||||
file.transferTo( destFile );
|
||||
|
||||
uploadedFile = new UploadedFile(fileName, fullPath);
|
||||
uploadedFile = new UploadedFile( file.getOriginalFilename(), fileName, fullPath, relativeFilePath );
|
||||
|
||||
savedFiles.add( uploadedFile );
|
||||
}
|
||||
}
|
||||
catch ( IOException error )
|
||||
{
|
||||
throw new ProcessUploadedFileException( "临时目录" + tempFilePath + "保存文件" + fileName + "失败!" );
|
||||
throw new ProcessUploadedFileException( "临时目录" + absoluteFilePath + "保存文件" + fileName + "失败!" );
|
||||
}
|
||||
|
||||
return savedFiles;
|
||||
@@ -141,8 +150,79 @@ public class SaveUploadFile
|
||||
public static void MoveUploadedFile(
|
||||
String originFilePath,
|
||||
String newFilePath
|
||||
) throws MoveUploadedFileException
|
||||
)
|
||||
throws MoveUploadedFileException
|
||||
{
|
||||
// 防御性验证
|
||||
File originFile = new File( originFilePath );
|
||||
File dest = new File( newFilePath );
|
||||
|
||||
// 文件如果不存在就抛出异常
|
||||
if ( originFile.exists() == false )
|
||||
{
|
||||
throw new MoveUploadedFileException( "文件不存在!" );
|
||||
}
|
||||
|
||||
// 目的路径有同名文件
|
||||
if ( dest.exists() == true )
|
||||
{
|
||||
throw new MoveUploadedFileException( "目的路径已存在同名文件!" );
|
||||
}
|
||||
|
||||
// 不知道具体原因
|
||||
if ( originFile.renameTo( dest ) == false )
|
||||
{
|
||||
throw new MoveUploadedFileException( "移动文件失败!" );
|
||||
}
|
||||
}
|
||||
|
||||
public static String encodeFileName( String originalFileName )
|
||||
{
|
||||
StringBuilder encodedFileName = new StringBuilder( originalFileName.length() * 3 );
|
||||
char[] charArray = originalFileName.toCharArray();
|
||||
|
||||
for ( char c : charArray )
|
||||
{
|
||||
switch ( c )
|
||||
{
|
||||
case '%':
|
||||
encodedFileName.append( PERCENT );
|
||||
break;
|
||||
case ' ':
|
||||
encodedFileName.append( SPACING );
|
||||
break;
|
||||
case '+':
|
||||
encodedFileName.append( PLUS );
|
||||
break;
|
||||
case '/':
|
||||
encodedFileName.append( FORWARD_SLASH );
|
||||
break;
|
||||
case '?':
|
||||
encodedFileName.append( QUESTION_MASK );
|
||||
break;
|
||||
case '&':
|
||||
encodedFileName.append( AMPERSAND );
|
||||
break;
|
||||
case '#':
|
||||
encodedFileName.append( SHARP );
|
||||
break;
|
||||
case '=':
|
||||
encodedFileName.append( PLUS );
|
||||
break;
|
||||
default:
|
||||
encodedFileName.append( c );
|
||||
}
|
||||
}
|
||||
|
||||
return encodedFileName.toString();
|
||||
}
|
||||
|
||||
static final String SHARP = "%23";
|
||||
static final String PLUS = "%2B";
|
||||
static final String FORWARD_SLASH = "%2F";
|
||||
static final String QUESTION_MASK = "%3F";
|
||||
static final String SPACING = "%20";
|
||||
static final String EQUAL = "%3D";
|
||||
static final String PERCENT = "%25";
|
||||
static final String AMPERSAND = "%26";
|
||||
}
|
||||
|
||||
@@ -2,19 +2,33 @@
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2025-10-31 17:33:13
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2025-10-31 17:36:03
|
||||
* @FilePath: src/main/java/com/cpic/xim/web/controllers/fileupload/UploadedFile.java
|
||||
* @LastModified: 2026-02-06 17:41:44
|
||||
* @FilePath: src/main/java/com/cpic/xim/utils/files/UploadedFile.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
package com.cpic.xim.utils.files;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
/**
|
||||
* 描述上传文件的类。
|
||||
*
|
||||
*/
|
||||
public class UploadedFile
|
||||
{
|
||||
@JsonProperty("originFileName")
|
||||
private String originFileName;
|
||||
|
||||
@JsonProperty( "fileName" )
|
||||
private String fileName;
|
||||
private String localFilePath;
|
||||
|
||||
@JsonProperty( "absoluteFilePath" )
|
||||
private String absoluteFilePath;
|
||||
|
||||
@JsonProperty( "relativeFilePath" )
|
||||
private String relativeFilePath;
|
||||
|
||||
public String getFileName()
|
||||
{
|
||||
@@ -26,19 +40,44 @@ public class UploadedFile
|
||||
this.fileName = fileName;
|
||||
}
|
||||
|
||||
public String getLocalFilePath()
|
||||
public String getAbsoluteFilePath()
|
||||
{
|
||||
return localFilePath;
|
||||
return absoluteFilePath;
|
||||
}
|
||||
|
||||
public void setLocalFilePath( String localFilePath )
|
||||
public void setAbsoluteFilePath( String absoluteFilePath )
|
||||
{
|
||||
this.localFilePath = localFilePath;
|
||||
this.absoluteFilePath = absoluteFilePath;
|
||||
}
|
||||
|
||||
public UploadedFile( String fileName, String localFilePath )
|
||||
public String getRelativeFilePath()
|
||||
{
|
||||
return relativeFilePath;
|
||||
}
|
||||
|
||||
public void setRelativeFilePath( String relativeFilePath )
|
||||
{
|
||||
this.relativeFilePath = relativeFilePath;
|
||||
}
|
||||
|
||||
public UploadedFile()
|
||||
{}
|
||||
|
||||
public UploadedFile( String originFileName, String fileName, String absoluteFilePath, String relativeFilePath )
|
||||
{
|
||||
this.originFileName = originFileName;
|
||||
this.fileName = fileName;
|
||||
this.localFilePath = localFilePath;
|
||||
this.absoluteFilePath = absoluteFilePath;
|
||||
this.relativeFilePath = relativeFilePath;
|
||||
}
|
||||
|
||||
public String getOriginFileName()
|
||||
{
|
||||
return originFileName;
|
||||
}
|
||||
|
||||
public void setOriginFileName( String originFileName )
|
||||
{
|
||||
this.originFileName = originFileName;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,65 @@
|
||||
/**
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2026-02-07 21:36:35
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2026-02-07 21:36:35
|
||||
* @FilePath: src/main/java/com/cpic/xim/utils/utils.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
package com.cpic.xim.utils;
|
||||
|
||||
public class utils
|
||||
{
|
||||
public static String encodeURL( String urlString )
|
||||
{
|
||||
StringBuilder encodedURLString = new StringBuilder( urlString.length() * 3 );
|
||||
char[] charArray = urlString.toCharArray();
|
||||
|
||||
for ( char c : charArray )
|
||||
{
|
||||
switch ( c )
|
||||
{
|
||||
case '%':
|
||||
encodedURLString.append( PERCENT );
|
||||
break;
|
||||
case ' ':
|
||||
encodedURLString.append( SPACING );
|
||||
break;
|
||||
case '+':
|
||||
encodedURLString.append( PLUS );
|
||||
break;
|
||||
case '/':
|
||||
encodedURLString.append( FORWARD_SLASH );
|
||||
break;
|
||||
case '?':
|
||||
encodedURLString.append( QUESTION_MASK );
|
||||
break;
|
||||
case '&':
|
||||
encodedURLString.append( AMPERSAND );
|
||||
break;
|
||||
case '#':
|
||||
encodedURLString.append( SHARP );
|
||||
break;
|
||||
case '=':
|
||||
encodedURLString.append( PLUS );
|
||||
break;
|
||||
default:
|
||||
encodedURLString.append( c );
|
||||
}
|
||||
}
|
||||
|
||||
return encodedURLString.toString();
|
||||
}
|
||||
|
||||
static final String SHARP = "%23";
|
||||
static final String PLUS = "%2B";
|
||||
static final String FORWARD_SLASH = "%2F";
|
||||
static final String QUESTION_MASK = "%3F";
|
||||
static final String SPACING = "%20";
|
||||
static final String EQUAL = "%3D";
|
||||
static final String PERCENT = "%25";
|
||||
static final String AMPERSAND = "%26";
|
||||
|
||||
}
|
||||
@@ -0,0 +1,51 @@
|
||||
/**
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2025-11-17 17:49:58
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2025-11-18 15:19:46
|
||||
* @FilePath: src/main/java/com/cpic/xim/web/controllers/fileupload/MoveFileRequest.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.fileupload;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
public class MoveFileRequest
|
||||
{
|
||||
@JsonProperty("originFilePath")
|
||||
private String originFilePath;
|
||||
|
||||
@JsonProperty("destFilePath")
|
||||
private String destFilePath;
|
||||
|
||||
public MoveFileRequest()
|
||||
{}
|
||||
|
||||
public MoveFileRequest( String originFilePath, String destFilePath )
|
||||
{
|
||||
this.originFilePath = originFilePath;
|
||||
this.destFilePath = destFilePath;
|
||||
}
|
||||
|
||||
public String getOriginFilePath()
|
||||
{
|
||||
return originFilePath;
|
||||
}
|
||||
|
||||
public void setOriginFilePath( String originFilePath )
|
||||
{
|
||||
this.originFilePath = originFilePath;
|
||||
}
|
||||
|
||||
public String getDestFilePath()
|
||||
{
|
||||
return destFilePath;
|
||||
}
|
||||
|
||||
public void setDestFilePath( String destFilePath )
|
||||
{
|
||||
this.destFilePath = destFilePath;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,48 @@
|
||||
/**
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2025-11-17 17:31:15
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2025-11-17 17:31:16
|
||||
* @FilePath: src/main/java/com/cpic/xim/web/controllers/fileupload/MoveFileResult.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.fileupload;
|
||||
|
||||
import com.cpic.xim.web.controllers.QueryResponse;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
public class MoveFileResponse extends QueryResponse
|
||||
{
|
||||
|
||||
@JsonProperty("new-file-path")
|
||||
private String newFilePath;
|
||||
|
||||
public MoveFileResponse()
|
||||
{
|
||||
super();
|
||||
}
|
||||
|
||||
public MoveFileResponse(
|
||||
boolean success,
|
||||
String message,
|
||||
String newFilePath
|
||||
)
|
||||
{
|
||||
super( success, message );
|
||||
|
||||
this.newFilePath = newFilePath;
|
||||
}
|
||||
|
||||
public String getNewFilePath()
|
||||
{
|
||||
return newFilePath;
|
||||
}
|
||||
|
||||
public void setNewFilePath( String newFilePath )
|
||||
{
|
||||
this.newFilePath = newFilePath;
|
||||
}
|
||||
}
|
||||
@@ -14,6 +14,7 @@ import java.io.File;
|
||||
import java.util.Vector;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
@@ -21,6 +22,7 @@ import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
import com.cpic.xim.utils.files.SaveUploadFile;
|
||||
import com.cpic.xim.utils.files.UploadedFile;
|
||||
import com.cpic.xim.utils.files.exceptions.MoveUploadedFileException;
|
||||
import com.cpic.xim.utils.files.exceptions.ProcessUploadedFileException;
|
||||
|
||||
import jakarta.servlet.http.HttpServletRequest;
|
||||
@@ -28,7 +30,7 @@ import jakarta.servlet.http.HttpServletRequest;
|
||||
// @SuppressWarnings( "unused" )
|
||||
@Controller
|
||||
@RequestMapping( path = "/file" )
|
||||
public class FileUpload
|
||||
public class UploadFileController
|
||||
{
|
||||
/**
|
||||
* 接收上传文件,并保存到临时目录:
|
||||
@@ -44,28 +46,29 @@ public class FileUpload
|
||||
*/
|
||||
@RequestMapping( path = "/file-upload.do" )
|
||||
@ResponseBody
|
||||
public FileUploadResult saveUploadFile(
|
||||
@RequestParam( "file-name" ) String fileName,
|
||||
public UploadFileResponse saveUploadFile(
|
||||
@RequestParam( "fileName" ) String fileName,
|
||||
@RequestParam( "files" ) MultipartFile file,
|
||||
HttpServletRequest request
|
||||
)
|
||||
{
|
||||
// session id用来创建临时目录,避免重复
|
||||
String sessionID = request.getSession().getId();
|
||||
FileUploadResult result = new FileUploadResult();
|
||||
UploadFileResponse result = new UploadFileResponse();
|
||||
MultipartFile[] files = new MultipartFile[1];
|
||||
|
||||
result.setSuccess( true );
|
||||
result.setMessage( "上传成功!" );
|
||||
|
||||
String filePath = request.getServletContext().getRealPath( "/temp/upload/" + sessionID );
|
||||
File dir = new File( filePath );
|
||||
String relativeFilePath = "/temp/upload/" + sessionID;
|
||||
String absolutefilePath = request.getServletContext().getRealPath( relativeFilePath );
|
||||
File dir = new File( absolutefilePath );
|
||||
|
||||
// 创建临时目录
|
||||
if ( (!dir.exists()) && (!dir.mkdirs()) )
|
||||
{
|
||||
result.setSuccess( false );
|
||||
result.setMessage( "创建临时目录失败:" + filePath );
|
||||
result.setMessage( "创建临时目录失败:" + absolutefilePath );
|
||||
|
||||
return result;
|
||||
}
|
||||
@@ -74,7 +77,9 @@ public class FileUpload
|
||||
{
|
||||
files[0] = file;
|
||||
|
||||
Vector<UploadedFile> uploadFiles = SaveUploadFile.saveUploadFiles( files, filePath );
|
||||
Vector<UploadedFile> uploadFiles = SaveUploadFile.saveUploadFiles( files,
|
||||
absolutefilePath,
|
||||
relativeFilePath );
|
||||
|
||||
result.setFileList( uploadFiles );
|
||||
}
|
||||
@@ -86,4 +91,28 @@ public class FileUpload
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
@RequestMapping( path = "/move-file.do" )
|
||||
@ResponseBody
|
||||
public MoveFileResponse moveFile( @RequestBody MoveFileRequest request )
|
||||
{
|
||||
MoveFileResponse response = new MoveFileResponse( false, null, null );
|
||||
|
||||
try
|
||||
{
|
||||
SaveUploadFile.MoveUploadedFile( request.getOriginFilePath(), request.getDestFilePath() );
|
||||
|
||||
response.setSuccess( true );
|
||||
response.setMessage( "移动文件路径完成!" );
|
||||
response.setNewFilePath( request.getDestFilePath() );
|
||||
}
|
||||
catch ( MoveUploadedFileException error )
|
||||
{
|
||||
response.setSuccess( false );
|
||||
response.setMessage( error.getMessage() );
|
||||
response.setNewFilePath( request.getDestFilePath() );
|
||||
}
|
||||
|
||||
return response;
|
||||
}
|
||||
}
|
||||
@@ -23,9 +23,9 @@ import com.cpic.xim.web.controllers.QueryResponse;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
@SuppressWarnings( "unused" )
|
||||
public class FileUploadResult extends QueryResponse
|
||||
public class UploadFileResponse extends QueryResponse
|
||||
{
|
||||
public FileUploadResult()
|
||||
public UploadFileResponse()
|
||||
{
|
||||
super();
|
||||
}
|
||||
@@ -37,7 +37,7 @@ public class FileUploadResult extends QueryResponse
|
||||
* @param message 消息字符串
|
||||
* @param fileList 文件绝对路径字符串数组
|
||||
*/
|
||||
public FileUploadResult(
|
||||
public UploadFileResponse(
|
||||
boolean success,
|
||||
String message,
|
||||
Vector<UploadedFile> fileList
|
||||
@@ -0,0 +1,69 @@
|
||||
/**
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2025-12-26 17:16:22
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2025-12-26 17:16:22
|
||||
* @FilePath: src/main/java/com/cpic/xim/web/controllers/regulatory/AddNewRegulatoryController.java
|
||||
* @Description: 新增制度的控制器
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.regulatory;
|
||||
|
||||
import java.io.File;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
|
||||
import com.cpic.xim.utils.files.UploadedFile;
|
||||
|
||||
@Controller
|
||||
@RequestMapping( "/regulatory" )
|
||||
public class AddNewRegulatoryController
|
||||
{
|
||||
// 制度库文件的基础目录
|
||||
private static final String baseDirectory = "D:/制度库/";
|
||||
|
||||
@RequestMapping( path = "/add-new-regulatory.do", method = RequestMethod.POST )
|
||||
@ResponseBody
|
||||
public static AddNewRegulatoryResponse addNewRegulatory( @RequestBody AddNewRegulatoryRequest request )
|
||||
{
|
||||
AddNewRegulatoryResponse response = new AddNewRegulatoryResponse();
|
||||
|
||||
// 验证文件是否存在,并判断目睹路径是否有同名文件存在
|
||||
for ( UploadedFile file : request.getRegulatoryFiles() )
|
||||
{
|
||||
String destFilePath = baseDirectory + "/" + request.getRegulatoryName() + "/" + file.getFileName();
|
||||
File uploadFile = new File( file.getAbsoluteFilePath() );
|
||||
File dest = new File( destFilePath );
|
||||
|
||||
if ( uploadFile.exists() == false )
|
||||
{
|
||||
response.setSuccess( false );
|
||||
response.setMessage( "文件" + file.getAbsoluteFilePath() + "不存在!" );
|
||||
|
||||
return response;
|
||||
}
|
||||
|
||||
// 判断目的路径是否有同名文件
|
||||
if ( dest.exists() == true )
|
||||
{
|
||||
response.setSuccess( false );
|
||||
response.setMessage( "文件" + file.getAbsoluteFilePath() + "存在同名文件!" );
|
||||
|
||||
return response;
|
||||
}
|
||||
}
|
||||
|
||||
// 复制文件
|
||||
for ( UploadedFile file : request.getRegulatoryFiles() )
|
||||
{
|
||||
File uploadFile = new File( file.getAbsoluteFilePath() );
|
||||
|
||||
}
|
||||
|
||||
return response;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,108 @@
|
||||
/**
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2025-12-26 17:25:13
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2025-12-26 21:23:04
|
||||
* @FilePath: src/main/java/com/cpic/xim/web/controllers/regulatory/AddNewRegulatoryRequest.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.regulatory;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import com.cpic.xim.utils.files.UploadedFile;
|
||||
import java.util.Vector;
|
||||
|
||||
public class AddNewRegulatoryRequest
|
||||
{
|
||||
|
||||
public AddNewRegulatoryRequest()
|
||||
{
|
||||
this.regulatoryName = "";
|
||||
this.departmentName = "";
|
||||
this.releaseYear = "";
|
||||
this.comment = "";
|
||||
this.regulatoryFiles = new Vector<UploadedFile>();
|
||||
}
|
||||
|
||||
public AddNewRegulatoryRequest(
|
||||
String regulatoryName,
|
||||
String departmentName,
|
||||
String releaseYear,
|
||||
String comment,
|
||||
Vector<UploadedFile> regulatoryFiles
|
||||
)
|
||||
{
|
||||
this.regulatoryName = regulatoryName;
|
||||
this.departmentName = departmentName;
|
||||
this.releaseYear = releaseYear;
|
||||
this.comment = comment;
|
||||
this.regulatoryFiles = regulatoryFiles;
|
||||
}
|
||||
|
||||
public String getRegulatoryName()
|
||||
{
|
||||
return regulatoryName;
|
||||
}
|
||||
|
||||
public void setRegulatoryName( String regulatoryName )
|
||||
{
|
||||
this.regulatoryName = regulatoryName;
|
||||
}
|
||||
|
||||
public String getDepartmentName()
|
||||
{
|
||||
return departmentName;
|
||||
}
|
||||
|
||||
public void setDepartmentName( String departmentName )
|
||||
{
|
||||
this.departmentName = departmentName;
|
||||
}
|
||||
|
||||
public String getReleaseYear()
|
||||
{
|
||||
return releaseYear;
|
||||
}
|
||||
|
||||
public void setReleaseYear( String releaseYear )
|
||||
{
|
||||
this.releaseYear = releaseYear;
|
||||
}
|
||||
|
||||
public String getComment()
|
||||
{
|
||||
return comment;
|
||||
}
|
||||
|
||||
public void setComment( String comment )
|
||||
{
|
||||
this.comment = comment;
|
||||
}
|
||||
|
||||
public Vector<UploadedFile> getRegulatoryFiles()
|
||||
{
|
||||
return regulatoryFiles;
|
||||
}
|
||||
|
||||
public void setRegulatoryFiles( Vector<UploadedFile> regulatoryFiles )
|
||||
{
|
||||
this.regulatoryFiles = regulatoryFiles;
|
||||
}
|
||||
|
||||
@JsonProperty("regulatory_name")
|
||||
private String regulatoryName;
|
||||
|
||||
@JsonProperty("department_name")
|
||||
private String departmentName;
|
||||
|
||||
@JsonProperty("release_year")
|
||||
private String releaseYear;
|
||||
|
||||
@JsonProperty("comment")
|
||||
private String comment;
|
||||
|
||||
@JsonProperty("regulatory_files")
|
||||
private Vector<UploadedFile> regulatoryFiles;
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
/**
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2025-12-26 21:42:12
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2025-12-26 21:43:54
|
||||
* @FilePath: src/main/java/com/cpic/xim/web/controllers/regulatory/AddNewRegulatoryResponse.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.regulatory;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import com.cpic.xim.web.controllers.QueryResponse;
|
||||
|
||||
public class AddNewRegulatoryResponse extends QueryResponse
|
||||
{
|
||||
public AddNewRegulatoryResponse()
|
||||
{
|
||||
super( false, "");
|
||||
}
|
||||
}
|
||||
@@ -14,3 +14,10 @@ VITE_APP_CORS_ORIGIN=http://localhost:3000
|
||||
VITE_APP_TIMEOUT=5000
|
||||
VITE_APP_RETRY_ATTEMPTS=3
|
||||
VITE_APP_CACHE_ENABLED=true
|
||||
|
||||
#上传文件
|
||||
VITE_APP_URL_UPLOAD_FILE=http://222.76.244.118:8081/RegulatoryManagementBackend/file/file-upload.do
|
||||
VITE_APP_URL_MOVE_FILE=http://222.76.244.118:8081/RegulatoryManagementBackend/file/move-file.do
|
||||
# 添加新制度库
|
||||
VITE_APP_URL_ADD_NEW_REGULATORY=http://localhost:8080/RegulatoryManagementBackend/regulatory/add-new-regulatory.do
|
||||
VITE_APP_URL_PREFIX=http://222.76.244.118:8081/RegulatoryManagementBackend/
|
||||
@@ -1,216 +0,0 @@
|
||||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-03-14 09:19:21
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/.eslintrc.cjs
|
||||
* @Description: eslint 配置文件
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
module.exports = {
|
||||
root: true,
|
||||
env: { // 需要在env中指定运行的环境,这些环境其实就是一组预定义的全局变量,让 ESLint 知道当前环境存在这些全局变量
|
||||
node: true,
|
||||
browser: true,
|
||||
es2021: true,
|
||||
},
|
||||
parser:"espree",
|
||||
parserOptions:{
|
||||
sourceType: "module",
|
||||
ecmaVersion: 2021,
|
||||
},
|
||||
extends:["eslint:recommended",],
|
||||
rules:{
|
||||
indent: ["warn", 4,],
|
||||
// 圆括号中的空格,为空不加空格,紧跟花括号、方括号、圆括号时也不加入空格
|
||||
"space-in-parens": ["error", "always", { exceptions: ["{}", "[]", "()", "empty",], },],
|
||||
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||
"no-unused-vars": "warn",
|
||||
semi: ["error", "always",], // 控制行尾部分号
|
||||
quotes: ["error", "double",],
|
||||
"comma-dangle": ["error", {
|
||||
arrays: "always",
|
||||
objects: "always",
|
||||
imports: "never",
|
||||
exports: "never",
|
||||
functions: "never",
|
||||
},], // 数组和对象键值对最后一个逗号
|
||||
"comma-style": ["error", "last",], // 逗号在行位
|
||||
"no-undef-init": "error",
|
||||
"no-invalid-this": "error",
|
||||
"no-use-before-define": "error",
|
||||
"no-shadow-restricted-names": "error", // 禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
|
||||
"comma-spacing": ["error", { before: false, after: true, },],
|
||||
"array-bracket-spacing": ["error", "never", {
|
||||
singleValue: false,
|
||||
objectsInArrays: false,
|
||||
arraysInArrays: false,
|
||||
},],
|
||||
"brace-style": ["error", "allman", { allowSingleLine: true, },],
|
||||
"prefer-const": "warn",
|
||||
"space-before-function-paren": ["error", {
|
||||
anonymous: "always",
|
||||
named: "never",
|
||||
asyncArrow: "always",
|
||||
},],
|
||||
},
|
||||
overrides: [
|
||||
{
|
||||
files: ["*.vue",],
|
||||
parser: "vue-eslint-parser",
|
||||
parserOptions: {
|
||||
ecmaVersion: 2021,
|
||||
sourceType: "module",
|
||||
parser: { // <script>标签中的lang属性配置不同的parser
|
||||
ts: "@typescript-eslint/parser",
|
||||
js: "espree",
|
||||
"<template>": "espree",
|
||||
},
|
||||
// project: "tsconfig.json",
|
||||
project: ["tsconfig.json", "tsconfig.app.json",],
|
||||
extraFileExtensions: [".vue",],
|
||||
},
|
||||
plugins: ["eslint-plugin-vue", "@stylistic",],
|
||||
extends: [
|
||||
// "plugin:vue/vue3-essential",
|
||||
"plugin:vue/recommended",
|
||||
"eslint:recommended",
|
||||
// "standard-with-typescript",
|
||||
"plugin:@typescript-eslint/eslint-recommended",
|
||||
"plugin:@typescript-eslint/recommended",
|
||||
],
|
||||
rules: {
|
||||
indent: ["warn", 4,],
|
||||
"no-trailing-spaces": ["error", {"ignoreComments": true,},],
|
||||
// 圆括号中的空格,为空不加空格,紧跟花括号、方括号、圆括号时也不加入空格
|
||||
"space-in-parens": ["error", "always", { exceptions: ["{}", "[]", "()", "empty",], },],
|
||||
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||
"no-unused-vars": "warn",
|
||||
"semi-spacing": ["error", {"before": false, "after": true,},], // 控制行尾部分号
|
||||
"quotes": ["error", "double",],
|
||||
"comma-dangle": ["error", {
|
||||
arrays: "always",
|
||||
objects: "always",
|
||||
imports: "never",
|
||||
exports: "never",
|
||||
functions: "never",
|
||||
},], // 数组和对象键值对最后一个逗号
|
||||
"comma-style": ["error", "last",], // 逗号在行位
|
||||
"no-undef-init": "error",
|
||||
"no-invalid-this": "error",
|
||||
"no-use-before-define": "error",
|
||||
"no-shadow-restricted-names": "error", // 禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
|
||||
"brace-style": ["error", "allman", { allowSingleLine: true, },],
|
||||
"prefer-const": "warn",
|
||||
"space-before-function-paren": ["error", {
|
||||
anonymous: "always",
|
||||
named: "never",
|
||||
asyncArrow: "always",
|
||||
},],
|
||||
// vue
|
||||
"vue/html-indent": ["error", 4,],
|
||||
"vue/max-attributes-per-line": ["error", {
|
||||
"singleline": {
|
||||
"max": 3,
|
||||
},
|
||||
"multiline": {
|
||||
"max": 2,
|
||||
},
|
||||
},],
|
||||
// typescript
|
||||
// "@typescript-eslint/indent": ["warn", 4,],
|
||||
"@stylistic/indent": ["warn", 4,],
|
||||
"@typescript-eslint/no-explicit-any": "warn",
|
||||
// "@typescript-eslint/no-unsafe-argument": "warn",
|
||||
"@typescript-eslint/no-extra-semi": "off",
|
||||
"@typescript-eslint/no-inferrable-types": "off",
|
||||
"@typescript-eslint/no-unused-vars": "warn",
|
||||
"@typescript-eslint/ban-ts-comment": "warn",
|
||||
"@typescript-eslint/member-delimiter-style": "off",
|
||||
"@stylistic/semi": ["error", "always",], // 控制行尾部分号
|
||||
"@stylistic/brace-style": ["error", "allman", { allowSingleLine: true, },],
|
||||
"@stylistic/comma-dangle": ["error", {
|
||||
arrays: "always",
|
||||
objects: "always",
|
||||
imports: "never",
|
||||
exports: "never",
|
||||
functions: "never",
|
||||
},], // 数组和对象键值对最后一个逗号
|
||||
"@stylistic/quotes": ["error", "double",],
|
||||
"@typescript-eslint/space-before-function-paren": "off",
|
||||
// 方括号的空格问题
|
||||
"comma-spacing": ["error", { before: false, after: true, },],
|
||||
"@typescript-eslint/comma-spacing": ["off", { before: false, after: true, },], // 使用eslint的,不用ts的
|
||||
"array-bracket-spacing": ["error", "never", {
|
||||
singleValue: false,
|
||||
objectsInArrays: false,
|
||||
arraysInArrays: false,
|
||||
},],
|
||||
},
|
||||
},
|
||||
{
|
||||
files: ["*.ts",],
|
||||
parser: "@typescript-eslint/parser",
|
||||
parserOptions: {
|
||||
project: "./tsconfig.json",
|
||||
// project: ["tsconfig.json", "tsconfig.app.json",],
|
||||
},
|
||||
plugins: ["@typescript-eslint", "@stylistic",],
|
||||
extends: [
|
||||
"eslint:recommended",
|
||||
// "standard-with-typescript",
|
||||
"plugin:@typescript-eslint/eslint-recommended",
|
||||
"plugin:@typescript-eslint/recommended",
|
||||
],
|
||||
rules: {
|
||||
"no-trailing-spaces": ["error", {"ignoreComments": true,},],
|
||||
// 圆括号中的空格,为空不加空格,紧跟花括号、方括号、圆括号时也不加入空格
|
||||
"space-in-parens": ["error", "always", { exceptions: ["{}", "[]", "()", "empty",], },],
|
||||
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
// "@typescript-eslint/no-unsafe-argument": "warn",
|
||||
// "@typescript-eslint/indent": ["error", 4,],
|
||||
"@stylistic/indent": ["warn", 4,],
|
||||
"@typescript-eslint/no-extra-semi": "off",
|
||||
"@typescript-eslint/no-inferrable-types": "off",
|
||||
"@typescript-eslint/no-unused-vars": "warn",
|
||||
"@typescript-eslint/ban-ts-comment": "warn",
|
||||
"@typescript-eslint/member-delimiter-style": "off",
|
||||
"@stylistic/semi": ["error", "always",], // 控制行尾部分号
|
||||
// "@typescript-eslint/brace-style": ["error", "allman", { allowSingleLine: true, },],
|
||||
"@stylistic/brace-style": ["error", "allman", { allowSingleLine: true, },],
|
||||
"@stylistic/comma-dangle": ["error", {
|
||||
arrays: "always",
|
||||
objects: "always",
|
||||
imports: "never",
|
||||
exports: "never",
|
||||
functions: "never",
|
||||
},], // 数组和对象键值对最后一个逗号
|
||||
"@stylistic/quotes": ["error", "double",],
|
||||
"@typescript-eslint/space-before-function-paren": "off",
|
||||
"@typescript-eslint/strict-boolean-expressions": ["error", {
|
||||
allowString: false,
|
||||
},],
|
||||
"comma-style": ["error", "last",], // 逗号在行位
|
||||
"comma-spacing": ["error", { before: false, after: true, },],
|
||||
"@typescript-eslint/comma-spacing": ["off", { before: false, after: true, },], // 使用eslint的,不用ts的
|
||||
"array-bracket-spacing": ["error", "never", {
|
||||
singleValue: false,
|
||||
objectsInArrays: false,
|
||||
arraysInArrays: false,
|
||||
},],
|
||||
"no-undef-init": "error",
|
||||
"no-invalid-this": "error",
|
||||
"no-use-before-define": "error",
|
||||
"no-shadow-restricted-names": "error", // 禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
|
||||
"prefer-const": "warn",
|
||||
"spaced-comment": "error",
|
||||
"space-before-function-paren": "off",
|
||||
"semi-spacing": ["error", {"before": false, "after": true,},],
|
||||
},
|
||||
},
|
||||
],
|
||||
};
|
||||
111
code/web/regulatory-management-util/eslint.config copy.ts
Normal file
111
code/web/regulatory-management-util/eslint.config copy.ts
Normal file
@@ -0,0 +1,111 @@
|
||||
import js from "@eslint/js";
|
||||
import globals from "globals";
|
||||
import tseslint from "typescript-eslint";
|
||||
import pluginVue from "eslint-plugin-vue";
|
||||
import { defineConfig } from "eslint/config";
|
||||
import stylistic from "@stylistic/eslint-plugin";
|
||||
|
||||
export default defineConfig([
|
||||
{
|
||||
files: ["**/*.{js,mjs,cjs,ts,mts,cts,vue}",],
|
||||
plugins: { js, },
|
||||
extends: ["js/recommended",],
|
||||
languageOptions: {
|
||||
globals: {
|
||||
...globals.browser,
|
||||
...globals.node,}, },
|
||||
},
|
||||
tseslint.configs.recommended,
|
||||
{
|
||||
files: ["src/**/*.ts", "eslint.config.ts",],
|
||||
plugins: {
|
||||
"@stylistic": stylistic,
|
||||
},
|
||||
rules: {
|
||||
"spaced-comment": "error",
|
||||
"space-before-function-paren": "off",
|
||||
"semi-spacing": ["error", {"before": false,
|
||||
"after": true,},],
|
||||
"@typescript-eslint/no-unused-vars": "warn",
|
||||
"@stylistic/indent": ["error", 4, { SwitchCase: 1, },],
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
"@typescript-eslint/no-extra-semi": "off",
|
||||
"@typescript-eslint/no-inferrable-types": "off",
|
||||
"@typescript-eslint/ban-ts-comment": "warn",
|
||||
"@typescript-eslint/member-delimiter-style": "off",
|
||||
"@stylistic/semi": ["error", "always",], // 控制行尾部分号
|
||||
"@stylistic/brace-style": ["error", "allman", { allowSingleLine: true, },],
|
||||
"@stylistic/comma-dangle": [
|
||||
"error",
|
||||
{
|
||||
arrays: "always",
|
||||
objects: "always",
|
||||
imports: "never",
|
||||
exports: "never",
|
||||
functions: "never",
|
||||
},
|
||||
], // 数组和对象键值对最后一个逗号
|
||||
"@stylistic/quotes": ["error", "double",],
|
||||
"@typescript-eslint/space-before-function-paren": "off",
|
||||
"@typescript-eslint/comma-spacing": ["off", { before: false,
|
||||
after: true, },], // 使用eslint的,不用ts的
|
||||
// "@typescript-eslint/strict-boolean-expressions": ["error", {
|
||||
// allowString: false,
|
||||
// },],
|
||||
"@stylistic/object-property-newline": "warn",
|
||||
},
|
||||
},
|
||||
pluginVue.configs["flat/essential"],
|
||||
pluginVue.configs["flat/strongly-recommended"],
|
||||
{
|
||||
files: ["**/*.vue",],
|
||||
plugins: {
|
||||
"@stylistic": stylistic,
|
||||
},
|
||||
languageOptions: {
|
||||
parserOptions: { parser: tseslint.parser, },
|
||||
},
|
||||
rules: {
|
||||
"vue/html-indent": ["error", 4,],
|
||||
// "vue/max-attributes-per-line": ["error", {
|
||||
// "singleline": {
|
||||
// "max": 1,
|
||||
// },
|
||||
// "multiline": {
|
||||
// "max": 1,
|
||||
// },
|
||||
// },],
|
||||
"spaced-comment": "error",
|
||||
"space-before-function-paren": "off",
|
||||
"semi-spacing": ["error", {"before": false,
|
||||
"after": true,},],
|
||||
"@typescript-eslint/no-unused-vars": "warn",
|
||||
"@stylistic/indent": ["error", 4, { SwitchCase: 1, },],
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
"@typescript-eslint/no-extra-semi": "off",
|
||||
"@typescript-eslint/no-inferrable-types": "off",
|
||||
"@typescript-eslint/ban-ts-comment": "warn",
|
||||
"@typescript-eslint/member-delimiter-style": "off",
|
||||
"@stylistic/semi": ["error", "always",], // 控制行尾部分号
|
||||
"@stylistic/brace-style": ["error", "allman", { allowSingleLine: true, },],
|
||||
"@stylistic/comma-dangle": [
|
||||
"error",
|
||||
{
|
||||
arrays: "always",
|
||||
objects: "always",
|
||||
imports: "never",
|
||||
exports: "never",
|
||||
functions: "never",
|
||||
},
|
||||
], // 数组和对象键值对最后一个逗号
|
||||
"@stylistic/quotes": ["error", "double",],
|
||||
"@typescript-eslint/space-before-function-paren": "off",
|
||||
"@typescript-eslint/comma-spacing": ["off", { before: false,
|
||||
after: true, },], // 使用eslint的,不用ts的
|
||||
// "@typescript-eslint/strict-boolean-expressions": ["error", {
|
||||
// allowString: false,
|
||||
// },],
|
||||
"@stylistic/object-property-newline": "warn",
|
||||
},
|
||||
},
|
||||
]);
|
||||
151
code/web/regulatory-management-util/eslint.config.js.bak
Normal file
151
code/web/regulatory-management-util/eslint.config.js.bak
Normal file
@@ -0,0 +1,151 @@
|
||||
import js from "@eslint/js";
|
||||
import globals from "globals";
|
||||
import tseslint from "typescript-eslint";
|
||||
import pluginVue from "eslint-plugin-vue";
|
||||
// import json from "@eslint/json";
|
||||
import css from "@eslint/css";
|
||||
import { defineConfig } from "eslint/config";
|
||||
import stylistic from "@stylistic/eslint-plugin";
|
||||
|
||||
export default defineConfig([
|
||||
{
|
||||
name: "通用设置",
|
||||
files: [
|
||||
"src/**/*.{js,mjs,cjs,ts,mts,cts}",
|
||||
"eslint.config.ts",
|
||||
],
|
||||
plugins: {
|
||||
js,
|
||||
"@stylistic": stylistic,
|
||||
},
|
||||
extends: ["js/recommended",],
|
||||
languageOptions: {
|
||||
globals: {
|
||||
...globals.browser,
|
||||
...globals.node, },
|
||||
},
|
||||
rules: {
|
||||
"no-trailing-spaces": ["error", {"ignoreComments": true,},],
|
||||
"space-in-parens": ["error", "always", { exceptions: ["{}", "[]", "()", "empty",], },],
|
||||
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||
"no-unused-vars": "warn",
|
||||
"semi-spacing": ["error", {"before": false,
|
||||
"after": true,},], // 控制行尾部分号
|
||||
"quotes": ["error", "double",],
|
||||
"comma-dangle": ["error", {
|
||||
arrays: "always",
|
||||
objects: "always",
|
||||
imports: "never",
|
||||
exports: "never",
|
||||
functions: "never",
|
||||
},], // 数组和对象键值对最后一个逗号
|
||||
"comma-style": ["error", "last",], // 逗号在行位
|
||||
"no-undef-init": "error",
|
||||
"no-invalid-this": "error",
|
||||
"no-use-before-define": "error",
|
||||
"no-shadow-restricted-names": "error", // 禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
|
||||
"brace-style": ["error", "allman", { allowSingleLine: true, },],
|
||||
"prefer-const": "warn",
|
||||
"space-before-function-paren": ["error", {
|
||||
anonymous: "always",
|
||||
named: "never",
|
||||
asyncArrow: "always",
|
||||
},],
|
||||
"array-bracket-spacing": ["error", "never", {
|
||||
singleValue: false,
|
||||
objectsInArrays: false,
|
||||
arraysInArrays: false,
|
||||
},],
|
||||
"comma-spacing": ["error", {
|
||||
before: false,
|
||||
after: true, },],
|
||||
"@stylistic/quotes": ["error", "double",],
|
||||
},
|
||||
},
|
||||
// vue设置
|
||||
// pluginVue.configs["flat/base"],
|
||||
pluginVue.configs["flat/essential"],
|
||||
{
|
||||
files: ["**/*.vue",],
|
||||
languageOptions: {
|
||||
parserOptions: { parser: tseslint.parser, },
|
||||
},
|
||||
// rules: {
|
||||
// "vue/html-indent": ["error", 4,],
|
||||
// "vue/max-attributes-per-line": ["error", {
|
||||
// "singleline": {
|
||||
// "max": 3,
|
||||
// },
|
||||
// "multiline": {
|
||||
// "max": 2,
|
||||
// },
|
||||
// },],
|
||||
// },
|
||||
},
|
||||
{
|
||||
files: ["**/*.css",],
|
||||
plugins: { css, },
|
||||
language: "css/css",
|
||||
extends: ["css/recommended",],
|
||||
},
|
||||
// Typescript设置
|
||||
tseslint.configs.recommended,
|
||||
{
|
||||
files: ["src/**/*.ts", "eslint.config.ts",],
|
||||
plugins: {
|
||||
"@stylistic": stylistic,
|
||||
},
|
||||
rules: {
|
||||
"spaced-comment": "error",
|
||||
"space-before-function-paren": "off",
|
||||
"semi-spacing": ["error", {"before": false,
|
||||
"after": true,},],
|
||||
"@typescript-eslint/no-unused-vars": "warn",
|
||||
"@stylistic/indent": ["error", 4, { SwitchCase: 1, },],
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
"@typescript-eslint/no-extra-semi": "off",
|
||||
"@typescript-eslint/no-inferrable-types": "off",
|
||||
"@typescript-eslint/ban-ts-comment": "warn",
|
||||
"@typescript-eslint/member-delimiter-style": "off",
|
||||
"@stylistic/semi": ["error", "always",], // 控制行尾部分号
|
||||
"@stylistic/brace-style": ["error", "allman", { allowSingleLine: true, },],
|
||||
"@stylistic/comma-dangle": [
|
||||
"error",
|
||||
{
|
||||
arrays: "always",
|
||||
objects: "always",
|
||||
imports: "never",
|
||||
exports: "never",
|
||||
functions: "never",
|
||||
},
|
||||
], // 数组和对象键值对最后一个逗号
|
||||
"@stylistic/quotes": ["error", "double",],
|
||||
"@typescript-eslint/space-before-function-paren": "off",
|
||||
"@typescript-eslint/comma-spacing": ["off", { before: false,
|
||||
after: true, },], // 使用eslint的,不用ts的
|
||||
// "@typescript-eslint/strict-boolean-expressions": ["error", {
|
||||
// allowString: false,
|
||||
// },],
|
||||
"@stylistic/object-property-newline": "warn",
|
||||
},
|
||||
},
|
||||
// {
|
||||
// files: ["**/*.json"],
|
||||
// plugins: { json },
|
||||
// language: "json/json",
|
||||
// extends: ["json/recommended"],
|
||||
// },
|
||||
// {
|
||||
// files: ["**/*.jsonc"],
|
||||
// plugins: { json },
|
||||
// language: "json/jsonc",
|
||||
// extends: ["json/recommended"],
|
||||
// },
|
||||
// {
|
||||
// files: ["**/*.json5"],
|
||||
// plugins: { json },
|
||||
// language: "json/json5",
|
||||
// extends: ["json/recommended"],
|
||||
// },
|
||||
]);
|
||||
169
code/web/regulatory-management-util/eslint.config.ts
Normal file
169
code/web/regulatory-management-util/eslint.config.ts
Normal file
@@ -0,0 +1,169 @@
|
||||
import js from "@eslint/js";
|
||||
import globals from "globals";
|
||||
import tseslint from "typescript-eslint";
|
||||
import pluginVue from "eslint-plugin-vue";
|
||||
import { defineConfig } from "eslint/config";
|
||||
import stylistic from "@stylistic/eslint-plugin";
|
||||
|
||||
export default defineConfig([
|
||||
{
|
||||
name: "通用设置",
|
||||
files: ["**/*.{js,mjs,cjs,ts,mts,cts,vue}",],
|
||||
plugins: { js, },
|
||||
extends: ["js/recommended",],
|
||||
languageOptions: {
|
||||
globals: {
|
||||
...globals.browser,
|
||||
...globals.node,
|
||||
},
|
||||
},
|
||||
rules:{
|
||||
// indent: ["warn", 4,],
|
||||
// 圆括号中的空格,为空不加空格,紧跟花括号、方括号、圆括号时也不加入空格
|
||||
"space-in-parens": ["error", "always", { exceptions: ["{}", "[]", "()", "empty",], },],
|
||||
"no-console": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||
"no-debugger": process.env.NODE_ENV === "production" ? "warn" : "off",
|
||||
"no-unused-vars": "warn",
|
||||
semi: ["error", "always",], // 控制行尾部分号
|
||||
quotes: ["error", "double",],
|
||||
"comma-dangle": ["error", {
|
||||
arrays: "always",
|
||||
objects: "always",
|
||||
imports: "never",
|
||||
exports: "never",
|
||||
functions: "never",
|
||||
},], // 数组和对象键值对最后一个逗号
|
||||
"comma-style": ["error", "last",], // 逗号在行尾
|
||||
"no-undef-init": "error",
|
||||
"no-invalid-this": "error",
|
||||
"no-use-before-define": "error",
|
||||
"no-shadow-restricted-names": "error", // 禁止对一些关键字或者保留字进行赋值操作,比如NaN、Infinity、undefined、eval、arguments等
|
||||
"comma-spacing": ["error", { before: false,
|
||||
after: true, },],
|
||||
"array-bracket-spacing": ["error", "never", {
|
||||
singleValue: false,
|
||||
objectsInArrays: false,
|
||||
arraysInArrays: false,
|
||||
},],
|
||||
"brace-style": ["error", "allman", { allowSingleLine: true, },],
|
||||
"prefer-const": "warn",
|
||||
"space-before-function-paren": ["error", {
|
||||
anonymous: "always",
|
||||
named: "never",
|
||||
asyncArrow: "always",
|
||||
},],
|
||||
"@stylistic/no-trailing-spaces": [ // 不允许末尾的空格
|
||||
"error",
|
||||
{
|
||||
"skipBlankLines": false,
|
||||
"ignoreComments": false,
|
||||
},
|
||||
],
|
||||
},
|
||||
},
|
||||
tseslint.configs.recommended,
|
||||
{
|
||||
files: ["src/**/*.ts", "eslint.config.ts",],
|
||||
plugins: {
|
||||
"@stylistic": stylistic,
|
||||
},
|
||||
languageOptions: {
|
||||
parserOptions: { parser: tseslint.parser, },
|
||||
},
|
||||
rules: {
|
||||
"spaced-comment": "error",
|
||||
"space-before-function-paren": "off",
|
||||
"semi-spacing": ["error", { before: false,
|
||||
after: true, },],
|
||||
"@typescript-eslint/no-unused-vars": "warn",
|
||||
"@stylistic/indent": ["error", 4, { SwitchCase: 1, },],
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
"@typescript-eslint/no-extra-semi": "off",
|
||||
"@typescript-eslint/no-inferrable-types": "off",
|
||||
"@typescript-eslint/ban-ts-comment": "warn",
|
||||
"@typescript-eslint/member-delimiter-style": "off",
|
||||
"@stylistic/semi": ["error", "always",], // 控制行尾部分号
|
||||
"@stylistic/brace-style": ["error", "allman", { allowSingleLine: true, },],
|
||||
"@stylistic/comma-dangle": [
|
||||
"error",
|
||||
{
|
||||
arrays: "always",
|
||||
objects: "always",
|
||||
imports: "never",
|
||||
exports: "never",
|
||||
functions: "never",
|
||||
},
|
||||
], // 数组和对象键值对最后一个逗号
|
||||
"@stylistic/quotes": ["error", "double",],
|
||||
"@typescript-eslint/space-before-function-paren": "off",
|
||||
"@typescript-eslint/comma-spacing": [
|
||||
"off",
|
||||
{ before: false,
|
||||
after: true, },
|
||||
], // 使用eslint的,不用ts的
|
||||
// "@typescript-eslint/strict-boolean-expressions": ["error", {
|
||||
// allowString: false,
|
||||
// },],
|
||||
"@stylistic/object-property-newline": "warn",
|
||||
},
|
||||
},
|
||||
pluginVue.configs["flat/essential"],
|
||||
pluginVue.configs["flat/strongly-recommended"],
|
||||
{
|
||||
files: ["**/*.vue", "**/.ts", "eslint.config.ts",],
|
||||
plugins: {
|
||||
"@stylistic": stylistic,
|
||||
},
|
||||
languageOptions: {
|
||||
parserOptions: { parser: tseslint.parser, },
|
||||
ecmaVersion: "latest",
|
||||
sourceType: "module",
|
||||
globals: globals.browser,
|
||||
},
|
||||
rules: {
|
||||
"vue/html-indent": ["error", 4,],
|
||||
// "vue/max-attributes-per-line": ["error", {
|
||||
// "singleline": {
|
||||
// "max": 1,
|
||||
// },
|
||||
// "multiline": {
|
||||
// "max": 1,
|
||||
// },
|
||||
// },],
|
||||
"spaced-comment": "error",
|
||||
"space-before-function-paren": "off",
|
||||
"semi-spacing": ["error", { before: false,
|
||||
after: true, },],
|
||||
"@typescript-eslint/no-unused-vars": "warn",
|
||||
"@stylistic/indent": ["error", 4, { SwitchCase: 1, },],
|
||||
"@typescript-eslint/no-explicit-any": "off",
|
||||
"@typescript-eslint/no-extra-semi": "off",
|
||||
"@typescript-eslint/no-inferrable-types": "off",
|
||||
"@typescript-eslint/ban-ts-comment": "warn",
|
||||
"@typescript-eslint/member-delimiter-style": "off",
|
||||
"@stylistic/semi": ["error", "always",], // 控制行尾部分号
|
||||
"@stylistic/brace-style": ["error", "allman", { allowSingleLine: true, },],
|
||||
"@stylistic/comma-dangle": [
|
||||
"error",
|
||||
{
|
||||
arrays: "always",
|
||||
objects: "always",
|
||||
imports: "never",
|
||||
exports: "never",
|
||||
functions: "never",
|
||||
},
|
||||
], // 数组和对象键值对最后一个逗号
|
||||
"@stylistic/quotes": ["error", "double",],
|
||||
"@typescript-eslint/space-before-function-paren": "off",
|
||||
"@typescript-eslint/comma-spacing": [
|
||||
"off",
|
||||
{ before: false,
|
||||
after: true, },
|
||||
], // 使用eslint的,不用ts的
|
||||
// "@typescript-eslint/strict-boolean-expressions": ["error", {
|
||||
// allowString: false,
|
||||
// },],
|
||||
"@stylistic/object-property-newline": "warn",
|
||||
},
|
||||
},
|
||||
]);
|
||||
2206
code/web/regulatory-management-util/package-lock.json
generated
2206
code/web/regulatory-management-util/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -10,31 +10,44 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"scss": "^0.2.4",
|
||||
"vue": "^3.5.24",
|
||||
"vue-router": "^4.6.3"
|
||||
"vue": "^3.5.28",
|
||||
"vue-router": "^5.0.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@element-plus/icons-vue": "^2.3.2",
|
||||
"@stylistic/eslint-plugin": "^5.5.0",
|
||||
"@types/node": "^24.10.1",
|
||||
"@typescript-eslint/eslint-plugin": "^8.46.4",
|
||||
"@typescript-eslint/parser": "^8.46.4",
|
||||
"@vitejs/plugin-vue": "^6.0.1",
|
||||
"@eslint/css": "^0.14.1",
|
||||
"@eslint/js": "^10.0.1",
|
||||
"@eslint/json": "^1.0.1",
|
||||
"@stylistic/eslint-plugin": "^5.8.0",
|
||||
"@stylistic/eslint-plugin-js": "^4.4.1",
|
||||
"@stylistic/eslint-plugin-jsx": "^4.4.1",
|
||||
"@stylistic/eslint-plugin-plus": "^4.4.1",
|
||||
"@stylistic/eslint-plugin-ts": "^4.4.1",
|
||||
"@types/node": "^25.2.3",
|
||||
"@typescript-eslint/eslint-plugin": "^8.55.0",
|
||||
"@typescript-eslint/parser": "^8.55.0",
|
||||
"@vitejs/plugin-vue": "^6.0.4",
|
||||
"@vue-office/docx": "^1.6.3",
|
||||
"@vue-office/excel": "^1.7.14",
|
||||
"@vue-office/pdf": "^2.0.10",
|
||||
"@vue/tsconfig": "^0.8.1",
|
||||
"axios": "^1.13.2",
|
||||
"element-plus": "^2.11.8",
|
||||
"eslint": "^9.39.1",
|
||||
"eslint-plugin-vue": "^10.5.1",
|
||||
"axios": "^1.13.5",
|
||||
"element-plus": "^2.13.2",
|
||||
"eslint": "^10.0.0",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"eslint-plugin-vue": "^10.7.0",
|
||||
"globals": "^17.3.0",
|
||||
"jiti": "^2.6.1",
|
||||
"lodash": "^4.17.23",
|
||||
"lodash-es": "^4.17.23",
|
||||
"path": "^0.12.7",
|
||||
"sass": "^1.94.0",
|
||||
"sass": "^1.97.3",
|
||||
"typescript": "~5.9.3",
|
||||
"vite": "^7.2.2",
|
||||
"typescript-eslint": "^8.55.0",
|
||||
"vite": "^7.3.1",
|
||||
"vue-demi": "^0.14.10",
|
||||
"vue-eslint-parser": "^10.2.0",
|
||||
"vue-pdf-embed": "^2.1.3",
|
||||
"vue-tsc": "^3.1.3"
|
||||
"vue-tsc": "^3.2.4"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -5,8 +5,8 @@
|
||||
target="_blank"
|
||||
>
|
||||
<img
|
||||
src="/vite.svg"
|
||||
class="logo"
|
||||
src="/vite.svg"
|
||||
alt="Vite logo"
|
||||
>
|
||||
</a>
|
||||
|
||||
@@ -1,9 +1,3 @@
|
||||
<!--
|
||||
author: Kane Wang <wangkane@qq.com>
|
||||
date: 2025-10-14 15:57:34
|
||||
component: AppMain
|
||||
Copyright © CPIC All rights reserved
|
||||
-->
|
||||
<template>
|
||||
<router-view />
|
||||
</template>
|
||||
|
||||
@@ -1,12 +1,3 @@
|
||||
<!--
|
||||
* @Author: Kane
|
||||
* @Date: 2023-03-23 15:07:31
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/layout/Index.vue
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
-->
|
||||
<template>
|
||||
<el-container class="layout-container">
|
||||
<el-header class="layout-header">
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<!--
|
||||
author: Kane Wang <wangkane@qq.com>
|
||||
date: 2025-10-23 15:32:30
|
||||
date: 2025-10-23 17:52:01
|
||||
component: Header
|
||||
Copyright © CPIC All rights reserved
|
||||
-->
|
||||
|
||||
@@ -15,7 +15,6 @@ import * as ElementPlusIconsVue from "@element-plus/icons-vue";
|
||||
|
||||
import "element-plus/dist/index.css";
|
||||
|
||||
// eslint-disable-next-line
|
||||
const app = createApp( AppMain );
|
||||
|
||||
app.use( ElementPlus );
|
||||
@@ -29,5 +28,4 @@ for ( const [key, component,] of Object.entries( ElementPlusIconsVue ))
|
||||
|
||||
app.mount( "#app" );
|
||||
|
||||
// eslint-disable-next-line
|
||||
// createApp( App ).mount( "#app" );
|
||||
|
||||
@@ -14,13 +14,15 @@ interface RegulatoryData {
|
||||
release_year: string;
|
||||
regulatory_name: string;
|
||||
comment: string;
|
||||
regulatory_files: null | RegulatoryFile[]
|
||||
regulatory_files: RegulatoryFile[];
|
||||
}
|
||||
|
||||
interface RegulatoryFile {
|
||||
regulatory_file_name_original: string;
|
||||
regulatory_file_name: string;
|
||||
file_url: string;
|
||||
file_type: string
|
||||
local_file_path: string;
|
||||
file_type: string;
|
||||
}
|
||||
|
||||
export { type RegulatoryData, type RegulatoryFile };
|
||||
30
code/web/regulatory-management-util/src/types/upload_file.ts
Normal file
30
code/web/regulatory-management-util/src/types/upload_file.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
/**
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2025-11-21 10:19:11
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2026-02-06 17:43:15
|
||||
* @FilePath: src/types/upload_file.ts
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
|
||||
interface UploadFileResponse
|
||||
{
|
||||
success: boolean;
|
||||
message: string;
|
||||
fileList: UploadedFile[];
|
||||
}
|
||||
|
||||
interface UploadedFile
|
||||
{
|
||||
originFileName: string;
|
||||
fileName: string;
|
||||
absoluteFilePath: string;
|
||||
relativeFilePath: string;
|
||||
}
|
||||
|
||||
export {
|
||||
type UploadedFile,
|
||||
type UploadFileResponse
|
||||
};
|
||||
59
code/web/regulatory-management-util/src/utils/api/request.ts
Normal file
59
code/web/regulatory-management-util/src/utils/api/request.ts
Normal file
@@ -0,0 +1,59 @@
|
||||
/**
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2025-12-18 10:02:42
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2025-12-25 18:01:56
|
||||
* @FilePath: src/utils/api/request.ts
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
import axios, {type AxiosInstance } from "axios";
|
||||
|
||||
const service: AxiosInstance = axios.create(
|
||||
{
|
||||
baseURL: "",
|
||||
timeout: 30000,
|
||||
}
|
||||
);
|
||||
// #region 1111
|
||||
// #endregion
|
||||
|
||||
// 请求拦截
|
||||
service.interceptors.request.use(
|
||||
/**
|
||||
* 请求拦截器,config对象用于给开发人员配置请求
|
||||
* @param config 配置对象,在配置中加入需要的token
|
||||
* @returns 返回配置好的config
|
||||
*/
|
||||
( config ) =>
|
||||
{
|
||||
config.headers.token = "123";
|
||||
|
||||
return config;
|
||||
},
|
||||
async ( error: any ) =>
|
||||
{
|
||||
console.log( `配置请求拦截器错误:${error}` );
|
||||
|
||||
return await Promise.reject( error );
|
||||
}
|
||||
);
|
||||
|
||||
/**
|
||||
* 响应拦截器
|
||||
*/
|
||||
service.interceptors.response.use(
|
||||
( response ) =>
|
||||
{
|
||||
return response;
|
||||
},
|
||||
async ( error ) =>
|
||||
{
|
||||
console.log( `配置响应拦截器失败:${error}` );
|
||||
|
||||
return await Promise.reject( error );
|
||||
}
|
||||
);
|
||||
|
||||
export { service };
|
||||
20
code/web/regulatory-management-util/src/utils/config.ts
Normal file
20
code/web/regulatory-management-util/src/utils/config.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
/**
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2025-11-21 09:39:59
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2025-11-21 09:40:00
|
||||
* @FilePath: src/utils/config.ts
|
||||
* @Description: 保存应用的配置参数。
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
const API_URL= {
|
||||
URL_UPLOAD_FILE: import.meta.env.VITE_APP_URL_UPLOAD_FILE,
|
||||
URL_MOVE_FILE: import.meta.env.VITE_APP_URL_MOVE_FILE,
|
||||
URL_PREFIX: import.meta.env.VITE_APP_URL_PREFIX,
|
||||
URL_ADD_NEW_REGULATORY: import.meta.env.VITE_APP_URL_ADD_NEW_REGULATORY,
|
||||
};
|
||||
|
||||
console.log( API_URL );
|
||||
|
||||
export { API_URL };
|
||||
@@ -0,0 +1,74 @@
|
||||
/**
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2026-01-05 10:42:42
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2026-02-04 15:37:20
|
||||
* @FilePath: src/utils/regulatory_utils.ts
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
import { service } from "@/utils/api/request.ts";
|
||||
import { API_URL } from "@/utils/config.ts";
|
||||
import { type RegulatoryData, type RegulatoryFile } from "@/types/regulatory/regulatory.ts";
|
||||
|
||||
interface AddNewRegulatoryResponse
|
||||
{
|
||||
success: boolean;
|
||||
message: string;
|
||||
}
|
||||
|
||||
interface Render {
|
||||
( resonse: AddNewRegulatoryResponse ) :void, }
|
||||
|
||||
type CallBackRender = ( response: AddNewRegulatoryResponse ) => void;
|
||||
/**
|
||||
*
|
||||
* @param regulatory RegulatoryData类型制度对象,用于发送请求。
|
||||
* @param render 回调函数,请求成功后调用。
|
||||
*/
|
||||
function addNewRegulatory( regulatory: RegulatoryData, render: Render ): void
|
||||
{
|
||||
// const url = API_URL.URL_ADD_NEW_REGULATORY;
|
||||
|
||||
// 响应对象
|
||||
const resp: AddNewRegulatoryResponse = {
|
||||
success: false,
|
||||
message: "",
|
||||
};
|
||||
|
||||
service.request({
|
||||
method:"post",
|
||||
url: API_URL.URL_ADD_NEW_REGULATORY,
|
||||
data: regulatory,
|
||||
})
|
||||
.then(( response ):void=>
|
||||
{
|
||||
const data = response.data ?? {};
|
||||
|
||||
resp.success = data.success ?? false;
|
||||
resp.message = data.message ?? "服务器没有返回调用结果消息,请检查日志!";
|
||||
|
||||
if ( render !== undefined )
|
||||
{
|
||||
render( resp );
|
||||
}
|
||||
})
|
||||
.catch(( error ): void=>
|
||||
{
|
||||
resp.success = false;
|
||||
resp.message = String( error );
|
||||
|
||||
if ( render !== undefined )
|
||||
{
|
||||
render( resp );
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
export {
|
||||
addNewRegulatory,
|
||||
type AddNewRegulatoryResponse,
|
||||
type Render,
|
||||
type CallBackRender
|
||||
};
|
||||
@@ -2,9 +2,86 @@
|
||||
* @Author: Kane Wang <wangkane@qq.com>
|
||||
* @Date: 2025-10-23 16:52:10
|
||||
* @LastEditors: Kane Wang
|
||||
* @LastModified: 2025-10-23 17:04:54
|
||||
* @LastModified: 2025-11-21 11:17:40
|
||||
* @FilePath: src/utils/utils.ts
|
||||
* @Description:
|
||||
* @Description: 提供 一些功能性的函数
|
||||
*
|
||||
* Copyright (c) 2025 by Kane All rights reserved
|
||||
*/
|
||||
|
||||
/**
|
||||
* 取文件路径末尾的扩展名作为文件类型
|
||||
* @param filePath 文件路径
|
||||
* @returns 文件类型字符串
|
||||
*/
|
||||
function getFileType( filePath: string ): string
|
||||
{
|
||||
let type = "未知类型";
|
||||
|
||||
if ( filePath == null || filePath.length == 0 )
|
||||
{
|
||||
return type;
|
||||
}
|
||||
|
||||
const startIndex = filePath.lastIndexOf( "." );
|
||||
const fileType = filePath.slice( startIndex + 1 ).toUpperCase();
|
||||
|
||||
// ignore-eslint-next-line
|
||||
switch( fileType )
|
||||
{
|
||||
case "DOCX":
|
||||
type = "WPS文档";
|
||||
break;
|
||||
case "XLSX":
|
||||
type = "WPS表格";
|
||||
break;
|
||||
case "PDF":
|
||||
type = "PDF文档";
|
||||
break;
|
||||
case "JPG":
|
||||
case "PNG":
|
||||
case "BMP":
|
||||
case "GIF":
|
||||
type = "图片文件";
|
||||
break;
|
||||
default:
|
||||
type = "未知文件类型";
|
||||
}
|
||||
|
||||
// type = fileType.length != 0 ? fileType + "文件" : "未知类型";
|
||||
|
||||
return type;
|
||||
}
|
||||
|
||||
/**
|
||||
* 检查文件名中是否有无法使用的字符。
|
||||
* @param filename 文件名字符串。
|
||||
* @returns 检查结果。true 无问题;false表示文件名含有不合适的字符。
|
||||
*/
|
||||
function checkFileName( filename: string ): boolean
|
||||
{
|
||||
let result = true;
|
||||
|
||||
for ( const c of filename )
|
||||
{
|
||||
switch ( c )
|
||||
{
|
||||
case "%":
|
||||
case " ":
|
||||
case "+":
|
||||
case "/":
|
||||
case "?":
|
||||
case "&":
|
||||
case "#":
|
||||
case "=":
|
||||
result = false;
|
||||
break;
|
||||
default:
|
||||
result = true;
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
export { getFileType, checkFileName };
|
||||
@@ -12,7 +12,11 @@ Copyright © CPIC All rights reserved
|
||||
<span>名称</span>
|
||||
</el-col>
|
||||
<el-col :span="10">
|
||||
<el-input style="text-align:center;" />
|
||||
<el-input
|
||||
ref="regulatoryName"
|
||||
v-model.trim.lazy="ui.newRegulatory.regulatory_name"
|
||||
style="text-align:center;"
|
||||
/>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row :gutter="10">
|
||||
@@ -20,13 +24,16 @@ Copyright © CPIC All rights reserved
|
||||
<span>部门</span>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-input />
|
||||
<el-input
|
||||
ref="departmentName"
|
||||
v-model.trim="ui.newRegulatory.department_name"
|
||||
/>
|
||||
</el-col>
|
||||
<el-col :span="2">
|
||||
<span>发布、修订年份</span>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<el-input />
|
||||
<el-input v-model.lazy.number.trim="ui.newRegulatory.release_year" />
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row :gutter="10">
|
||||
@@ -34,16 +41,21 @@ Copyright © CPIC All rights reserved
|
||||
<span>备注</span>
|
||||
</el-col>
|
||||
<el-col :span="10">
|
||||
<el-input type="textarea" :rows="3" />
|
||||
<el-input
|
||||
v-model.lazy.trim="ui.newRegulatory.comment"
|
||||
type="textarea"
|
||||
:rows="3"
|
||||
/>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row :gutter="10">
|
||||
<el-col :span="3">
|
||||
<div class="button-wrapper-left">
|
||||
<el-button type="primary" icon="document" @click="showUploadFileDialog">
|
||||
新增文档
|
||||
</el-button>
|
||||
<el-button type="primary" icon="document">
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="document"
|
||||
@click="showUploadFileDialog"
|
||||
>
|
||||
新增文档
|
||||
</el-button>
|
||||
</div>
|
||||
@@ -51,7 +63,11 @@ Copyright © CPIC All rights reserved
|
||||
<el-col :span="5" />
|
||||
<el-col :span="3">
|
||||
<div class="button-wrapper-right">
|
||||
<el-button type="primary" icon="document">
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="document"
|
||||
@click="onCreateNewRegulatory()"
|
||||
>
|
||||
提交
|
||||
</el-button>
|
||||
</div>
|
||||
@@ -59,32 +75,59 @@ Copyright © CPIC All rights reserved
|
||||
</el-row>
|
||||
</div>
|
||||
<el-table
|
||||
width="100%" stripe
|
||||
border
|
||||
width="100%"
|
||||
stripe
|
||||
border="true"
|
||||
:head-cell-style="headerCellStyle"
|
||||
:row-class-name="tableRowClassName"
|
||||
empty-text="请上传文件"
|
||||
:data="ui.newRegulatory.regulatory_files"
|
||||
>
|
||||
<el-table-column
|
||||
label="文件名"
|
||||
align="center"
|
||||
>
|
||||
<el-table-column label="文件名" align="center" width="200px">
|
||||
<template #default="file">
|
||||
<span>{{ file.row.filename }}</span>
|
||||
<span>{{ file.row.regulatory_file_name }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="文件类型" align="center">
|
||||
<el-table-column
|
||||
label="文件类型"
|
||||
align="center"
|
||||
width="200px"
|
||||
>
|
||||
<template #default="file">
|
||||
<span>{{ file.row.filename }}</span>
|
||||
<span>{{ file.row.file_type }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="操作" align="center" width="200px">
|
||||
<el-button type="primary" icon="search">
|
||||
查看
|
||||
</el-button>
|
||||
<el-table-column
|
||||
label="操作"
|
||||
align="center"
|
||||
width="200px"
|
||||
>
|
||||
<template #default="file">
|
||||
<el-button
|
||||
type="primary"
|
||||
icon="search"
|
||||
circle
|
||||
@click="onPreviewUploadedFile(file.row.rowIndex)"
|
||||
/>
|
||||
<el-button
|
||||
type="danger"
|
||||
icon="delete"
|
||||
circle
|
||||
@click="onDeleteUploadedFile(file.row.rowIndex)"
|
||||
/>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
<div class="upload-dialog-wrapper">
|
||||
<el-dialog
|
||||
v-model="ui.showUploadDialog" title="上传文件"
|
||||
v-model="ui.showUploadDialog"
|
||||
title="上传文件"
|
||||
width="600px"
|
||||
:close-on-click-model="false" :close-on-press-escape="false"
|
||||
:close-on-click-model="false"
|
||||
:close-on-press-escape="false"
|
||||
:show-close="true"
|
||||
>
|
||||
<el-upload
|
||||
@@ -94,6 +137,7 @@ Copyright © CPIC All rights reserved
|
||||
:show-file-list="false"
|
||||
:data="ui.uploadParameters"
|
||||
:on-success="onUploadSuccess"
|
||||
:before-upload="onBeforeUpload"
|
||||
>
|
||||
<el-icon class="el-icon--upload">
|
||||
<upload-filled />
|
||||
@@ -103,27 +147,126 @@ Copyright © CPIC All rights reserved
|
||||
</div>
|
||||
</el-upload>
|
||||
</el-dialog>
|
||||
<el-dialog
|
||||
v-model="ui.isPDF"
|
||||
:close-on-click-model="false"
|
||||
:close-on-press-escape="false"
|
||||
:show-close="true"
|
||||
align-center
|
||||
title="文件预览"
|
||||
width="1024px"
|
||||
>
|
||||
<VueOfficePdf
|
||||
v-if="ui.isPDF"
|
||||
:src="ui.fileURL"
|
||||
style="height:calc(100vh - 100px);"
|
||||
@error="errorHandle"
|
||||
/>
|
||||
</el-dialog>
|
||||
<el-dialog
|
||||
v-model="ui.isDOCX"
|
||||
:close-on-click-model="false"
|
||||
:close-on-press-escape="false"
|
||||
:show-close="true"
|
||||
align-center
|
||||
title="文件预览"
|
||||
width="1024px"
|
||||
>
|
||||
<VueOfficeDocx
|
||||
v-if="ui.isDOCX"
|
||||
:src="ui.fileURL"
|
||||
style="height:calc(100vh - 100px);"
|
||||
@error="errorHandle"
|
||||
/>
|
||||
</el-dialog>
|
||||
<el-dialog
|
||||
v-model="ui.isXLSX"
|
||||
:close-on-click-model="false"
|
||||
:close-on-press-escape="false"
|
||||
:show-close="true"
|
||||
align-center
|
||||
title="文件预览"
|
||||
width="1024px"
|
||||
>
|
||||
<VueOfficeExcel
|
||||
:src="ui.fileURL"
|
||||
style="height:calc(100vh - 100px);"
|
||||
@error="errorHandle"
|
||||
/>
|
||||
</el-dialog>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import {reactive, ref} from "vue";
|
||||
import { type UploadProps, type UploadFile, type UploadFiles, ElMessage, ElMessageBox } from "element-plus";
|
||||
import { type RegulatoryData, type RegulatoryFile} from "@/types/regulatory/regulatory.ts";
|
||||
import { addNewRegulatory, type AddNewRegulatoryResponse, type Render} from "@/utils/regulatory_utils.ts";
|
||||
import { type UploadedFile, type UploadFileResponse } from "@/types/upload_file.ts";
|
||||
import {API_URL} from "@/utils/config.ts";
|
||||
import { getFileType } from "@/utils/utils";
|
||||
import VueOfficePdf from "@vue-office/pdf";
|
||||
import VueOfficeDocx from "@vue-office/docx";
|
||||
import VueOfficeExcel from "@vue-office/excel";
|
||||
|
||||
// 引入相关样式
|
||||
import "@vue-office/docx/lib/index.css";
|
||||
import "@vue-office/excel/lib/index.css";
|
||||
|
||||
interface UI{
|
||||
showUI: boolean;
|
||||
showUploadDialog: boolean;
|
||||
showPreviewDialog: boolean;
|
||||
urlFileUpload: string;
|
||||
uploadParameters: {
|
||||
fileName: string;
|
||||
};
|
||||
newRegulatory: RegulatoryData;
|
||||
showFileList: boolean;
|
||||
isPDF: boolean;
|
||||
isDOCX: boolean;
|
||||
isXLSX: boolean;
|
||||
fileURL: string;
|
||||
};
|
||||
|
||||
export default {
|
||||
name: "NewRegulatory",
|
||||
components: {},
|
||||
components: {VueOfficePdf,
|
||||
VueOfficeDocx,
|
||||
VueOfficeExcel,},
|
||||
setup()
|
||||
{
|
||||
const ui = reactive({
|
||||
const ui: UI = reactive({
|
||||
showUI: true,
|
||||
showUploadDialog: false,
|
||||
urlFileUpload: "",
|
||||
showPreviewDialog: false,
|
||||
urlFileUpload: API_URL.URL_UPLOAD_FILE,
|
||||
uploadParameters: {
|
||||
"file-name": "1234",
|
||||
fileName: "1234",
|
||||
},
|
||||
newRegulatory: {
|
||||
department_name: "",
|
||||
release_year: "",
|
||||
regulatory_name: "",
|
||||
comment: "",
|
||||
regulatory_files: [],
|
||||
},
|
||||
showFileList: false,
|
||||
isPDF: false,
|
||||
isDOCX: false,
|
||||
isXLSX: false,
|
||||
fileURL: "",
|
||||
});
|
||||
|
||||
const regulatoryName = ref<any>( null );
|
||||
|
||||
|
||||
const render: Render = function ( response: AddNewRegulatoryResponse ) :void
|
||||
{
|
||||
// if ( response.success === true )
|
||||
// { }
|
||||
};
|
||||
|
||||
const headerCellStyle = reactive(
|
||||
{
|
||||
textAlign: "center",
|
||||
@@ -133,19 +276,182 @@ export default {
|
||||
textAlign: "center",
|
||||
});
|
||||
|
||||
const onUploadSuccess = ()=> {};
|
||||
|
||||
const showUploadFileDialog = (): void =>
|
||||
{
|
||||
ui.showUploadDialog = true;
|
||||
};
|
||||
|
||||
/* 表格操作相关 */
|
||||
/**
|
||||
* 删除对应的上传文件记录。
|
||||
* @param rowId 行号
|
||||
*/
|
||||
const onDeleteUploadedFile = ( rowId: number ): void =>
|
||||
{
|
||||
console.log( `点击的rowid:${rowId}。` );
|
||||
ElMessage.info( `选取的行号:${rowId}。` );
|
||||
|
||||
ElMessageBox.confirm(
|
||||
"确认删除文件?",
|
||||
"删除文件",
|
||||
{
|
||||
confirmButtonText: "确定",
|
||||
type: "warning",
|
||||
center: true,
|
||||
}
|
||||
)
|
||||
.then(()=>
|
||||
{
|
||||
ui.newRegulatory.regulatory_files?.splice( rowId, 1 );
|
||||
})
|
||||
.catch(()=>{});
|
||||
};
|
||||
|
||||
const onPreviewUploadedFile = ( rowId: number ): void =>
|
||||
{
|
||||
// ui.showPreviewDialog = true;
|
||||
ui.fileURL = encodeURI( ui.newRegulatory.regulatory_files[rowId]?.file_url + "/" + ui.newRegulatory.regulatory_files[rowId]?.regulatory_file_name );
|
||||
|
||||
console.log( "完整路径:", ui.fileURL );
|
||||
|
||||
ui.isDOCX = false;
|
||||
ui.isPDF = false;
|
||||
ui.isXLSX = false;
|
||||
|
||||
switch ( ui.newRegulatory.regulatory_files[rowId].file_type )
|
||||
{
|
||||
case "WPS文档":
|
||||
ui.isDOCX = true;
|
||||
break;
|
||||
case "WPS表格":
|
||||
ui.isXLSX = true;
|
||||
break;
|
||||
case "PDF文档":
|
||||
ui.isPDF = true;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* 用来给 el-table 行设置样式。
|
||||
* 其中给row加一个参数rowIndex,用行号赋值。
|
||||
* @param element-plus给于的参数
|
||||
*/
|
||||
const tableRowClassName = ({row, rowIndex,}: {row:any,
|
||||
rowIndex:number}): void =>
|
||||
{
|
||||
console.log( `行${row}设置行号${rowIndex}。` );
|
||||
|
||||
row.rowIndex = rowIndex;
|
||||
};
|
||||
|
||||
/**
|
||||
* 上传成功的响应函数。
|
||||
* @param response
|
||||
* @param uploadFile
|
||||
* @param uploadFiles
|
||||
*/
|
||||
const onUploadSuccess: UploadProps["onSuccess"] = ( response: UploadFileResponse, uploadFile: UploadFile, uploadFiles: UploadFiles ): void =>
|
||||
{
|
||||
console.log( "上传制度文件响应:", response.fileList );
|
||||
console.log( `上传文件:${uploadFile}` );
|
||||
console.log( `上传多文件:${uploadFiles}` );
|
||||
|
||||
ui.showUploadDialog = false;
|
||||
|
||||
// 先判断成功标志位
|
||||
if ( response.success )
|
||||
{
|
||||
// 成功,把文件写入清单
|
||||
if ( response.fileList === null || response.fileList.length === 0 )
|
||||
{
|
||||
// 上传文件路径有问题,提示一下
|
||||
ElMessageBox.confirm(
|
||||
"上传文件的保存路径有误,请联系开发人员。",
|
||||
"上传文件错误",
|
||||
{
|
||||
confirmButtonText: "确定",
|
||||
type: "warning",
|
||||
center: true,
|
||||
}
|
||||
)
|
||||
.then((): void => {})
|
||||
.catch((): void => {});
|
||||
}
|
||||
|
||||
const uploadedFile: RegulatoryFile = {
|
||||
regulatory_file_name_original: response.fileList[0].originFileName ?? "",
|
||||
regulatory_file_name: response.fileList[0].fileName ?? "",
|
||||
local_file_path: response.fileList[0]?.absoluteFilePath ?? "",
|
||||
file_type: getFileType( response.fileList[0]?.fileName ),
|
||||
file_url: API_URL.URL_PREFIX + "/" + response.fileList[0]?.relativeFilePath,
|
||||
};
|
||||
|
||||
ui.newRegulatory.regulatory_files?.push( uploadedFile );
|
||||
console.log( "文件列表", ui.newRegulatory.regulatory_files );
|
||||
}
|
||||
else
|
||||
{
|
||||
// 失败了,提示一下
|
||||
ElMessageBox.confirm(
|
||||
response.message,
|
||||
"上传文件错误",
|
||||
{
|
||||
confirmButtonText: "确定",
|
||||
type: "warning",
|
||||
center: true,
|
||||
}
|
||||
)
|
||||
.then((): void => {})
|
||||
.catch((): void => {});
|
||||
}
|
||||
};
|
||||
|
||||
const onBeforeUpload = ( uploadFile: UploadFile ): boolean =>
|
||||
{
|
||||
let result = true;
|
||||
|
||||
console.log( "上传的文件名", uploadFile.name );
|
||||
|
||||
return result;
|
||||
};
|
||||
|
||||
const errorHandle = ()=>
|
||||
{
|
||||
ElMessage.error( "渲染文档出错!" );
|
||||
};
|
||||
|
||||
/**
|
||||
* 创建新制度事件
|
||||
*/
|
||||
const onCreateNewRegulatory = () =>
|
||||
{
|
||||
console.log( "制度对象:", ui.newRegulatory );
|
||||
|
||||
// 防御验证
|
||||
if ( ui.newRegulatory.department_name.length === 0 )
|
||||
{
|
||||
ElMessage.error( "制度名称为空!" );
|
||||
console.log( regulatoryName );
|
||||
regulatoryName.value.focus();
|
||||
}
|
||||
};
|
||||
|
||||
return {
|
||||
ui,
|
||||
regulatoryName,
|
||||
headerCellStyle,
|
||||
cellStyle,
|
||||
onUploadSuccess,
|
||||
tableRowClassName,
|
||||
showUploadFileDialog,
|
||||
onDeleteUploadedFile,
|
||||
onPreviewUploadedFile,
|
||||
onCreateNewRegulatory,
|
||||
onBeforeUpload,
|
||||
errorHandle,
|
||||
};
|
||||
},
|
||||
};
|
||||
@@ -171,4 +477,9 @@ export default {
|
||||
:deep(.el-input) .el-input__inner {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
:deep(.el-dialog) {
|
||||
min-width: calc(100wh - 100px);
|
||||
max-width: calc(100wh - 100px);
|
||||
}
|
||||
</style>
|
||||
@@ -41,11 +41,11 @@ export default {
|
||||
const ui = reactive({
|
||||
showUI: true,
|
||||
isPDF: false,
|
||||
isDocx: true,
|
||||
isXlsx: false,
|
||||
isDocx: false,
|
||||
isXlsx: true,
|
||||
fileURLPDF: "http://10.39.0.1:8080/regulatory/%E4%BF%A1%E6%81%AF%E6%8A%80%E6%9C%AF%E9%83%A8/%E5%85%B3%E4%BA%8E%E5%8D%B0%E5%8F%91%E3%80%8A%E5%A4%AA%E5%B9%B3%E6%B4%8B%E4%BA%A7%E9%99%A9%E5%8E%A6%E9%97%A8%E5%88%86%E5%85%AC%E5%8F%B8IT%E8%B5%84%E4%BA%A7%E7%AE%A1%E7%90%86%E5%8A%9E%E6%B3%95%E3%80%8B%EF%BC%882019%E5%B9%B4%E4%BF%AE%E8%AE%A2%EF%BC%89%E7%9A%84%E9%80%9A%E7%9F%A5/%E5%8E%A6%E5%A4%AA%E4%BF%9D%E4%BA%A7%E5%8F%91%E3%80%902019%E3%80%9146%E5%8F%B7%E5%85%B3%E4%BA%8E%E5%8D%B0%E5%8F%91%E3%80%8A%E5%A4%AA%E5%B9%B3%E6%B4%8B%E4%BA%A7%E9%99%A9%E5%8E%A6%E9%97%A8%E5%88%86%E5%85%AC%E5%8F%B8IT%E8%B5%84%E4%BA%A7%E7%AE%A1%E7%90%86%E5%8A%9E%E6%B3%95%E3%80%8B%EF%BC%882019%E5%B9%B4%E4%BF%AE%E8%AE%A2%EF%BC%89%E7%9A%84%E9%80%9A%E7%9F%A5.pdf",
|
||||
fileURLDocx: "http://10.39.0.1:8080/regulatory/%E4%BF%A1%E6%81%AF%E6%8A%80%E6%9C%AF%E9%83%A8/%E5%85%B3%E4%BA%8E%E5%8D%B0%E5%8F%91%E3%80%8A%E5%A4%AA%E5%B9%B3%E6%B4%8B%E4%BA%A7%E9%99%A9%E5%8E%A6%E9%97%A8%E5%88%86%E5%85%AC%E5%8F%B8%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E9%9C%80%E6%B1%82%E7%AE%A1%E7%90%86%E5%8A%9E%E6%B3%95%EF%BC%882020%E5%B9%B4%E4%BF%AE%E8%AE%A2%EF%BC%89%E3%80%8B%E7%9A%84%E9%80%9A%E7%9F%A5/%E9%99%84%E4%BB%B62%EF%BC%9A%E4%B8%9A%E5%8A%A1%E9%9C%80%E6%B1%82%E8%AF%B4%E6%98%8E%E4%B9%A6.docx",
|
||||
fileURLXlsx: "http://10.39.0.1:8080/regulatory/%E4%BF%A1%E6%81%AF%E6%8A%80%E6%9C%AF%E9%83%A8/%E5%85%B3%E4%BA%8E%E5%8D%B0%E5%8F%91%E3%80%8A%E5%A4%AA%E5%B9%B3%E6%B4%8B%E4%BA%A7%E9%99%A9%E5%8E%A6%E9%97%A8%E5%88%86%E5%85%AC%E5%8F%B8%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E9%9C%80%E6%B1%82%E7%AE%A1%E7%90%86%E5%8A%9E%E6%B3%95%EF%BC%882020%E5%B9%B4%E4%BF%AE%E8%AE%A2%EF%BC%89%E3%80%8B%E7%9A%84%E9%80%9A%E7%9F%A5/%E9%99%84%E4%BB%B64%EF%BC%9A%E5%88%86%E5%85%AC%E5%8F%B8%E8%87%AA%E5%BB%BA%E7%B3%BB%E7%BB%9F%E9%83%A8%E7%BD%B2%E6%83%85%E5%86%B5%E7%99%BB%E8%AE%B0%E8%A1%A8.xlsx",
|
||||
fileURLXlsx: "http://10.39.0.1:8081/regulatory/%E4%BF%A1%E6%81%AF%E6%8A%80%E6%9C%AF%E9%83%A8/%E5%85%B3%E4%BA%8E%E5%8D%B0%E5%8F%91%E3%80%8A%E5%A4%AA%E5%B9%B3%E6%B4%8B%E4%BA%A7%E9%99%A9%E5%8E%A6%E9%97%A8%E5%88%86%E5%85%AC%E5%8F%B8%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E9%9C%80%E6%B1%82%E7%AE%A1%E7%90%86%E5%8A%9E%E6%B3%95%EF%BC%882020%E5%B9%B4%E4%BF%AE%E8%AE%A2%EF%BC%89%E3%80%8B%E7%9A%84%E9%80%9A%E7%9F%A5/%E9%99%84%E4%BB%B64%EF%BC%9A%E5%88%86%E5%85%AC%E5%8F%B8%E8%87%AA%E5%BB%BA%E7%B3%BB%E7%BB%9F%E9%83%A8%E7%BD%B2%E6%83%85%E5%86%B5%E7%99%BB%E8%AE%B0%E8%A1%A8.xlsx",
|
||||
|
||||
});
|
||||
|
||||
|
||||
233
开发日志.md
233
开发日志.md
@@ -66,3 +66,236 @@ tomcat 默认是不支持跨域的,不做配置使用vue下载文件会有Acce
|
||||
### pdf预览组件
|
||||
|
||||
使用
|
||||
|
||||
## 技术
|
||||
|
||||
### element-plus 文件上传
|
||||
|
||||
element-plus 文件上传组件的响应函数,作为:on-success属性值。要传递的参数作为:data属性值。
|
||||
|
||||
```typescript
|
||||
import { type FileUploadResponse } from "@/utils/fileUpload.js";
|
||||
import { type UploadProps, type UploadFile, type UploadFiles, ElMessage, ElMessageBox } from "element-plus";
|
||||
|
||||
const onUploadSuccess: UploadProps["onSuccess"] = ( response: FileUploadResponse, uploadFile: UploadFile, uploadFiles: UploadFiles ): void =>
|
||||
{
|
||||
// 先判断成功标志位
|
||||
if ( response.success )
|
||||
{
|
||||
// 成功,发出导入报表请求
|
||||
if ( response.fileList.length === 0 )
|
||||
{
|
||||
// 上传文件路径有问题,提示一下
|
||||
ElMessageBox.confirm(
|
||||
"上传文件的保存路径有误,请联系开发人员。",
|
||||
"上传文件错误",
|
||||
{
|
||||
confirmButtonText: "确定",
|
||||
type: "warning",
|
||||
center: true,
|
||||
}
|
||||
)
|
||||
.then((): void => {})
|
||||
.catch((): void => {});
|
||||
}
|
||||
|
||||
const request: ImportBIReportRequest = {
|
||||
filePath: response.fileList[0],
|
||||
reportType: ui.selectedReportType,
|
||||
firstRow: ui.firstRow,
|
||||
sheetIndex: ui.sheetIndex,
|
||||
};
|
||||
|
||||
console.log( "请求参数", request );
|
||||
|
||||
// 发出请求
|
||||
importBIReport( request, importResponseHandler );
|
||||
}
|
||||
else
|
||||
{
|
||||
// 失败了,提示一下
|
||||
ElMessageBox.confirm(
|
||||
response.message,
|
||||
"上传文件错误",
|
||||
{
|
||||
confirmButtonText: "确定",
|
||||
type: "warning",
|
||||
center: true,
|
||||
}
|
||||
)
|
||||
.then((): void => {})
|
||||
.catch((): void => {});
|
||||
}
|
||||
};
|
||||
```
|
||||
|
||||
### typescript 的安全链式调用 和 强制链式调用
|
||||
|
||||
在链式调用时,在成员访问操作符前加上?,表示安全链式调用;加上!表示强制链式调用。
|
||||
|
||||
如果?前的属性存在,则正常调用,否则返回null。
|
||||
|
||||
```typescript
|
||||
// 这里 Error对象定义的stack是可选参数,如果这样写的话编译器会提示
|
||||
// 出错 TS2532: Object is possibly 'undefined'.
|
||||
return new Error().stack.split('\n');
|
||||
|
||||
// 我们可以添加?操作符,当stack属性存在时,调用 stack.split。
|
||||
// 若stack不存在,则返回空
|
||||
return new Error().stack?.split('\n');
|
||||
|
||||
// 以上代码等同以下代码, 感谢 @dingyanhe 的监督
|
||||
const err = new Error();
|
||||
return err.stack && err.stack.split('\n');
|
||||
```
|
||||
|
||||
强制链式调用表示!前的属性一定会存在。
|
||||
|
||||
```typescript
|
||||
// 这里 Error对象定义的stack是可选参数,如果这样写的话编译器会提示
|
||||
// 出错 TS2532: Object is possibly 'undefined'.
|
||||
new Error().stack.split('\n');
|
||||
|
||||
// 我们确信这个字段100%出现,那么就可以添加!,强调这个字段一定存在
|
||||
new Error().stack!.split('\n');
|
||||
```
|
||||
|
||||
# mysql
|
||||
|
||||
my.cnf 文件
|
||||
|
||||
```
|
||||
[client]
|
||||
port = 3306
|
||||
socket =/mysql/data/mysqltmp/mysqld.sock
|
||||
default-character-set = utf8mb4
|
||||
|
||||
[mysql]
|
||||
prompt = [\\u@\\h][\\d]>\\_
|
||||
|
||||
[mysqld]
|
||||
# basic settings #
|
||||
port = 3306 #服务器的端口号
|
||||
#路径设置,必须和上文的一致
|
||||
basedir = /mysql/mysql-9.5.0
|
||||
datadir = /mysql/data/mysqldata_u01/mysqldb
|
||||
socket = /mysql/data/mysqltmp/mysqld.sock
|
||||
pid-file = /mysql/mysql-9.5.0/mysqld.pid
|
||||
tmpdir = /mysql/data/mysqltmp
|
||||
user = mysql
|
||||
sql_mode = "STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION,NO_ZERO_DATE,NO_ZERO_IN_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER"
|
||||
autocommit = 1
|
||||
character_set_server=utf8mb4
|
||||
transaction_isolation = READ-COMMITTED
|
||||
explicit_defaults_for_timestamp = 1
|
||||
max_allowed_packet = 96M
|
||||
slave_pending_jobs_size_max= 100M
|
||||
event_scheduler = 1
|
||||
lower_case_table_names = 1
|
||||
|
||||
# connection #
|
||||
interactive_timeout = 1800
|
||||
wait_timeout = 1800
|
||||
lock_wait_timeout = 1800
|
||||
skip_name_resolve = 1
|
||||
max_connections = 1000
|
||||
max_user_connections = 1000
|
||||
max_connect_errors = 10
|
||||
|
||||
# session memory setting #
|
||||
read_buffer_size = 2M
|
||||
read_rnd_buffer_size = 4M
|
||||
sort_buffer_size = 4M
|
||||
tmp_table_size = 8M
|
||||
join_buffer_size = 8M
|
||||
|
||||
# log settings #
|
||||
slow_query_log = 1
|
||||
log-error =/mysqlslowlog/error.log
|
||||
slow-query-log-file=/mysqlslowlog/slowquery.log
|
||||
general_log_file = /mysqlslowlog/general.log
|
||||
log_queries_not_using_indexes = 1
|
||||
log_slow_admin_statements = 1
|
||||
log_slow_slave_statements = 1
|
||||
log_throttle_queries_not_using_indexes = 10
|
||||
expire_logs_days = 5
|
||||
long_query_time = 2
|
||||
min_examined_row_limit = 100
|
||||
binlog-rows-query-log-events = 1
|
||||
log-bin-trust-function-creators = 1
|
||||
log-slave-updates = 1
|
||||
|
||||
# innodb settings #
|
||||
innodb_page_size = 16K
|
||||
innodb_buffer_pool_size=20G
|
||||
innodb_buffer_pool_instances = 16
|
||||
innodb_buffer_pool_load_at_startup = 1
|
||||
innodb_buffer_pool_dump_at_shutdown = 1
|
||||
innodb_lru_scan_depth = 1024
|
||||
innodb_lock_wait_timeout = 5
|
||||
innodb_io_capacity = 2048
|
||||
innodb_io_capacity_max = 4096
|
||||
innodb_flush_method = O_DIRECT
|
||||
innodb_file_format = Barracuda
|
||||
innodb_file_format_max = Barracuda
|
||||
innodb_undo_logs = 128
|
||||
innodb_undo_tablespaces = 3
|
||||
innodb_flush_neighbors = 1
|
||||
innodb_log_file_size = 1G
|
||||
innodb_log_files_in_group = 2
|
||||
innodb_log_buffer_size = 2M
|
||||
innodb_purge_threads = 4
|
||||
innodb_large_prefix = 1
|
||||
innodb_thread_concurrency = 16
|
||||
innodb_print_all_deadlocks = 1
|
||||
innodb_strict_mode = 1
|
||||
innodb_sort_buffer_size = 4M
|
||||
innodb_write_io_threads = 4
|
||||
innodb_read_io_threads = 4
|
||||
innodb_file_per_table = 1
|
||||
innodb_stats_persistent_sample_pages = 64
|
||||
innodb_autoinc_lock_mode = 2
|
||||
|
||||
# semi sync replication settings #
|
||||
plugin_load = "validate_password.so;rpl_semi_sync_master=semisync_master.so;rpl_semi_sync_slave=semisync_slave.so"
|
||||
rpl_semi_sync_master_enabled = 1
|
||||
rpl_semi_sync_master_timeout = 3000
|
||||
rpl_semi_sync_slave_enabled = 1
|
||||
|
||||
# password plugin #
|
||||
#密码策略,密码16字节长,数字字母大小写和特殊字符,每种至少两个字符。
|
||||
validate_password_policy=2
|
||||
validate_password_length=16
|
||||
validate_password_mixed_case_count=2
|
||||
validate_password_number_count=2
|
||||
validate_password_special_char_count=3
|
||||
|
||||
# 5.7 #
|
||||
# new innodb setting #
|
||||
loose_innodb_numa_interleave=1
|
||||
innodb_buffer_pool_dump_pct = 40
|
||||
innodb_page_cleaners = 4
|
||||
innodb_undo_log_truncate = 1
|
||||
innodb_max_undo_log_size = 2G
|
||||
innodb_purge_rseg_truncate_frequency = 128
|
||||
# new replication setting #
|
||||
slave-parallel-type = LOGICAL_CLOCK
|
||||
slave-parallel-workers = 8
|
||||
slave_preserve_commit_order=1
|
||||
slave_transaction_retries=128
|
||||
# other change setting #
|
||||
binlog_gtid_simple_recovery=1
|
||||
log_timestamps=system
|
||||
show_compatibility_56=on
|
||||
|
||||
# patch #
|
||||
symbolic_links=0
|
||||
```
|
||||
|
||||
初始化
|
||||
|
||||
```
|
||||
/mysql/mysql-9.5.0/bin/mysqld --defaults-file=/etc/my.cnf --user=mysql --initialize --console
|
||||
```
|
||||
|
||||
root密码 p)daqvACh5<s
|
||||
|
||||
Reference in New Issue
Block a user