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
a549fdd9
Commit
a549fdd9
authored
Aug 02, 2023
by
huangjie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
联系人
parent
27d03bfd
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
457 additions
and
342 deletions
+457
-342
project.js
dsk-operate-ui/src/api/project/project.js
+15
-4
Navbar.vue
dsk-operate-ui/src/layout/components/Navbar.vue
+1
-1
index.vue
dsk-operate-ui/src/layout/components/TagsView/index.vue
+3
-3
index.vue
...rate-ui/src/views/detail/party-a/decisionMaking/index.vue
+301
-296
lxr.vue
...perate-ui/src/views/project/projectList/component/lxr.vue
+136
-37
detail.vue
dsk-operate-ui/src/views/project/projectList/detail.vue
+1
-1
No files found.
dsk-operate-ui/src/api/project/project.js
View file @
a549fdd9
...
...
@@ -65,7 +65,8 @@ export function removeLabel(param) {
//查询项目联系人
export
function
getLXR
(
param
)
{
return
request
({
url
:
'/business/contacts/list'
,
// url: '/business/contacts/list',
url
:
'/contact/info/list'
,
method
:
'GET'
,
params
:
param
})
...
...
@@ -73,8 +74,9 @@ export function getLXR(param) {
//修改项目联系人
export
function
editLXR
(
param
)
{
return
request
({
url
:
'/business/contacts/edit'
,
method
:
'POST'
,
// url: '/business/contacts/edit',
url
:
'/contact/info'
,
method
:
'PUT'
,
data
:
param
})
}
...
...
@@ -82,12 +84,21 @@ export function editLXR(param) {
//新增项目联系人
export
function
addLXR
(
param
)
{
return
request
({
url
:
'/business/contacts/add'
,
// url: '/business/contacts/add',
url
:
'/contact/info'
,
method
:
'POST'
,
data
:
param
})
}
//删除项目联系人
export
function
delLXR
(
param
)
{
return
request
({
url
:
'/contact/info/'
+
param
,
method
:
'DELETE'
,
})
}
//跟进记录
export
function
getGJJL
(
param
)
{
return
request
({
...
...
dsk-operate-ui/src/layout/components/Navbar.vue
View file @
a549fdd9
...
...
@@ -11,7 +11,7 @@
<div
class=
"flex-box avatar-wrapper"
>
<img
v-if=
"avatar"
class=
"pic-avatar"
:src=
"avatar"
>
<span
v-else
class=
"user-avatar"
>
{{
name
&&
name
.
slice
(
0
,
1
).
toUpperCase
()
}}
</span>
{{
name
}}
{{
name
.
length
>
10
?
name
.
slice
(
0
,
10
)
+
'...'
:
name
}}
</div>
<el-dropdown-menu
slot=
"dropdown"
class=
"user-dropdown"
>
<router-link
to=
"/user/profile"
>
...
...
dsk-operate-ui/src/layout/components/TagsView/index.vue
View file @
a549fdd9
...
...
@@ -384,14 +384,14 @@ export default {
}
}
.alltags
{
position
:
absolute
;
position
:
fixed
;
align-items
:
center
;
border-radius
:
9px
;
height
:
17px
;
justify-content
:
center
;
width
:
36px
;
right
:
-13
0px
;
bottom
:
0
px
;
right
:
1
0px
;
top
:
37
px
;
cursor
:
pointer
;
text-align
:
center
;
&
:hover
{
...
...
dsk-operate-ui/src/views/detail/party-a/decisionMaking/index.vue
View file @
a549fdd9
This diff is collapsed.
Click to expand it.
dsk-operate-ui/src/views/project/projectList/component/lxr.vue
View file @
a549fdd9
This diff is collapsed.
Click to expand it.
dsk-operate-ui/src/views/project/projectList/detail.vue
View file @
a549fdd9
...
...
@@ -117,7 +117,7 @@
<!--建设内容-->
<jsnr
v-if=
"thistag == 'jsnr'"
:key=
"keys1"
:isDisabled=
'isDisabled'
@
Refrehmoney=
"getXMSL"
:detailId=
"detailId"
></jsnr>
<!--联系人-->
<lxr
v-if=
"thistag == 'lxr'"
:isDisabled=
'isDisabled'
:detailId=
"detailId"
></lxr>
<lxr
v-if=
"thistag == 'lxr'"
:isDisabled=
'isDisabled'
:detailId=
"detailId"
listtype=
"project"
></lxr>
<!--跟进记录-->
<gjjl
v-if=
"thistag == 'gjjl'"
:isDisabled=
'isDisabled'
types=
"gjjl"
:detailId=
"detailId"
></gjjl>
<!--工作待办-->
...
...
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