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
697339c5
Commit
697339c5
authored
Aug 03, 2023
by
danfuman
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev20230707' of
http://192.168.60.201/root/dsk-operate-sys
into dev20230707
parents
63daba33
80aee1ca
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
10 deletions
+14
-10
lxr.vue
...perate-ui/src/views/project/projectList/component/lxr.vue
+3
-3
ContactInfo.java
...main/java/com/dsk/system/domain/customer/ContactInfo.java
+1
-1
ContactInfoSearchDto.java
.../dsk/system/domain/customer/dto/ContactInfoSearchDto.java
+1
-1
ContactInfoListVo.java
.../com/dsk/system/domain/customer/vo/ContactInfoListVo.java
+5
-1
ContactInfoMapper.xml
...in/resources/mapper/system/customer/ContactInfoMapper.xml
+4
-4
No files found.
dsk-operate-ui/src/views/project/projectList/component/lxr.vue
View file @
697339c5
...
@@ -105,7 +105,7 @@
...
@@ -105,7 +105,7 @@
label=
"来源"
label=
"来源"
width=
"146"
>
width=
"146"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div
v-if=
"scope.row.projectName && scope.row.
projectId"
class=
"wordprimary"
@
click=
"todetail(scope.row.project
Id)"
>
<div
v-if=
"scope.row.projectName && scope.row.
businessId"
class=
"wordprimary"
@
click=
"todetail(scope.row.business
Id)"
>
{{
scope
.
row
.
projectName
||
'--'
}}
{{
scope
.
row
.
projectName
||
'--'
}}
</div>
</div>
<div
v-else
>
自主填报
</div>
<div
v-else
>
自主填报
</div>
...
@@ -235,7 +235,7 @@
...
@@ -235,7 +235,7 @@
created
(){
created
(){
if
(
this
.
thistype
==
'project'
){
if
(
this
.
thistype
==
'project'
){
this
.
searchParam
.
project
Id
=
this
.
detailId
?
this
.
detailId
:
this
.
$route
.
query
.
id
this
.
searchParam
.
business
Id
=
this
.
detailId
?
this
.
detailId
:
this
.
$route
.
query
.
id
}
}
if
(
this
.
thistype
==
'custom'
){
if
(
this
.
thistype
==
'custom'
){
this
.
searchParam
.
customerId
=
this
.
customerId
?
this
.
customerId
:
null
this
.
searchParam
.
customerId
=
this
.
customerId
?
this
.
customerId
:
null
...
@@ -339,7 +339,7 @@
...
@@ -339,7 +339,7 @@
// accendant:"",
// accendant:"",
}
}
if
(
this
.
thistype
==
'project'
){
if
(
this
.
thistype
==
'project'
){
this
.
queryParam
.
projectId
=
this
.
searchParam
.
project
Id
this
.
queryParam
.
businessId
=
this
.
searchParam
.
business
Id
this
.
companyName
=
""
this
.
companyName
=
""
}
}
if
(
this
.
thistype
==
'custom'
){
if
(
this
.
thistype
==
'custom'
){
...
...
dsk-system/src/main/java/com/dsk/system/domain/customer/ContactInfo.java
View file @
697339c5
...
@@ -32,7 +32,7 @@ public class ContactInfo implements Serializable {
...
@@ -32,7 +32,7 @@ public class ContactInfo implements Serializable {
/**
/**
* 项目id
* 项目id
*/
*/
private
Integer
project
Id
;
private
Integer
business
Id
;
/**
/**
* 姓名
* 姓名
*/
*/
...
...
dsk-system/src/main/java/com/dsk/system/domain/customer/dto/ContactInfoSearchDto.java
View file @
697339c5
...
@@ -13,7 +13,7 @@ public class ContactInfoSearchDto implements Serializable {
...
@@ -13,7 +13,7 @@ public class ContactInfoSearchDto implements Serializable {
/**
/**
* 项目id
* 项目id
*/
*/
private
Integer
project
Id
;
private
Integer
business
Id
;
/**
/**
* 企业名称
* 企业名称
*/
*/
...
...
dsk-system/src/main/java/com/dsk/system/domain/customer/vo/ContactInfoListVo.java
View file @
697339c5
...
@@ -29,7 +29,7 @@ public class ContactInfoListVo implements Serializable {
...
@@ -29,7 +29,7 @@ public class ContactInfoListVo implements Serializable {
/**
/**
* 项目id
* 项目id
*/
*/
private
Integer
project
Id
;
private
Integer
business
Id
;
/**
/**
* 项目名称
* 项目名称
*/
*/
...
@@ -66,6 +66,10 @@ public class ContactInfoListVo implements Serializable {
...
@@ -66,6 +66,10 @@ public class ContactInfoListVo implements Serializable {
* 企业名称
* 企业名称
*/
*/
private
String
companyName
;
private
String
companyName
;
/**
* 备注
*/
private
String
remark
;
/**
/**
* 更新人
* 更新人
*/
*/
...
...
dsk-system/src/main/resources/mapper/system/customer/ContactInfoMapper.xml
View file @
697339c5
...
@@ -4,14 +4,14 @@
...
@@ -4,14 +4,14 @@
<select
id=
"selectPageList"
resultType=
"com.dsk.system.domain.customer.vo.ContactInfoListVo"
>
<select
id=
"selectPageList"
resultType=
"com.dsk.system.domain.customer.vo.ContactInfoListVo"
>
select
select
cc.id, cc.customer_id, cc.
project
_id, bi.project_name, cc.name, cc.sex, cc.role,
cc.id, cc.customer_id, cc.
business
_id, bi.project_name, cc.name, cc.sex, cc.role,
cc.position, cc.contact_information, cc.company_id, cc.uip_id, cc.company_name,
cc.position, cc.contact_information, cc.company_id, cc.uip_id, cc.company_name,
cc.remark,
cc.update_by
cc.update_by
from contact_info cc
from contact_info cc
left join business_info bi on cc.
project
_id = bi.id
left join business_info bi on cc.
business
_id = bi.id
<where>
<where>
<if
test=
"customerId != null and customerId !='' "
>
and (cc.customer_id = #{customerId} or bi.customer_id = #{customerId})
</if>
<if
test=
"customerId != null and customerId !='' "
>
and (cc.customer_id = #{customerId} or bi.customer_id = #{customerId})
</if>
<if
test=
"
projectId != null "
>
and cc.project_id = #{project
Id}
</if>
<if
test=
"
businessId != null "
>
and cc.business_id = #{business
Id}
</if>
</where>
</where>
order by cc.create_time desc
order by cc.create_time desc
</select>
</select>
...
...
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