Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
D
dsk-cr20g
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
dsk-cr20g
Commits
6b92900a
Commit
6b92900a
authored
Jul 21, 2023
by
Administrator
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/dev20230707' into dev20230707
parents
36a81a8e
c6b7ef7e
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
25 additions
and
18 deletions
+25
-18
project.scss
dsk-operate-ui/src/assets/styles/project.scss
+0
-4
addProject.vue
...ui/src/views/project/projectList/component/addProject.vue
+8
-8
xmsl.vue
...erate-ui/src/views/project/projectList/component/xmsl.vue
+1
-1
index.vue
dsk-operate-ui/src/views/project/projectList/index.vue
+1
-0
BusinessInfoMapper.java
...c/main/java/com/dsk/system/mapper/BusinessInfoMapper.java
+2
-2
BusinessInfoServiceImpl.java
.../com/dsk/system/service/impl/BusinessInfoServiceImpl.java
+4
-2
BusinessInfoMapper.xml
...src/main/resources/mapper/business/BusinessInfoMapper.xml
+9
-1
No files found.
dsk-operate-ui/src/assets/styles/project.scss
View file @
6b92900a
...
@@ -1220,10 +1220,6 @@
...
@@ -1220,10 +1220,6 @@
top
:
56px
;
top
:
56px
;
z-index
:
9
;
z-index
:
9
;
}
}
.el-table__fixed-header-wrapper
{
z-index
:
9
;
}
.el-table__fixed-header-wrapper
{
.el-table__fixed-header-wrapper
{
position
:
sticky
;
position
:
sticky
;
z-index
:
9
;
z-index
:
9
;
...
...
dsk-operate-ui/src/views/project/projectList/component/addProject.vue
View file @
6b92900a
...
@@ -75,10 +75,10 @@
...
@@ -75,10 +75,10 @@
projectName
:
''
,
// 项目名称
projectName
:
''
,
// 项目名称
companyId
:
''
,
//企业id
companyId
:
''
,
//企业id
ownerCompany
:
''
,
//业主单位
ownerCompany
:
''
,
//业主单位
projectStage
:
''
,
//项目阶段
projectStage
:
null
,
//项目阶段
projectType
:
''
,
//项目类型
projectType
:
null
,
//项目类型
projectCategory
:
''
,
//项目类别
projectCategory
:
null
,
//项目类别
investmentAmount
:
''
,
//投资估算
investmentAmount
:
null
,
//投资估算
isPrivate
:
0
,
//可见范围(0 仅自己可见,1 他人可见)
isPrivate
:
0
,
//可见范围(0 仅自己可见,1 他人可见)
},
},
rules
:{
rules
:{
...
@@ -169,10 +169,10 @@
...
@@ -169,10 +169,10 @@
projectName
:
''
,
// 项目名称
projectName
:
''
,
// 项目名称
companyId
:
''
,
//企业id
companyId
:
''
,
//企业id
ownerCompany
:
''
,
//业主单位
ownerCompany
:
''
,
//业主单位
projectStage
:
''
,
//项目阶段
projectStage
:
null
,
//项目阶段
projectType
:
''
,
//项目类型
projectType
:
null
,
//项目类型
projectCategory
:
''
,
//项目类别
projectCategory
:
null
,
//项目类别
investmentAmount
:
''
,
//投资估算
investmentAmount
:
null
,
//投资估算
isPrivate
:
0
,
//可见范围(0 仅自己可见,1 他人可见)
isPrivate
:
0
,
//可见范围(0 仅自己可见,1 他人可见)
},
},
this
.
showlist
=
false
this
.
showlist
=
false
...
...
dsk-operate-ui/src/views/project/projectList/component/xmsl.vue
View file @
6b92900a
...
@@ -340,7 +340,7 @@
...
@@ -340,7 +340,7 @@
getXMSL
(){
getXMSL
(){
getXMSL
(
this
.
id
).
then
(
result
=>
{
getXMSL
(
this
.
id
).
then
(
result
=>
{
this
.
xmjd
=
result
.
data
.
projectStage
this
.
xmjd
=
!
result
.
data
.
projectStage
?
'待添加'
:
result
.
data
.
projectStage
if
(
result
.
data
.
labelList
==
null
||
result
.
data
.
labelList
==
""
||
result
.
data
.
labelList
==
undefined
){
if
(
result
.
data
.
labelList
==
null
||
result
.
data
.
labelList
==
""
||
result
.
data
.
labelList
==
undefined
){
this
.
tipslit
=
[]
this
.
tipslit
=
[]
}
else
{
}
else
{
...
...
dsk-operate-ui/src/views/project/projectList/index.vue
View file @
6b92900a
...
@@ -600,6 +600,7 @@ export default {
...
@@ -600,6 +600,7 @@ export default {
font-size
:
16px
;
font-size
:
16px
;
font-weight
:
700
;
font-weight
:
700
;
line-height
:
23px
;
line-height
:
23px
;
padding-right
:
190px
;
.people
{
.people
{
padding-left
:
10px
;
padding-left
:
10px
;
color
:
#4f4f4f
;
color
:
#4f4f4f
;
...
...
dsk-system/src/main/java/com/dsk/system/mapper/BusinessInfoMapper.java
View file @
6b92900a
...
@@ -76,8 +76,8 @@ public interface BusinessInfoMapper extends BaseMapper<BusinessInfo>
...
@@ -76,8 +76,8 @@ public interface BusinessInfoMapper extends BaseMapper<BusinessInfo>
public
int
deleteBusinessInfoById
(
Long
id
);
public
int
deleteBusinessInfoById
(
Long
id
);
/**
/**
* 批量删除项目
详情
* 批量删除项目
*
*
项目关联的其他所有表数据一并删除
* @param ids 需要删除的数据主键集合
* @param ids 需要删除的数据主键集合
* @return 结果
* @return 结果
*/
*/
...
...
dsk-system/src/main/java/com/dsk/system/service/impl/BusinessInfoServiceImpl.java
View file @
6b92900a
...
@@ -228,15 +228,17 @@ public class BusinessInfoServiceImpl implements IBusinessInfoService {
...
@@ -228,15 +228,17 @@ public class BusinessInfoServiceImpl implements IBusinessInfoService {
}
}
/**
/**
* 批量删除项目
详情
* 批量删除项目
*
*
项目关联的其他所有表数据一并删除
* @param ids 需要删除的项目详情主键
* @param ids 需要删除的项目详情主键
* @return 结果
* @return 结果
*/
*/
@Override
@Override
@Transactional
@Transactional
public
int
deleteBusinessInfoByIds
(
Long
[]
ids
)
{
public
int
deleteBusinessInfoByIds
(
Long
[]
ids
)
{
//删除项目详情,用户关联项目,项目工作代办,项目联系人,项目跟进记录,项目标签,项目相关企业
return
businessInfoMapper
.
deleteBusinessInfoByIds
(
ids
);
return
businessInfoMapper
.
deleteBusinessInfoByIds
(
ids
);
//TODO 删除项目上传的文件
}
}
/**
/**
...
...
dsk-system/src/main/resources/mapper/business/BusinessInfoMapper.xml
View file @
6b92900a
...
@@ -373,7 +373,15 @@
...
@@ -373,7 +373,15 @@
</delete>
</delete>
<delete
id=
"deleteBusinessInfoByIds"
parameterType=
"Long"
>
<delete
id=
"deleteBusinessInfoByIds"
parameterType=
"Long"
>
delete from business_info where id in
delete i,b,co,f,l,r,u
from business_info i
left join business_backlog b on b.business_id = i.id
left join business_contacts co on co.business_id = i.id
left join business_follow_record f on f.business_id = i.id
left join business_label l on l.business_id = i.id
left join business_relate_company r on r.business_id = i.id
left join business_user u on u.business_id = i.id
where i.id in
<foreach
item=
"id"
collection=
"array"
open=
"("
separator=
","
close=
")"
>
<foreach
item=
"id"
collection=
"array"
open=
"("
separator=
","
close=
")"
>
#{id}
#{id}
</foreach>
</foreach>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment