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
0e041fb4
Commit
0e041fb4
authored
May 31, 2023
by
远方不远
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hy
parent
84475f50
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
3332 additions
and
3 deletions
+3332
-3
bxporre.png
dsk-operate-ui/src/assets/images/bxpro/bxporre.png
+0
-0
tipf.png
dsk-operate-ui/src/assets/images/bxpro/tipf.png
+0
-0
index.js
dsk-operate-ui/src/router/index.js
+14
-0
details.vue
dsk-operate-ui/src/views/radar/Establishment/details.vue
+558
-0
index.vue
...ate-ui/src/views/radar/components/Establishment/index.vue
+1
-1
index.vue
...operate-ui/src/views/radar/components/bxprozbgg/index.vue
+2754
-0
index.vue
dsk-operate-ui/src/views/radar/index.vue
+5
-2
No files found.
dsk-operate-ui/src/assets/images/bxpro/bxporre.png
0 → 100644
View file @
0e041fb4
212 Bytes
dsk-operate-ui/src/assets/images/bxpro/tipf.png
0 → 100644
View file @
0e041fb4
549 Bytes
dsk-operate-ui/src/router/index.js
View file @
0e041fb4
...
@@ -150,6 +150,20 @@ export const constantRoutes = [
...
@@ -150,6 +150,20 @@ export const constantRoutes = [
meta
:
{
title
:
'土地交易详情'
,
icon
:
'radar'
}
meta
:
{
title
:
'土地交易详情'
,
icon
:
'radar'
}
}
}
]
]
},
{
path
:
'/Establishment'
,
component
:
Layout
,
hidden
:
true
,
redirect
:
'noredirect'
,
children
:
[
{
path
:
'/radar/Establishment/details/:id(
\\
d+)'
,
component
:
()
=>
import
(
'@/views/radar/Establishment/details'
),
name
:
'EstablishmentDetails'
,
meta
:
{
title
:
'拟建项目详情'
,
icon
:
'radar'
}
}
]
}
}
]
]
...
...
dsk-operate-ui/src/views/radar/Establishment/details.vue
0 → 100644
View file @
0e041fb4
This diff is collapsed.
Click to expand it.
dsk-operate-ui/src/views/radar/components/Establishment/index.vue
View file @
0e041fb4
...
@@ -197,7 +197,7 @@
...
@@ -197,7 +197,7 @@
<ul
class=
"bottomlist-content"
>
<ul
class=
"bottomlist-content"
>
<li
class=
"bottomlist-list"
>
<li
class=
"bottomlist-list"
>
<p
class=
"list-titel"
>
<p
class=
"list-titel"
>
<router-link
:to=
"'/radar/
Land
/details/'+ 1"
tag=
"a"
class=
"list-titel-a"
>
绿色节能型压缩机基础件、汽车零配件新建项目 (芜湖旭日机械制造有限公司)
</router-link>
<router-link
:to=
"'/radar/
Establishment
/details/'+ 1"
tag=
"a"
class=
"list-titel-a"
>
绿色节能型压缩机基础件、汽车零配件新建项目 (芜湖旭日机械制造有限公司)
</router-link>
<!--
<div
v-else-if=
"item.projectName"
v-html=
"item.projectName"
></div>
-->
<!--
<div
v-else-if=
"item.projectName"
v-html=
"item.projectName"
></div>
-->
</p>
</p>
<div
class=
"content-label"
>
<div
class=
"content-label"
>
...
...
dsk-operate-ui/src/views/radar/components/bxprozbgg/index.vue
0 → 100644
View file @
0e041fb4
This diff is collapsed.
Click to expand it.
dsk-operate-ui/src/views/radar/index.vue
View file @
0e041fb4
...
@@ -19,6 +19,8 @@
...
@@ -19,6 +19,8 @@
<Land
v-if=
"personnelHerf=='Land'"
/>
<Land
v-if=
"personnelHerf=='Land'"
/>
<!-- 拟建项目 -->
<!-- 拟建项目 -->
<Establishment
v-if=
"personnelHerf=='Establishment'"
/>
<Establishment
v-if=
"personnelHerf=='Establishment'"
/>
<!-- 标讯pro -->
<bxprozbgg
v-if=
"personnelHerf=='bxprozbgg'"
/>
</div>
</div>
...
@@ -27,10 +29,11 @@
...
@@ -27,10 +29,11 @@
import
debtProject
from
"./components/debtProject/index.vue"
;
import
debtProject
from
"./components/debtProject/index.vue"
;
import
Land
from
"./components/Land/index.vue"
;
import
Land
from
"./components/Land/index.vue"
;
import
Establishment
from
"./components/Establishment/index.vue"
;
import
Establishment
from
"./components/Establishment/index.vue"
;
import
bxprozbgg
from
"./components/bxprozbgg/index.vue"
;
import
"@/assets/styles/public.css"
;
import
"@/assets/styles/public.css"
;
export
default
{
export
default
{
name
:
'radar'
,
name
:
'radar'
,
components
:
{
debtProject
,
Land
,
Establishment
},
components
:
{
debtProject
,
Land
,
Establishment
,
bxprozbgg
},
data
()
{
data
()
{
return
{
return
{
// tablist
// tablist
...
@@ -59,7 +62,7 @@
...
@@ -59,7 +62,7 @@
},
},
{
{
key
:
'
KeyPersonnel
'
,
key
:
'
bxprozbgg
'
,
status
:
false
,
status
:
false
,
value
:
'标讯pro'
,
value
:
'标讯pro'
,
...
...
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