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
8c671ef8
Commit
8c671ef8
authored
May 26, 2023
by
MyName
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
客户管理
parent
81d84804
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
353 additions
and
110 deletions
+353
-110
Template.xlsx
dsk-operate-ui/public/file/Template.xlsx
+0
-0
custom.js
dsk-operate-ui/src/api/custom/custom.js
+18
-0
index.scss
dsk-operate-ui/src/assets/styles/index.scss
+5
-0
project.scss
dsk-operate-ui/src/assets/styles/project.scss
+31
-16
index.vue
dsk-operate-ui/src/views/custom/customList/index.vue
+250
-85
index.vue
...rate-ui/src/views/detail/party-a/decisionMaking/index.vue
+2
-2
gjjl.vue
...erate-ui/src/views/project/projectList/component/gjjl.vue
+41
-1
lxr.vue
...perate-ui/src/views/project/projectList/component/lxr.vue
+2
-2
xgqy.vue
...erate-ui/src/views/project/projectList/component/xgqy.vue
+2
-2
index.vue
dsk-operate-ui/src/views/project/projectList/index.vue
+2
-2
No files found.
dsk-operate-ui/
src/assets/excel/批量导入模板
.xlsx
→
dsk-operate-ui/
public/file/Template
.xlsx
View file @
8c671ef8
File moved
dsk-operate-ui/src/api/custom/custom.js
View file @
8c671ef8
import
request
from
'@/utils/request'
import
request
from
'@/utils/request'
// 导入客户列表
export
function
importData
(
param
)
{
return
request
({
url
:
'/customer/importData'
,
method
:
'POST'
,
data
:
param
})
}
// 客户列表
// 客户列表
export
function
getCustomerList
(
param
)
{
export
function
getCustomerList
(
param
)
{
...
@@ -16,3 +24,13 @@ export function addCustomer(param) {
...
@@ -16,3 +24,13 @@ export function addCustomer(param) {
data
:
param
data
:
param
})
})
}
}
//查询跟进记录
export
function
getFollowList
(
param
)
{
return
request
({
url
:
'/customer/follow/record/list'
,
method
:
'get'
,
params
:
param
})
}
dsk-operate-ui/src/assets/styles/index.scss
View file @
8c671ef8
...
@@ -658,3 +658,8 @@ ul, li {
...
@@ -658,3 +658,8 @@ ul, li {
.flex
{
.flex
{
display
:
flex
;
display
:
flex
;
}
}
//消息提示框
.el-message
{
border-radius
:
0
;
padding
:
10px
;
}
dsk-operate-ui/src/assets/styles/project.scss
View file @
8c671ef8
...
@@ -358,18 +358,36 @@
...
@@ -358,18 +358,36 @@
.popform
{
.popform
{
padding-top
:
24px
;
padding-top
:
24px
;
.row
{
.row
{
padding-bottom
:
16px
;
margin-bottom
:
16px
;
.left
{
position
:
relative
;
width
:
137px
;
.resultlist
{
display
:
inline-block
;
position
:
absolute
;
text-align
:
right
;
width
:
100%
;
opacity
:
0
.8
;
max-height
:
218px
;
i
{
background
:
#FFFFFF
;
color
:
#FF3C3C
;
box-shadow
:
0px
4px
10px
0px
rgba
(
0
,
0
,
0
,
0
.1
);
font-style
:
initial
;
overflow
:
auto
;
padding-right
:
2px
;
z-index
:
2
;
text-indent
:
13px
;
cursor
:
pointer
;
>
div
{
font-size
:
14px
;
color
:
#333
;
height
:
32px
;
width
:
100%
;
overflow
:
hidden
;
white-space
:
nowrap
;
text-overflow
:
ellipsis
;
&
:hover
{
background
:
#F1F6FB
;
}
}
}
}
}
.el-form-item__label
{
font-weight
:
400
;
opacity
:
0
.8
;
padding
:
0
;
}
.el-input
{
.el-input
{
display
:
inline-block
;
display
:
inline-block
;
width
:
240px
;
width
:
240px
;
...
@@ -398,6 +416,9 @@
...
@@ -398,6 +416,9 @@
color
:
#232323
;
color
:
#232323
;
}
}
}
}
.el-form-item__error
{
padding-top
:
2px
;
}
}
}
.popbot
{
.popbot
{
text-align
:
right
;
text-align
:
right
;
...
@@ -410,17 +431,11 @@
...
@@ -410,17 +431,11 @@
}
}
}
}
.popform.i
{
.popform.i
{
.left
{
width
:
85px
;
}
.el-input
{
.el-input
{
width
:
335px
;
width
:
335px
;
}
}
}
}
.popform.j
{
.popform.j
{
.left
{
width
:
130px
;
}
.el-input
{
.el-input
{
width
:
364px
;
width
:
364px
;
}
}
...
...
dsk-operate-ui/src/views/custom/customList/index.vue
View file @
8c671ef8
This diff is collapsed.
Click to expand it.
dsk-operate-ui/src/views/detail/party-a/decisionMaking/index.vue
View file @
8c671ef8
...
@@ -51,7 +51,7 @@
...
@@ -51,7 +51,7 @@
<img
src=
"@/assets/images/economies/icon.png"
>
<img
src=
"@/assets/images/economies/icon.png"
>
<span>
重庆市轨道交通3号线二期工程4标段施工总承包
</span>
<span>
重庆市轨道交通3号线二期工程4标段施工总承包
</span>
</div>
</div>
<
div
class=
"popform
"
>
<
el-form
class=
"popform"
label-width=
"137px
"
>
<div
class=
"row"
>
<div
class=
"row"
>
<span
class=
"left"
>
联系人姓名:
</span>
<span
class=
"left"
>
联系人姓名:
</span>
<el-input
type=
"text"
placeholder=
"请输入"
></el-input>
<el-input
type=
"text"
placeholder=
"请输入"
></el-input>
...
@@ -83,7 +83,7 @@
...
@@ -83,7 +83,7 @@
<div
class=
"btn btn_cancel h32"
@
click=
"cancel"
>
返回
</div>
<div
class=
"btn btn_cancel h32"
@
click=
"cancel"
>
返回
</div>
<div
class=
"btn btn_primary h32"
>
保存
</div>
<div
class=
"btn btn_primary h32"
>
保存
</div>
</div>
</div>
</
div
>
</
el-form
>
</el-dialog>
</el-dialog>
</div>
</div>
...
...
dsk-operate-ui/src/views/project/projectList/component/gjjl.vue
View file @
8c671ef8
...
@@ -84,6 +84,19 @@
...
@@ -84,6 +84,19 @@
</div>
</div>
</div>
</div>
</div>
</div>
<div
class=
"tables"
>
<div
class=
"bottems"
>
<el-pagination
background
:page-size=
"pageSize"
:current-page=
"pageNum"
@
current-change=
"handleCurrentChange"
layout=
"prev, pager, next"
:total=
"1000"
>
</el-pagination>
</div>
</div>
</div>
</div>
</div>
</div>
...
@@ -100,6 +113,7 @@
...
@@ -100,6 +113,7 @@
<
script
>
<
script
>
import
"@/assets/styles/project.scss"
import
"@/assets/styles/project.scss"
import
{
getFollowList
}
from
'@/api/custom/custom'
export
default
{
export
default
{
props
:{
props
:{
types
:
{
//当前组件展示类型
types
:
{
//当前组件展示类型
...
@@ -113,14 +127,36 @@
...
@@ -113,14 +127,36 @@
return
{
return
{
showtype
:
''
,
showtype
:
''
,
isEdit
:
false
,
isEdit
:
false
,
value
:
''
value
:
''
,
pageNum
:
1
,
//页码
pageSize
:
20
,
}
}
},
},
created
(){
created
(){
this
.
showtype
=
this
.
types
this
.
showtype
=
this
.
types
//客户管理跟进动态
if
(
this
.
showtype
==
'gjdt'
){
this
.
getGJDTlist
()
}
console
.
log
(
this
.
types
)
console
.
log
(
this
.
types
)
},
},
methods
:{
methods
:{
//跟进动态列表
getGJDTlist
(){
let
param
=
{
pageNum
:
this
.
pageNum
,
//页码
pageSize
:
this
.
pageSize
,
}
getFollowList
(
param
).
then
(
result
=>
{
})
},
handleCurrentChange
(
val
){
this
.
pageNum
=
val
if
(
this
.
showtype
==
'gjdt'
){
this
.
getGJDTlist
()
}
},
getEdit
(){
getEdit
(){
this
.
isEdit
=
true
;
this
.
isEdit
=
true
;
this
.
value
=
""
this
.
value
=
""
...
@@ -138,4 +174,8 @@
...
@@ -138,4 +174,8 @@
.delform
{
.delform
{
position
:
fixed
;
left
:
50%
;
top
:
50%
;
transform
:translate
(
-50
%
,
-50
%
)
position
:
fixed
;
left
:
50%
;
top
:
50%
;
transform
:translate
(
-50
%
,
-50
%
)
}
}
.tables
{
margin-top
:
-26px
;
padding-right
:
0
;
}
</
style
>
</
style
>
dsk-operate-ui/src/views/project/projectList/component/lxr.vue
View file @
8c671ef8
...
@@ -79,7 +79,7 @@
...
@@ -79,7 +79,7 @@
<img
src=
"@/assets/images/economies/icon.png"
>
<img
src=
"@/assets/images/economies/icon.png"
>
<span>
重庆市轨道交通3号线二期工程4标段施工总承包
</span>
<span>
重庆市轨道交通3号线二期工程4标段施工总承包
</span>
</div>
</div>
<
div
class=
"popform
"
>
<
el-form
class=
"popform"
label-width=
"137px
"
>
<div
class=
"row"
>
<div
class=
"row"
>
<span
class=
"left"
>
联系人姓名:
</span>
<span
class=
"left"
>
联系人姓名:
</span>
<el-input
type=
"text"
placeholder=
"请输入"
></el-input>
<el-input
type=
"text"
placeholder=
"请输入"
></el-input>
...
@@ -111,7 +111,7 @@
...
@@ -111,7 +111,7 @@
<div
class=
"btn btn_cancel h32"
@
click=
"cancel"
>
返回
</div>
<div
class=
"btn btn_cancel h32"
@
click=
"cancel"
>
返回
</div>
<div
class=
"btn btn_primary h32"
>
保存
</div>
<div
class=
"btn btn_primary h32"
>
保存
</div>
</div>
</div>
</
div
>
</
el-form
>
</el-dialog>
</el-dialog>
</el-card>
</el-card>
</div>
</div>
...
...
dsk-operate-ui/src/views/project/projectList/component/xgqy.vue
View file @
8c671ef8
...
@@ -104,7 +104,7 @@
...
@@ -104,7 +104,7 @@
<img
src=
"@/assets/images/economies/icon.png"
>
<img
src=
"@/assets/images/economies/icon.png"
>
<span>
新建相关企业-{{types==1?"业主单位":""}}{{types==2?"合作伙伴":""}}{{types==3?"竞争对手":""}}
</span>
<span>
新建相关企业-{{types==1?"业主单位":""}}{{types==2?"合作伙伴":""}}{{types==3?"竞争对手":""}}
</span>
</div>
</div>
<
div
class=
"popform i
"
>
<
el-form
class=
"popform i"
label-width=
"85px
"
>
<div
class=
"row"
>
<div
class=
"row"
>
<span
class=
"left"
><i>
*
</i>
企业名称:
</span>
<span
class=
"left"
><i>
*
</i>
企业名称:
</span>
<el-input
type=
"text"
placeholder=
"请输入"
></el-input>
<el-input
type=
"text"
placeholder=
"请输入"
></el-input>
...
@@ -145,7 +145,7 @@
...
@@ -145,7 +145,7 @@
<div
class=
"btn btn_cancel h32"
@
click=
"cancel"
>
返回
</div>
<div
class=
"btn btn_cancel h32"
@
click=
"cancel"
>
返回
</div>
<div
class=
"btn btn_primary h32"
>
添加
</div>
<div
class=
"btn btn_primary h32"
>
添加
</div>
</div>
</div>
</
div
>
</
el-form
>
</el-dialog>
</el-dialog>
</el-card>
</el-card>
</div>
</div>
...
...
dsk-operate-ui/src/views/project/projectList/index.vue
View file @
8c671ef8
...
@@ -91,7 +91,7 @@
...
@@ -91,7 +91,7 @@
<img
src=
"@/assets/images/economies/icon.png"
>
<img
src=
"@/assets/images/economies/icon.png"
>
<span>
新建商机
</span>
<span>
新建商机
</span>
</div>
</div>
<
div
class=
"popform i
"
>
<
el-form
class=
"popform i"
label-width=
"85px
"
>
<div
class=
"row"
>
<div
class=
"row"
>
<span
class=
"left"
><i>
*
</i>
项目名称:
</span>
<span
class=
"left"
><i>
*
</i>
项目名称:
</span>
<el-input
type=
"text"
placeholder=
"请输入"
></el-input>
<el-input
type=
"text"
placeholder=
"请输入"
></el-input>
...
@@ -137,7 +137,7 @@
...
@@ -137,7 +137,7 @@
<div
class=
"btn btn_cancel h32"
@
click=
"cancel"
>
取消
</div>
<div
class=
"btn btn_cancel h32"
@
click=
"cancel"
>
取消
</div>
<div
class=
"btn btn_primary h32"
>
新建商机
</div>
<div
class=
"btn btn_primary h32"
>
新建商机
</div>
</div>
</div>
</
div
>
</
el-form
>
</el-dialog>
</el-dialog>
</el-card>
</el-card>
</div>
</div>
...
...
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