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
c747a73c
Commit
c747a73c
authored
Jun 20, 2023
by
远方不远
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hy
parent
96cce16c
Changes
11
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
56 additions
and
34 deletions
+56
-34
index.vue
...te-ui/src/views/enterpriseData/components/Owner/index.vue
+2
-5
index.vue
...iews/enterpriseData/components/SearchEnterprise/index.vue
+2
-2
details.vue
dsk-operate-ui/src/views/radar/BidRecord/details.vue
+4
-4
details.vue
dsk-operate-ui/src/views/radar/Land/details.vue
+4
-1
details.vue
dsk-operate-ui/src/views/radar/Tender/details.vue
+9
-3
details.vue
dsk-operate-ui/src/views/radar/bxprozbgg/details.vue
+12
-2
index.vue
dsk-operate-ui/src/views/radar/components/Bidding/index.vue
+2
-1
index.vue
dsk-operate-ui/src/views/radar/components/Land/index.vue
+2
-2
index.vue
dsk-operate-ui/src/views/radar/components/Tender/index.vue
+5
-2
index.vue
...erate-ui/src/views/radar/components/debtProject/index.vue
+10
-10
index.vue
dsk-operate-ui/src/views/radar/index.vue
+4
-2
No files found.
dsk-operate-ui/src/views/enterpriseData/components/Owner/index.vue
View file @
c747a73c
...
@@ -168,7 +168,6 @@
...
@@ -168,7 +168,6 @@
</el-table-column>
</el-table-column>
<el-table-column
label=
"区域"
width=
"120"
>
<el-table-column
label=
"区域"
width=
"120"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
<router-link
:to=
"'/radar/bxprozbgg/details/'+ 1"
tag=
"a"
class=
"list-titel-a"
>
{{
scope
.
row
.
province
}}
{{
scope
.
row
.
province
}}
<template
v-if=
"scope.row.city"
>
<template
v-if=
"scope.row.city"
>
-
-
...
@@ -178,8 +177,6 @@
...
@@ -178,8 +177,6 @@
-
-
</
template
>
</
template
>
{{scope.row.area}}
{{scope.row.area}}
</router-link>
</template>
</template>
</el-table-column>
</el-table-column>
...
@@ -591,7 +588,7 @@ export default {
...
@@ -591,7 +588,7 @@ export default {
},
},
mounted
()
{
mounted
()
{
this
.
addressListfn
();
this
.
init
();
},
},
methods
:
{
methods
:
{
domicileChange
()
{
domicileChange
()
{
...
@@ -675,7 +672,7 @@ export default {
...
@@ -675,7 +672,7 @@ export default {
},
},
init
(){
init
(){
//
this.search();
this
.
search
();
this
.
addressListfn
();
this
.
addressListfn
();
},
},
...
...
dsk-operate-ui/src/views/enterpriseData/components/SearchEnterprise/index.vue
View file @
c747a73c
...
@@ -2764,11 +2764,11 @@
...
@@ -2764,11 +2764,11 @@
},
},
toEnterprise
(
id
,
html
,
type
)
{
toEnterprise
(
id
,
html
,
type
)
{
return
'/
enterprise
/'
+
encodeStr
(
id
)
+
html
+
'/'
+
(
type
?
'?flag=true&type='
+
type
:
''
);
return
'/
company
/'
+
encodeStr
(
id
)
+
html
+
'/'
+
(
type
?
'?flag=true&type='
+
type
:
''
);
},
},
toEnterpriseDetail
(
id
)
{
toEnterpriseDetail
(
id
)
{
return
'/
enterprise
/'
+
encodeStr
(
id
)
+
'/?index=true'
;
return
'/
company
/'
+
encodeStr
(
id
)
+
'/?index=true'
;
},
},
labelsWidth
(
e
,
t
=
0
){
labelsWidth
(
e
,
t
=
0
){
...
...
dsk-operate-ui/src/views/radar/BidRecord/details.vue
View file @
c747a73c
...
@@ -56,7 +56,7 @@
...
@@ -56,7 +56,7 @@
<el-table-column
label=
"项目名称"
>
<el-table-column
label=
"项目名称"
>
<
template
slot-scope=
"scope"
>
<
template
slot-scope=
"scope"
>
{{
scope
.
row
.
name
||
'--'
}}
<router-link
v-if=
"scope.row.companyId"
:to=
"'/company/' + encodeStr(scope.row.companyId) + '/?index=true'"
tag=
"a"
class=
"list-titel-a blue"
v-html=
"scope.row.name"
></router-link>
</
template
>
</
template
>
</el-table-column>
</el-table-column>
...
@@ -100,14 +100,14 @@
...
@@ -100,14 +100,14 @@
<
script
>
<
script
>
import
"@/assets/styles/public.css"
;
import
"@/assets/styles/public.css"
;
import
{
import
{
encodeStr
}
from
"@/assets/js/common.js"
encodeStr
}
from
"@/assets/js/common.js"
import
api
from
'@/api/radar/radar.js'
;
import
api
from
'@/api/radar/radar.js'
;
export
default
{
export
default
{
name
:
'BidRecordDetails'
,
name
:
'BidRecordDetails'
,
data
()
{
data
()
{
return
{
return
{
encodeStr
,
id
:
''
,
id
:
''
,
tableData
:
[],
tableData
:
[],
"pageNum"
:
1
,
"pageNum"
:
1
,
...
...
dsk-operate-ui/src/views/radar/Land/details.vue
View file @
c747a73c
...
@@ -10,7 +10,8 @@
...
@@ -10,7 +10,8 @@
<div
class=
"list-content"
>
<div
class=
"list-content"
>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
>
<span>
受让人:
</span>
<span>
受让人:
</span>
<span
class=
"blue"
>
{{
textList
.
company
||
"--"
}}
</span>
<router-link
v-if=
"textList.company"
:to=
"'/company/' + encodeStr(textList.id) + '/?index=true'"
tag=
"a"
class=
"list-titel-a blue"
v-html=
"textList.company"
></router-link>
<span
v-else
class=
"blue"
>
{{
textList
.
company
||
"--"
}}
</span>
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
>
<span>
成交金额:
</span>
<span>
成交金额:
</span>
...
@@ -192,12 +193,14 @@
...
@@ -192,12 +193,14 @@
<
script
>
<
script
>
import
api
from
'@/api/radar/radar.js'
;
import
api
from
'@/api/radar/radar.js'
;
import
{
encodeStr
}
from
"@/assets/js/common.js"
export
default
{
export
default
{
name
:
'LandDetails'
,
name
:
'LandDetails'
,
data
()
{
data
()
{
return
{
return
{
id
:
''
,
id
:
''
,
encodeStr
,
textList
:
{}
textList
:
{}
}
}
...
...
dsk-operate-ui/src/views/radar/Tender/details.vue
View file @
c747a73c
...
@@ -25,13 +25,17 @@
...
@@ -25,13 +25,17 @@
</div>
</div>
<div
class=
"list-content"
>
<div
class=
"list-content"
>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
v-if=
"textList.tenderee"
>
<span>
招采单位:
</span>
<span>
招采单位:
</span>
<span
class=
"blue"
>
{{textList.tenderee||'--'}}
</span>
<router-link
v-if=
"textList.projectUnitId"
:to=
"'/company/' + encodeStr(textList.projectUnitId) + '/?index=true'"
tag=
"a"
class=
"list-titel-a blue"
v-html=
"textList.tenderee"
></router-link>
<span
v-else
class=
"blue"
>
{{textList.tenderee||'--'}}
</span>
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
v-if=
"textList.agency"
>
<span>
代理单位:
</span>
<span>
代理单位:
</span>
<span
class=
"blue"
>
{{textList.agency||'--'}}
</span>
<span
class=
"blue"
>
{{textList.agency||'--'}}
</span>
<router-link
v-if=
"textList.agencyId"
:to=
"'/company/' + encodeStr(textList.agencyId) + '/?index=true'"
tag=
"a"
class=
"list-titel-a blue"
v-html=
"textList.agency"
></router-link>
<span
v-else
class=
"blue"
>
{{textList.agency||'--'}}
</span>
</p>
</p>
</div>
</div>
...
@@ -89,11 +93,13 @@
...
@@ -89,11 +93,13 @@
<
script
>
<
script
>
import
"@/assets/styles/public.css"
;
import
"@/assets/styles/public.css"
;
import
api
from
'@/api/radar/radar.js'
;
import
api
from
'@/api/radar/radar.js'
;
import
{
encodeStr
}
from
"@/assets/js/common.js"
export
default
{
export
default
{
name
:
'TenderDetails'
,
name
:
'TenderDetails'
,
data
()
{
data
()
{
return
{
return
{
encodeStr
,
id
:
''
,
id
:
''
,
textList
:{},
textList
:{},
showimg
:
true
showimg
:
true
...
...
dsk-operate-ui/src/views/radar/bxprozbgg/details.vue
View file @
c747a73c
...
@@ -173,10 +173,13 @@
...
@@ -173,10 +173,13 @@
<div
class=
"main3-box"
>
<div
class=
"main3-box"
>
<p>
<p>
<label
class=
"label"
>
招标人
</label>
<label
class=
"label"
>
招标人
</label>
<span
class=
"color2"
>
{{textList.tenderee||'--'}}
</span>
<router-link
v-if=
"textList.tendereeId"
:to=
"'/company/' + encodeStr(textList.tendereeId) + '/?index=true'"
tag=
"a"
class=
"list-titel-a color2"
v-html=
"textList.tenderee"
></router-link>
<span
v-else
class=
"color2"
>
{{textList.tenderee||'--'}}
</span>
<label
class=
"label"
>
代理机构
</label>
<label
class=
"label"
>
代理机构
</label>
<span
class=
"color2"
>
{{textList.agency||'--'}}
</span>
<router-link
v-if=
"textList.agencyId"
:to=
"'/company/' + encodeStr(textList.agencyId) + '/?index=true'"
tag=
"a"
class=
"list-titel-a color2"
v-html=
"textList.agency"
></router-link>
<span
v-else
class=
"color2"
>
{{textList.agency||'--'}}
</span>
</p>
</p>
<p>
<p>
<label
class=
"label"
>
招标人联系方式
</label>
<label
class=
"label"
>
招标人联系方式
</label>
<span>
{{textList.tendereeTel||'--'}}
</span>
<span>
{{textList.tendereeTel||'--'}}
</span>
...
@@ -199,11 +202,13 @@
...
@@ -199,11 +202,13 @@
<
script
>
<
script
>
import
"@/assets/styles/public.css"
;
import
"@/assets/styles/public.css"
;
import
api
from
'@/api/radar/radar.js'
;
import
api
from
'@/api/radar/radar.js'
;
import
{
encodeStr
}
from
"@/assets/js/common.js"
export
default
{
export
default
{
name
:
'bxprozbggDetails'
,
name
:
'bxprozbggDetails'
,
data
()
{
data
()
{
return
{
return
{
encodeStr
,
id
:
''
,
id
:
''
,
textList
:
{},
textList
:
{},
showimg
:
true
,
showimg
:
true
,
...
@@ -512,6 +517,11 @@
...
@@ -512,6 +517,11 @@
.color2
{
.color2
{
color
:
#0081FF
;
color
:
#0081FF
;
cursor
:
pointer
;
cursor
:
pointer
;
display
:
flex
;
align-items
:
center
;
width
:
40%
;
padding
:
12px
;
font-size
:
12px
;
}
}
}
}
...
...
dsk-operate-ui/src/views/radar/components/Bidding/index.vue
View file @
c747a73c
...
@@ -164,7 +164,8 @@
...
@@ -164,7 +164,8 @@
<div
class=
"list-content"
>
<div
class=
"list-content"
>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
>
<span>
招采单位:
</span>
<span>
招采单位:
</span>
<span
class=
"blue"
>
{{
item
.
tenderee
||
'--'
}}
</span>
<router-link
v-if=
"item.tendereeId"
:to=
"'/company/' + encodeStr(item.tendereeId) + '/?index=true'"
tag=
"a"
class=
"list-titel-a blue"
v-html=
"item.tenderee"
></router-link>
<span
v-else
>
{{
item
.
tenderee
||
'--'
}}
</span>
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
>
<span>
合同预估金额(万元):
</span>
<span>
合同预估金额(万元):
</span>
...
...
dsk-operate-ui/src/views/radar/components/Land/index.vue
View file @
c747a73c
...
@@ -234,7 +234,7 @@
...
@@ -234,7 +234,7 @@
<div
class=
"list-content"
>
<div
class=
"list-content"
>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
>
<span>
受让人:
</span>
<span>
受让人:
</span>
<
span
class=
"blue"
>
{{
item
.
companyName
||
'--'
}}
</span
>
<
router-link
:to=
"'/company/' + encodeStr(item.id) + '/?index=true'"
tag=
"a"
class=
"list-titel-a blue"
v-html=
"item.companyName"
></router-link
>
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
>
<span>
成交金额:
</span>
<span>
成交金额:
</span>
...
@@ -1127,7 +1127,7 @@
...
@@ -1127,7 +1127,7 @@
}
}
.bottomlist-list
:hover
{
.bottomlist-list
:hover
{
background
:
#F6F9FC
;
background
:
#F6F9FC
;
cursor
:
pointer
;
}
}
.pagination
{
.pagination
{
padding
:
14px
;
padding
:
14px
;
...
...
dsk-operate-ui/src/views/radar/components/Tender/index.vue
View file @
c747a73c
...
@@ -207,11 +207,13 @@
...
@@ -207,11 +207,13 @@
<div
class=
"list-content"
v-if=
"item.companyName||item.agency"
>
<div
class=
"list-content"
v-if=
"item.companyName||item.agency"
>
<p
class=
"list-content-text"
v-if=
"item.companyName"
>
<p
class=
"list-content-text"
v-if=
"item.companyName"
>
<span>
招采单位:
</span>
<span>
招采单位:
</span>
<span
class=
"blue"
>
{{
item
.
companyName
||
'--'
}}
</span>
<router-link
v-if=
"item.jskEid"
:to=
"'/company/' + encodeStr(item.jskEid) + '/?index=true'"
tag=
"a"
class=
"list-titel-a blue"
v-html=
"item.companyName"
></router-link>
<span
v-else
class=
"blue"
>
{{
item
.
companyName
||
'--'
}}
</span>
</p>
</p>
<p
class=
"list-content-text"
v-if=
"item.agency"
>
<p
class=
"list-content-text"
v-if=
"item.agency"
>
<span>
代理单位:
</span>
<span>
代理单位:
</span>
<span
class=
"blue"
>
{{
item
.
agency
||
'--'
}}
</span>
<router-link
v-if=
"item.agencyId"
:to=
"'/company/' + encodeStr(item.agencyId) + '/?index=true'"
tag=
"a"
class=
"list-titel-a blue"
v-html=
"item.agency"
></router-link>
<span
v-else
class=
"blue"
>
{{
item
.
agency
||
'--'
}}
</span>
</p>
</p>
</div>
</div>
...
@@ -275,6 +277,7 @@
...
@@ -275,6 +277,7 @@
data
()
{
data
()
{
return
{
return
{
//有无联系方式
//有无联系方式
encodeStr
,
phonePointType
:
[{
phonePointType
:
[{
value
:
''
,
value
:
''
,
label
:
'不限'
label
:
'不限'
...
...
dsk-operate-ui/src/views/radar/components/debtProject/index.vue
View file @
c747a73c
...
@@ -103,20 +103,20 @@
...
@@ -103,20 +103,20 @@
<router-link
:to=
"'/radar/debtProject/details/'+item.uuid "
tag=
"a"
class=
"list-titel-a"
v-html=
"item.projectName"
></router-link>
<router-link
:to=
"'/radar/debtProject/details/'+item.uuid "
tag=
"a"
class=
"list-titel-a"
v-html=
"item.projectName"
></router-link>
</p>
</p>
<div
class=
"content-label"
>
<div
class=
"content-label"
v-if=
"item.domicile"
>
<span
class=
"list-label"
>
{{item.domicile}}
</span>
<span
class=
"list-label"
>
{{item.domicile}}
</span>
</div>
</div>
<div
class=
"list-content"
>
<div
class=
"list-content"
>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
v-if=
"item.projectType"
>
<span>
项目类型:
</span>
<span>
项目类型:
</span>
<span>
{{item.projectType}}
</span>
<span>
{{item.projectType}}
</span>
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
v-if=
"item.projectTotalInvestment"
>
<span>
项目总投资(亿):
</span>
<span>
项目总投资(亿):
</span>
<span>
{{item.projectTotalInvestment}}
</span>
<span>
{{item.projectTotalInvestment}}
</span>
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
v-if=
"item.specialCapital"
>
<span>
项目资本金(亿):
</span>
<span>
项目资本金(亿):
</span>
<span>
{{item.projectCapital}}
</span>
<span>
{{item.projectCapital}}
</span>
</p>
</p>
...
@@ -126,17 +126,17 @@
...
@@ -126,17 +126,17 @@
</p>
</p>
</div>
</div>
<div
class=
"list-content"
>
<div
class=
"list-content"
>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
v-if=
"item.specialCapital"
>
<span>
项目主体:
</span>
<span>
项目主体:
</span>
<span
class=
"blue"
>
{{item.projectEntity}}
</span>
<span
>
{{item.projectEntity}}
</span>
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
v-if=
"item.chargeDepartment"
>
<span>
主管部门:
</span>
<span>
主管部门:
</span>
<span
class=
"blue"
>
{{item.chargeDepartment}}
</span>
<span
>
{{item.chargeDepartment}}
</span>
</p>
</p>
<p
class=
"list-content-text"
>
<p
class=
"list-content-text"
v-if=
"item.piu"
>
<span>
实施单位:
</span>
<span>
实施单位:
</span>
<span
class=
"blue"
>
{{item.piu}}
</span>
<span
>
{{item.piu}}
</span>
</p>
</p>
</div>
</div>
</li>
</li>
...
...
dsk-operate-ui/src/views/radar/index.vue
View file @
c747a73c
...
@@ -43,7 +43,7 @@
...
@@ -43,7 +43,7 @@
import
"@/assets/styles/public.css"
;
import
"@/assets/styles/public.css"
;
export
default
{
export
default
{
name
:
'
r
adar'
,
name
:
'
R
adar'
,
components
:
{
debtProject
,
Land
,
Establishment
,
bxprozbgg
,
Tender
,
BidRecord
,
Bidding
},
components
:
{
debtProject
,
Land
,
Establishment
,
bxprozbgg
,
Tender
,
BidRecord
,
Bidding
},
data
()
{
data
()
{
return
{
return
{
...
@@ -95,7 +95,9 @@
...
@@ -95,7 +95,9 @@
personnelHerf
:
'debtProject'
personnelHerf
:
'debtProject'
}
}
},
},
created
()
{},
created
()
{
// console.log(this.$route.name)
},
methods
:
{
methods
:
{
personnelListbtn
(
index
)
{
personnelListbtn
(
index
)
{
for
(
var
i
=
0
;
i
<
this
.
personnelList
.
length
;
i
++
)
{
for
(
var
i
=
0
;
i
<
this
.
personnelList
.
length
;
i
++
)
{
...
...
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