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
e419a64b
Commit
e419a64b
authored
Jun 26, 2023
by
dengguangman
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
5e703f1e
dfad06c9
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
18 deletions
+13
-18
BusinessFileController.java
...m/dsk/web/controller/business/BusinessFileController.java
+1
-1
index.scss
dsk-operate-ui/src/assets/styles/index.scss
+5
-13
index.vue
dsk-operate-ui/src/layout/components/TagsView/index.vue
+2
-2
CustomerFollowRecordListVo.java
...system/domain/customer/vo/CustomerFollowRecordListVo.java
+2
-0
BusinessContactsServiceImpl.java
.../dsk/system/service/impl/BusinessContactsServiceImpl.java
+1
-1
BusinessInfoServiceImpl.java
.../com/dsk/system/service/impl/BusinessInfoServiceImpl.java
+2
-1
No files found.
dsk-admin/src/main/java/com/dsk/web/controller/business/BusinessFileController.java
View file @
e419a64b
...
@@ -96,7 +96,7 @@ public class BusinessFileController extends BaseController {
...
@@ -96,7 +96,7 @@ public class BusinessFileController extends BaseController {
// 上传并返回文件全路径
// 上传并返回文件全路径
String
fileName
=
FileUploadUtils
.
upload
(
filePath
,
file
);
String
fileName
=
FileUploadUtils
.
upload
(
filePath
,
file
);
String
url
=
serverConfig
.
getUrl
()
+
fileName
;
//
String url = serverConfig.getUrl() + fileName;
AjaxResult
ajax
=
AjaxResult
.
success
();
AjaxResult
ajax
=
AjaxResult
.
success
();
ajax
.
put
(
"url"
,
fileName
);
ajax
.
put
(
"url"
,
fileName
);
return
ajax
;
return
ajax
;
...
...
dsk-operate-ui/src/assets/styles/index.scss
View file @
e419a64b
...
@@ -387,21 +387,13 @@ ul, li {
...
@@ -387,21 +387,13 @@ ul, li {
}
}
.common-title
{
.common-title
{
border-left
:
2px
solid
#445781
;
padding-left
:
8px
;
font-size
:
16px
;
font-size
:
16px
;
color
:
#232323
;
height
:
16px
;
line-height
:
16px
;
font-weight
:
700
;
font-weight
:
700
;
line-height
:
0
.9
;
color
:
#232323
;
position
:
relative
;
padding
:
0
0
0
8px
;
&
:before
{
position
:
absolute
;
left
:
0
;
top
:
0
;
width
:
2px
;
height
:
14px
;
background
:
#445781
;
content
:
""
;
}
}
}
.pagination-box
{
.pagination-box
{
...
...
dsk-operate-ui/src/layout/components/TagsView/index.vue
View file @
e419a64b
...
@@ -355,9 +355,9 @@ export default {
...
@@ -355,9 +355,9 @@ export default {
transition
:
all
.3s
cubic-bezier
(
.645
,
.045
,
.355
,
1
);
transition
:
all
.3s
cubic-bezier
(
.645
,
.045
,
.355
,
1
);
transform-origin
:
100%
50%
;
transform-origin
:
100%
50%
;
&
:before
{
&
:before
{
transform
:
scale
(
.
6
);
transform
:
scale
(
.
95
);
display
:
inline-block
;
display
:
inline-block
;
vertical-align
:
-
3
px
;
vertical-align
:
-
2
.5
px
;
}
}
}
}
}
}
...
...
dsk-system/src/main/java/com/dsk/system/domain/customer/vo/CustomerFollowRecordListVo.java
View file @
e419a64b
...
@@ -2,6 +2,7 @@ package com.dsk.system.domain.customer.vo;
...
@@ -2,6 +2,7 @@ package com.dsk.system.domain.customer.vo;
import
com.baomidou.mybatisplus.annotation.FieldFill
;
import
com.baomidou.mybatisplus.annotation.FieldFill
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.baomidou.mybatisplus.annotation.TableField
;
import
com.fasterxml.jackson.annotation.JsonFormat
;
import
lombok.Data
;
import
lombok.Data
;
import
java.io.Serializable
;
import
java.io.Serializable
;
...
@@ -57,6 +58,7 @@ public class CustomerFollowRecordListVo implements Serializable {
...
@@ -57,6 +58,7 @@ public class CustomerFollowRecordListVo implements Serializable {
private
String
content
;
private
String
content
;
@TableField
(
fill
=
FieldFill
.
INSERT
)
@TableField
(
fill
=
FieldFill
.
INSERT
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd HH:mm:ss"
)
private
Date
createTime
;
private
Date
createTime
;
...
...
dsk-system/src/main/java/com/dsk/system/service/impl/BusinessContactsServiceImpl.java
View file @
e419a64b
...
@@ -65,7 +65,7 @@ public class BusinessContactsServiceImpl implements IBusinessContactsService
...
@@ -65,7 +65,7 @@ public class BusinessContactsServiceImpl implements IBusinessContactsService
LoginUser
loginUser
=
SecurityUtils
.
getLoginUser
();
LoginUser
loginUser
=
SecurityUtils
.
getLoginUser
();
if
(
ObjectUtil
.
isEmpty
(
loginUser
))
throw
new
BaseException
(
"请登录"
);
if
(
ObjectUtil
.
isEmpty
(
loginUser
))
throw
new
BaseException
(
"请登录"
);
//维护人员为当前登录用户
//维护人员为当前登录用户
businessContacts
.
setAccendant
(
loginUser
.
getUser
n
ame
());
businessContacts
.
setAccendant
(
loginUser
.
getUser
().
getNickN
ame
());
return
businessContactsMapper
.
insertBusinessContacts
(
businessContacts
);
return
businessContactsMapper
.
insertBusinessContacts
(
businessContacts
);
}
}
...
...
dsk-system/src/main/java/com/dsk/system/service/impl/BusinessInfoServiceImpl.java
View file @
e419a64b
...
@@ -148,7 +148,8 @@ public class BusinessInfoServiceImpl implements IBusinessInfoService {
...
@@ -148,7 +148,8 @@ public class BusinessInfoServiceImpl implements IBusinessInfoService {
row
++;
row
++;
if
(
count
>
0
)
{
if
(
count
>
0
)
{
//如果存在,跳过该项目,不保存
//如果存在,跳过该项目,不保存
result
.
add
(
"第"
+
row
+
"行的"
+
businessInfo
.
getProjectName
()
+
"的项目已存在,跳过该项目,保存下一条"
);
// result.add("第" + row + "行的" + businessInfo.getProjectName() + "的项目已存在,跳过该项目,保存下一条");
log
.
info
(
"第"
+
row
+
"行的"
+
businessInfo
.
getProjectName
()
+
"的项目已存在,跳过该项目,保存下一条"
);
errorCount
++;
errorCount
++;
}
else
{
}
else
{
//保存到数据库
//保存到数据库
...
...
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