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
98df8bd7
Commit
98df8bd7
authored
Jul 13, 2023
by
yht15023815643
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化甲方详情
parent
d6946137
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
37 additions
and
6 deletions
+37
-6
opport.js
dsk-operate-ui/src/api/detail/party-a/opport.js
+8
-0
index.js
dsk-operate-ui/src/router/index.js
+1
-1
Sidebar.vue
...operate-ui/src/views/detail/party-a/component/Sidebar.vue
+1
-1
biddingplan.vue
...perate-ui/src/views/detail/party-a/opport/biddingplan.vue
+12
-1
relationship.vue
.../views/detail/party-a/overview/component/relationship.vue
+13
-1
index.vue
dsk-operate-ui/src/views/radar/index.vue
+2
-2
No files found.
dsk-operate-ui/src/api/detail/party-a/opport.js
View file @
98df8bd7
...
@@ -116,3 +116,11 @@ export function bidPlanPage(data) {
...
@@ -116,3 +116,11 @@ export function bidPlanPage(data) {
data
:
data
data
:
data
})
})
}
}
// 招标计划项目类型
export
function
bidPlanProjectType
(
data
)
{
return
request
({
url
:
'/enterpriseProject/bidPlanProjectType'
,
method
:
'post'
,
data
:
data
})
}
dsk-operate-ui/src/router/index.js
View file @
98df8bd7
...
@@ -169,7 +169,7 @@ export const constantRoutes = [
...
@@ -169,7 +169,7 @@ export const constantRoutes = [
path
:
'/radar/debtProject/details/:id'
,
path
:
'/radar/debtProject/details/:id'
,
component
:
()
=>
import
(
'@/views/radar/debtProject/details'
),
component
:
()
=>
import
(
'@/views/radar/debtProject/details'
),
name
:
'debtProjectDetails'
,
name
:
'debtProjectDetails'
,
meta
:
{
title
:
'
企业专项债
详情'
,
icon
:
'radar'
}
meta
:
{
title
:
'
政府专项债项目
详情'
,
icon
:
'radar'
}
}
}
]
]
},
},
...
...
dsk-operate-ui/src/views/detail/party-a/component/Sidebar.vue
View file @
98df8bd7
...
@@ -202,7 +202,7 @@ export default {
...
@@ -202,7 +202,7 @@ export default {
this
.
sideRoute
[
2
].
children
[
4
].
disabled
=
true
;
this
.
sideRoute
[
2
].
children
[
4
].
disabled
=
true
;
}
}
break
;
break
;
case
'pro
Cou
nt'
:
case
'pro
BiddingAnnounceme
nt'
:
if
(
arr
[
i
][
j
]
<
1
){
if
(
arr
[
i
][
j
]
<
1
){
this
.
sideRoute
[
2
].
children
[
5
].
disabled
=
true
;
this
.
sideRoute
[
2
].
children
[
5
].
disabled
=
true
;
}
}
...
...
dsk-operate-ui/src/views/detail/party-a/opport/biddingplan.vue
View file @
98df8bd7
...
@@ -34,7 +34,7 @@
...
@@ -34,7 +34,7 @@
<
script
>
<
script
>
import
mixin
from
'../mixins/mixin'
import
mixin
from
'../mixins/mixin'
import
{
bidPlanPage
}
from
'@/api/detail/party-a/opport'
import
{
bidPlanPage
,
bidPlanProjectType
}
from
'@/api/detail/party-a/opport'
export
default
{
export
default
{
name
:
'Biddingplan'
,
name
:
'Biddingplan'
,
props
:
[
'companyId'
],
props
:
[
'companyId'
],
...
@@ -74,8 +74,19 @@ export default {
...
@@ -74,8 +74,19 @@ export default {
}
,
}
,
created
()
{
created
()
{
this
.
handleQuery
()
this
.
handleQuery
()
this
.
handleOption
()
}
,
}
,
methods
:
{
methods
:
{
async
handleOption
(){
let
res
=
await
bidPlanProjectType
({
cid
:
this
.
companyId
}
)
if
(
res
.
code
==
200
){
let
buildingProjectType
=
res
.
data
.
map
(
item
=>
{
let
it
=
{
name
:
item
.
buildingProjectType
+
'('
+
item
.
count
+
')'
,
value
:
item
.
buildingProjectType
}
return
it
}
)
this
.
setFormData
(
'buildingProjectType'
,
buildingProjectType
)
}
}
,
async
handleQuery
(
params
)
{
async
handleQuery
(
params
)
{
this
.
tableLoading
=
true
this
.
tableLoading
=
true
let
param
=
params
?
params
:
this
.
queryParams
let
param
=
params
?
params
:
this
.
queryParams
...
...
dsk-operate-ui/src/views/detail/party-a/overview/component/relationship.vue
View file @
98df8bd7
...
@@ -87,7 +87,19 @@
...
@@ -87,7 +87,19 @@
</
template
>
</
template
>
</el-table-column>
</el-table-column>
<el-table-column
prop=
"operName"
label=
"负责人"
></el-table-column>
<el-table-column
prop=
"operName"
label=
"负责人"
></el-table-column>
<el-table-column
prop=
"provinceCode"
label=
"地区"
></el-table-column>
<el-table-column
label=
"地区"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
provinceName
}}
<template
v-if=
"scope.row.cityName"
>
-
</
template
>
{{scope.row.cityName}}
<
template
v-if=
"scope.row.districtName"
>
-
</
template
>
{{scope.row.districtName}}
</template>
</el-table-column>
<el-table-column
prop=
"startDate"
label=
"成立日期"
></el-table-column>
<el-table-column
prop=
"startDate"
label=
"成立日期"
></el-table-column>
</el-table>
</el-table>
<div
class=
"rela-more"
v-show=
"activeName=='second'&& shipTotal>shipParams.pageSize"
><span
class=
"a-link"
@
click=
"handlePath"
>
查看更多数据 >
</span></div>
<div
class=
"rela-more"
v-show=
"activeName=='second'&& shipTotal>shipParams.pageSize"
><span
class=
"a-link"
@
click=
"handlePath"
>
查看更多数据 >
</span></div>
...
...
dsk-operate-ui/src/views/radar/index.vue
View file @
98df8bd7
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
</div>
</div>
<p
class=
"solid"
></p>
<p
class=
"solid"
></p>
</div>
</div>
<!--
企业
专项债 -->
<!--
政府
专项债 -->
<debtProject
v-if=
"personnelHerf=='debtProject'"
/>
<debtProject
v-if=
"personnelHerf=='debtProject'"
/>
<!-- 土地交易 -->
<!-- 土地交易 -->
<Land
v-if=
"personnelHerf=='Land'"
/>
<Land
v-if=
"personnelHerf=='Land'"
/>
...
@@ -52,7 +52,7 @@
...
@@ -52,7 +52,7 @@
personnelList
:
[{
personnelList
:
[{
key
:
'debtProject'
,
key
:
'debtProject'
,
status
:
true
,
status
:
true
,
value
:
'
企业
专项债项目'
,
value
:
'
政府
专项债项目'
,
},
},
{
{
...
...
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