Commit 0fef8ba5 authored by tanyang's avatar tanyang

Merge remote-tracking branch 'origin/dev20230707'

parents fc9beccc 014917f1
...@@ -14,6 +14,12 @@ import javax.validation.constraints.NotNull; ...@@ -14,6 +14,12 @@ import javax.validation.constraints.NotNull;
@Data @Data
public class OpRegionalEconomicDataRegionalListDto { public class OpRegionalEconomicDataRegionalListDto {
/**
* id
*/
@NotNull(message = "id 不能为空")
private Integer id;
/** /**
* 省Id * 省Id
*/ */
......
...@@ -349,24 +349,24 @@ export default { ...@@ -349,24 +349,24 @@ export default {
.app-container{ .app-container{
height: calc(100vh - 134px) height: calc(100vh - 134px)
} }
.box-card{ .box-card{
padding-top: 16px; padding-top: 16px;
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
.box{ .box{
position: relative; position: relative;
>span{ >span{
position: absolute; position: absolute;
right: 10px; right: 10px;
bottom: 0; bottom: 0;
color: #0081FF; color: #0081FF;
cursor: pointer; cursor: pointer;
&:hover{ &:hover{
color: #006AD1; color: #006AD1;
}
} }
} }
}
.dc{ .dc{
font-size: 12px; font-size: 12px;
color: #3D3D3D; color: #3D3D3D;
...@@ -397,8 +397,8 @@ export default { ...@@ -397,8 +397,8 @@ export default {
} }
.tables{ .tables{
position: relative; position: relative;
height: calc(100vh - 134px); min-height: calc(100vh - 134px);
overflow: auto; /*overflow: auto;*/
.empty{ .empty{
position: absolute; position: absolute;
top: 50%; top: 50%;
...@@ -425,7 +425,7 @@ export default { ...@@ -425,7 +425,7 @@ export default {
>img{ >img{
float: right; float: right;
margin: 3px 0 0 4px; margin: 3px 0 0 4px;
width: 16px; width: 14px;
} }
.i{ .i{
display: inline-block; display: inline-block;
......
...@@ -237,8 +237,16 @@ public class BusinessInfoServiceImpl implements IBusinessInfoService { ...@@ -237,8 +237,16 @@ public class BusinessInfoServiceImpl implements IBusinessInfoService {
@Transactional @Transactional
public int deleteBusinessInfoByIds(Long[] ids) { public int deleteBusinessInfoByIds(Long[] ids) {
//删除项目详情,用户关联项目,项目工作代办,项目联系人,项目跟进记录,项目标签,项目相关企业 //删除项目详情,用户关联项目,项目工作代办,项目联系人,项目跟进记录,项目标签,项目相关企业
return businessInfoMapper.deleteBusinessInfoByIds(ids); int deleteBusiness = businessInfoMapper.deleteBusinessInfoByIds(ids);
//TODO 删除项目上传的文件 //删除项目上传的文件
for (Long id : ids) {
try {
FileUtils.delFolder(RuoYiConfig.getUploadPath() + id);
} catch (Exception e) {
e.printStackTrace();
}
}
return deleteBusiness;
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment