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
704915a5
Commit
704915a5
authored
Aug 21, 2023
by
yht15023815643
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev20230707' of
http://192.168.60.201/root/dsk-operate-sys
into dev20230707
parents
dcb89aa7
22fbe1f2
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
20 additions
and
11 deletions
+20
-11
IndexBigBidPageBody.java
...com/dsk/common/core/domain/model/IndexBigBidPageBody.java
+2
-2
IndexBigWinningBidsPageBody.java
...common/core/domain/model/IndexBigWinningBidsPageBody.java
+2
-2
lxr.vue
...perate-ui/src/views/project/projectList/component/lxr.vue
+2
-2
CustomerFollowRecordSearchDto.java
...em/domain/customer/dto/CustomerFollowRecordSearchDto.java
+8
-1
CustomerFollowRecordMapper.java
...ava/com/dsk/system/mapper/CustomerFollowRecordMapper.java
+1
-1
CustomerFollowRecordMapper.xml
...ces/mapper/system/customer/CustomerFollowRecordMapper.xml
+5
-3
No files found.
dsk-common/src/main/java/com/dsk/common/core/domain/model/IndexBigBidPageBody.java
View file @
704915a5
...
@@ -18,11 +18,11 @@ public class IndexBigBidPageBody extends BasePage
...
@@ -18,11 +18,11 @@ public class IndexBigBidPageBody extends BasePage
/**
/**
* 开始时间
* 开始时间
*/
*/
private
Date
timeStart
=
DateUtils
.
addDays
(
new
Date
(),
-
7
);
private
String
timeStart
=
DateUtils
.
dateTime
(
DateUtils
.
addDays
(
new
Date
(),
-
6
)
);
/**
/**
* 截止时间
* 截止时间
*/
*/
private
Date
timeEnd
=
new
Date
();
private
String
timeEnd
=
DateUtils
.
get
Date
();
/**
/**
* 金额起 默认2亿
* 金额起 默认2亿
*/
*/
...
...
dsk-common/src/main/java/com/dsk/common/core/domain/model/IndexBigWinningBidsPageBody.java
View file @
704915a5
...
@@ -17,11 +17,11 @@ public class IndexBigWinningBidsPageBody extends BasePage {
...
@@ -17,11 +17,11 @@ public class IndexBigWinningBidsPageBody extends BasePage {
/**
/**
* 开始时间
* 开始时间
*/
*/
private
Date
timeStart
=
DateUtils
.
addDays
(
new
Date
(),
-
7
);
private
String
timeStart
=
DateUtils
.
dateTime
(
DateUtils
.
addDays
(
new
Date
(),
-
6
)
);
/**
/**
* 截止时间
* 截止时间
*/
*/
private
Date
timeEnd
=
new
Date
();
private
String
timeEnd
=
DateUtils
.
get
Date
();
/**
/**
* 金额起 默认2亿
* 金额起 默认2亿
*/
*/
...
...
dsk-operate-ui/src/views/project/projectList/component/lxr.vue
View file @
704915a5
...
@@ -9,7 +9,7 @@
...
@@ -9,7 +9,7 @@
<div
class=
"empty"
v-if=
"total==0"
>
<div
class=
"empty"
v-if=
"total==0"
>
<img
src=
"@/assets/images/project/empty.png"
>
<img
src=
"@/assets/images/project/empty.png"
>
<div
class=
"p1"
>
暂无数据展示
</div>
<div
class=
"p1"
>
暂无数据展示
</div>
<div
class=
"p2"
>
抱歉,你还未添加相关数据,快去添加吧
</div>
<div
class=
"p2"
v-if=
"isDisabled==false"
>
抱歉,你还未添加相关数据,快去添加吧
</div>
<div
class=
"btn btn_primary h36 w102"
@
click=
"opennew"
v-if=
"isDisableds == false"
>
新增联系人
</div>
<div
class=
"btn btn_primary h36 w102"
@
click=
"opennew"
v-if=
"isDisableds == false"
>
新增联系人
</div>
</div>
</div>
<el-table
class=
"fixed-table"
v-else
max-height=
"640"
<el-table
class=
"fixed-table"
v-else
max-height=
"640"
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
label=
"姓名"
label=
"姓名"
width=
"113"
>
width=
"113"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<div
class=
"wordprimary
"
><span
@
click=
"getDetail(scope.row)"
>
{{
scope
.
row
.
name
||
'--'
}}
</span><img
v-if=
"isDisabled == false"
@
click=
"deltip(scope.row.id)"
src=
"@/assets/images/delete.png"
></div>
<div
:class=
"isDisabled==false?'wordprimary':''
"
><span
@
click=
"getDetail(scope.row)"
>
{{
scope
.
row
.
name
||
'--'
}}
</span><img
v-if=
"isDisabled == false"
@
click=
"deltip(scope.row.id)"
src=
"@/assets/images/delete.png"
></div>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<!--<el-table-column-->
<!--<el-table-column-->
...
...
dsk-system/src/main/java/com/dsk/system/domain/customer/dto/CustomerFollowRecordSearchDto.java
View file @
704915a5
...
@@ -4,7 +4,6 @@ import com.dsk.common.core.domain.BaseEntity;
...
@@ -4,7 +4,6 @@ import com.dsk.common.core.domain.BaseEntity;
import
lombok.Data
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.io.Serializable
;
import
java.util.Map
;
/**
/**
* 客户跟进记录筛选对象
* 客户跟进记录筛选对象
...
@@ -23,4 +22,12 @@ public class CustomerFollowRecordSearchDto extends BaseEntity implements Seriali
...
@@ -23,4 +22,12 @@ public class CustomerFollowRecordSearchDto extends BaseEntity implements Seriali
* 用户id
* 用户id
*/
*/
private
Long
userId
;
private
Long
userId
;
/**
* 开始时间
*/
private
String
startTime
;
/**
* 结束时间
*/
private
String
endTime
;
}
}
dsk-system/src/main/java/com/dsk/system/mapper/CustomerFollowRecordMapper.java
View file @
704915a5
...
@@ -19,7 +19,7 @@ import java.util.List;
...
@@ -19,7 +19,7 @@ import java.util.List;
@Mapper
@Mapper
public
interface
CustomerFollowRecordMapper
extends
BaseMapper
<
CustomerFollowRecord
>
{
public
interface
CustomerFollowRecordMapper
extends
BaseMapper
<
CustomerFollowRecord
>
{
List
<
CustomerFollowRecordListVo
>
selectAuthList
(
@Param
(
"dto"
)
CustomerFollowRecordSearchDto
dto
);
List
<
CustomerFollowRecordListVo
>
selectAuthList
(
CustomerFollowRecordSearchDto
dto
);
}
}
dsk-system/src/main/resources/mapper/system/customer/CustomerFollowRecordMapper.xml
View file @
704915a5
...
@@ -16,10 +16,12 @@
...
@@ -16,10 +16,12 @@
join sys_user u on u.user_id = cfr.user_id
join sys_user u on u.user_id = cfr.user_id
left join sys_dept d on d.dept_id = u.dept_id
left join sys_dept d on d.dept_id = u.dept_id
<where>
<where>
<if
test=
"dto.userId != null "
>
and cfr.user_id = #{dto.userId}
</if>
<if
test=
"userId != null "
>
and cfr.user_id = #{userId}
</if>
<if
test=
"dto.customerId != null and dto.customerId != '' "
>
and cfr.customer_id = #{dto.customerId}
</if>
<if
test=
"customerId != null and customerId != '' "
>
and cfr.customer_id = #{customerId}
</if>
<if
test=
"startTime != null and startTime != '' "
>
and cfr.visit_time
>
= #{startTime}
</if>
<if
test=
"endTime != null and endTime != '' "
>
and cfr.visit_time
<
= #{endTime}
</if>
<!-- 数据范围过滤 -->
<!-- 数据范围过滤 -->
<if
test=
"
dto.params.dataScope != null and dto.params.dataScope != '' "
>
${dto.
params.dataScope}
</if>
<if
test=
"
params.dataScope != null and params.dataScope != '' "
>
${
params.dataScope}
</if>
</where>
</where>
order by cfr.create_time desc
order by cfr.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