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
9501dff7
Commit
9501dff7
authored
Jun 28, 2023
by
lixiaolei
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
92b58935
1c4f2361
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
17 deletions
+22
-17
index.vue
dsk-operate-ui/src/views/detail/party-a/cooperate/index.vue
+9
-6
index.vue
dsk-operate-ui/src/views/detail/party-a/index.vue
+13
-11
No files found.
dsk-operate-ui/src/views/detail/party-a/cooperate/index.vue
View file @
9501dff7
...
...
@@ -76,9 +76,9 @@
</el-form-item>
</div>
<div
class=
"elcol"
>
<el-form-item
label=
"项目类
型:"
prop=
"projectType
"
>
<el-select
v-model=
"addParam.project
Type"
style=
"width: 175px"
class=
"form-content-width"
placeholder=
"请选择项目类型
"
>
<el-option
v-for=
"(item, index) in project
Type
"
:key=
"index"
:label=
"item.dictLabel"
:value=
"item.dictValue"
/>
<el-form-item
label=
"项目类
别:"
prop=
"projectCategory
"
>
<el-select
v-model=
"addParam.project
Category"
style=
"width: 175px"
class=
"form-content-width"
placeholder=
"请选择项目类别
"
>
<el-option
v-for=
"(item, index) in project
Category
"
:key=
"index"
:label=
"item.dictLabel"
:value=
"item.dictValue"
/>
</el-select>
</el-form-item>
</div>
...
...
@@ -86,9 +86,9 @@
<div
class=
"erow"
>
<div
class=
"elcol"
>
<el-form-item
label=
"项目
类别:"
prop=
"projectCategory
"
>
<el-select
v-model=
"addParam.
projectCategory"
style=
"width: 175px"
class=
"form-content-width"
placeholder=
"请选择项目类别
"
>
<el-option
v-for=
"(item, index) in
projectCategory
"
:key=
"index"
:label=
"item.dictLabel"
:value=
"item.dictValue"
/>
<el-form-item
label=
"项目
状态:"
prop=
"status
"
>
<el-select
v-model=
"addParam.
status"
style=
"width: 175px"
class=
"form-content-width"
placeholder=
"请选择项目状态
"
>
<el-option
v-for=
"(item, index) in
status
"
:key=
"index"
:label=
"item.dictLabel"
:value=
"item.dictValue"
/>
</el-select>
</el-form-item>
</div>
...
...
@@ -188,6 +188,7 @@ export default {
projectStage
:
''
,
projectCategory
:
''
,
investmentAmount
:
''
,
status
:
''
,
isPrivate
:
0
,
customerId
:
''
,
},
...
...
@@ -202,6 +203,7 @@ export default {
projectStage
:[],
//项目阶段
projectType
:[],
//项目类型
projectCategory
:[],
//项目类别
status
:[],
//项目状态
isPrivate
:[
{
value
:
0
,
...
...
@@ -342,6 +344,7 @@ export default {
value
:
res
.
data
[
i
].
dictValue
})
}
this
.
status
=
res
.
data
}
})
},
...
...
dsk-operate-ui/src/views/detail/party-a/index.vue
View file @
9501dff7
...
...
@@ -219,18 +219,20 @@ export default {
},
// 判断客户是否关联显示修改
association
(
id
){
customerInfo
(
id
).
then
(
res
=>
{
if
(
res
.
code
==
200
){
if
(
res
.
data
.
companyId
==
this
.
companyId
&&
res
.
data
.
userId
==
this
.
$store
.
state
.
user
.
userId
){
this
.
customerInfo
=
res
.
data
this
.
customerId
=
res
.
data
.
customerId
}
else
{
this
.
currentPath
.
pathName
=
'overview'
if
(
id
)
{
customerInfo
(
id
).
then
(
res
=>
{
if
(
res
.
code
==
200
)
{
if
(
res
.
data
.
companyId
==
this
.
companyId
&&
res
.
data
.
userId
==
this
.
$store
.
state
.
user
.
userId
)
{
this
.
customerInfo
=
res
.
data
this
.
customerId
=
res
.
data
.
customerId
}
else
{
this
.
currentPath
.
pathName
=
'overview'
}
}
}
}).
catch
(
err
=>
{
this
.
currentPath
.
pathName
=
'overview'
}
)
}
).
catch
(
err
=>
{
this
.
currentPath
.
pathName
=
'overview'
})
}
}
}
...
...
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