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
01c7d6c4
Commit
01c7d6c4
authored
May 24, 2023
by
远方不远
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
hy
parent
12fb1e96
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
372 additions
and
115 deletions
+372
-115
public.scss
dsk-operate-ui/src/assets/styles/public.scss
+114
-0
index.vue
...erate-ui/src/views/radar/components/debtProject/index.vue
+31
-0
index.vue
dsk-operate-ui/src/views/radar/index.vue
+227
-0
index.vue
dsk-operate-ui/src/views/radar/list/index.vue
+0
-23
index.vue
dsk-operate-ui/src/views/radar/opportunity/index.vue
+0
-23
index.vue
dsk-operate-ui/src/views/radar/overview/index.vue
+0
-23
index.vue
dsk-operate-ui/src/views/radar/subscription/index.vue
+0
-23
index.vue
dsk-operate-ui/src/views/radar/trends/index.vue
+0
-23
No files found.
dsk-operate-ui/src/assets/styles/public.scss
0 → 100644
View file @
01c7d6c4
*
{
padding
:
0
;
margin
:
0
;
}
div
,
dl
,
dt
,
dd
,
form
,
h1
,
h2
,
h3
,
h4
,
h5
,
h6
,
img
,
ol
,
ul
,
li
,
table
,
th
,
td
,
p
,
span
,
a
{
border
:
0
;
}
img
,
input
{
border
:
none
;
vertical-align
:
middle
;
background
:
none
;
outline
:
none
;
}
html
{
height
:
100%
;
box-sizing
:
border-box
;
}
body
{
height
:
100%
;
-moz-osx-font-smoothing
:
grayscale
;
-webkit-font-smoothing
:
antialiased
;
text-rendering
:
optimizeLegibility
;
font-family
:
Helvetica
Neue
,
Helvetica
,
PingFang
SC
,
Hiragino
Sans
GB
,
Microsoft
YaHei
,
Arial
,
sans-serif
;
}
ul
,
ol
{
list-style-type
:
none
;
}
th
,
td
,
input
{
font-size
:
12px
;
}
h3
{
font-size
:
14px
;
}
s
,
i
,
em
{
font-style
:
normal
;
text-decoration
:
none
;
}
button
{
border
:
none
;
cursor
:
pointer
;
font-size
:
12px
;
background-color
:
transparent
;
}
select
{
border-width
:
1px
;
_zoom
:
1
;
border-style
:
solid
;
padding-top
:
2px
;
font-size
:
12px
;
}
.clear
{
clear
:
both
;
font-size
:
1px
;
height
:
0
;
visibility
:
hidden
;
line-height
:
0
;
}
.clearfix
:after
{
content
:
""
;
display
:
block
;
clear
:
both
;
}
.clearfix
{
zoom
:
1
;
}
.float_left
{
float
:
left
;
}
.float_right
{
float
:
right
;
}
dsk-operate-ui/src/views/radar/components/debtProject/index.vue
0 → 100644
View file @
01c7d6c4
<
template
>
<div
class=
"content"
>
</div>
</
template
>
<
script
>
export
default
{
name
:
'debtProject'
,
data
()
{
return
{
}
},
created
()
{},
methods
:
{
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
.content
{
padding
:
0px
16px
;
background
:
#FFFFFF
;
}
</
style
>
\ No newline at end of file
dsk-operate-ui/src/views/radar/index.vue
0 → 100644
View file @
01c7d6c4
<
template
>
<div
class=
"app-container"
>
<div
class=
"content"
>
<div
class=
"combined-title"
>
<div
class=
"title-right"
>
<div
class=
"tab"
>
<div
style=
"position:relative"
v-for=
"(itme,i) in personnelList"
:class=
"itme.status==true?'active':'' "
:key=
'i'
@
click=
"personnelListbtn(i)"
>
<p>
{{
itme
.
value
}}
</p>
</div>
</div>
<p
class=
"solid"
></p>
</div>
</div>
</div>
<debtProject
v-if=
"personnelHerf=='debtProject'"
/>
</div>
</
template
>
<
script
>
import
debtProject
from
"./components/debtProject/index.vue"
;
export
default
{
name
:
'radar'
,
components
:
{
debtProject
},
data
()
{
return
{
// tablist
personnelList
:
[{
key
:
'debtProject'
,
status
:
true
,
value
:
'企业专项债项目'
,
},
{
key
:
'Builder'
,
status
:
false
,
value
:
'土地交易'
,
},
{
key
:
'KeyPersonnel'
,
status
:
false
,
value
:
'拟建项目'
,
},
{
key
:
'KeyPersonnel'
,
status
:
false
,
value
:
'招标计划'
,
},
{
key
:
'KeyPersonnel'
,
status
:
false
,
value
:
'标讯pro'
,
},
{
key
:
'KeyPersonnel'
,
status
:
false
,
value
:
'公招标讯'
,
},
{
key
:
'KeyPersonnel'
,
status
:
false
,
value
:
'开标记录'
,
},
],
personnelHerf
:
'debtProject'
}
},
created
()
{},
methods
:
{
personnelListbtn
(
index
)
{
for
(
var
i
=
0
;
i
<
this
.
personnelList
.
length
;
i
++
)
{
this
.
personnelList
[
i
].
status
=
false
;
}
this
.
personnelList
[
index
].
status
=
true
;
},
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
@import
"~@/assets/styles/public.scss"
;
.app-container
{
margin
:
12px
24px
;
padding
:
0
;
}
.content
{
padding
:
0px
16px
;
background
:
#FFFFFF
;
}
.app-container
.combined-title
{
display
:
flex
;
padding-top
:
16px
;
align-items
:
center
}
.app-container
.combined-title
.title-icon
{
display
:
inline-block
;
width
:
6px
;
height
:
26px
;
background
:
#0081FF
;
border-radius
:
0px
0px
0px
0px
;
opacity
:
1
;
margin-right
:
18px
;
}
.app-container
.combined-title
.title-right
{
display
:
flex
;
width
:
1044px
;
position
:
relative
;
height
:
40px
;
}
.app-container
.combined-title
.title-right
.title-text
{
font-size
:
16px
;
font-weight
:
bold
;
color
:
#333333
;
line-height
:
40px
;
}
.app-container
.combined-title
.title-right
.title-add
{
color
:
#0081FF
;
cursor
:
pointer
;
position
:
absolute
;
right
:
0
;
}
.app-container
.combined-title
.title-right
.title-addyj
{
top
:
5px
;
}
.app-container
.combined-title
.title-right
.title-add
.add-img
{
position
:
relative
;
top
:
-1px
;
margin-right
:
6px
;
}
.app-container
.combined-title
.title-right
.solid
{
width
:
100%
;
height
:
1px
;
background-color
:
#EEEEEE
;
position
:
absolute
;
bottom
:
0px
;
left
:
0
;
z-index
:
1
;
}
.tab
{
display
:
flex
;
z-index
:
2
;
}
.tab_p_32
{
padding-right
:
32px
;
padding-left
:
32px
;
}
.tab
div
{
cursor
:
pointer
;
color
:
#666666
;
font-size
:
14px
;
text-align
:
center
;
margin-right
:
32px
;
line-height
:
40px
;
}
.tab
div
p
{
display
:
inline-block
;
padding
:
0px
;
}
.tab
div
.logo
{
color
:
#fff
;
font-weight
:
400
;
font-size
:
10px
;
position
:
absolute
;
top
:
-6px
;
right
:
-24px
;
display
:
inline-block
;
line-height
:
14px
;
padding
:
1px
2px
;
text-align
:
center
;
background
:
#3663DE
;
border-radius
:
2px
2px
2px
2px
;
}
.tab
div
.triangle
{
display
:
inline-block
;
width
:
0px
;
height
:
0px
;
border-left
:
3px
solid
transparent
;
border-right
:
3px
solid
transparent
;
border-top
:
4px
solid
#3663DE
;
position
:
absolute
;
top
:
9
.5px
;
right
:
-3px
;
}
.tab
.active
{
color
:
#0081FF
;
}
.tab
.active
.triangle
{
border-top
:
4px
solid
#0081FF
;
}
.tab
.active
.logo
{
background
:
#0081FF
;
}
.tab
.active
p
{
border-bottom
:
2px
solid
#0081FF
;
font-weight
:
bold
;
}
</
style
>
\ No newline at end of file
dsk-operate-ui/src/views/radar/list/index.vue
deleted
100644 → 0
View file @
12fb1e96
<
template
>
<div
class=
"app-container"
>
监控列表
</div>
</
template
>
<
script
>
export
default
{
name
:
'List'
,
data
()
{
return
{
}
},
created
()
{
},
methods
:
{
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
</
style
>
dsk-operate-ui/src/views/radar/opportunity/index.vue
deleted
100644 → 0
View file @
12fb1e96
<
template
>
<div
class=
"app-container"
>
商机查询
</div>
</
template
>
<
script
>
export
default
{
name
:
'Opportunity'
,
data
()
{
return
{
}
},
created
()
{
},
methods
:
{
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
</
style
>
dsk-operate-ui/src/views/radar/overview/index.vue
deleted
100644 → 0
View file @
12fb1e96
<
template
>
<div
class=
"app-container"
>
监控动态
</div>
</
template
>
<
script
>
export
default
{
name
:
'Trends'
,
data
()
{
return
{
}
},
created
()
{
},
methods
:
{
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
</
style
>
dsk-operate-ui/src/views/radar/subscription/index.vue
deleted
100644 → 0
View file @
12fb1e96
<
template
>
<div
class=
"app-container"
>
项目订阅
</div>
</
template
>
<
script
>
export
default
{
name
:
'Subscription'
,
data
()
{
return
{
}
},
created
()
{
},
methods
:
{
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
</
style
>
dsk-operate-ui/src/views/radar/trends/index.vue
deleted
100644 → 0
View file @
12fb1e96
<
template
>
<div
class=
"app-container"
>
监控动态
</div>
</
template
>
<
script
>
export
default
{
name
:
'Trends'
,
data
()
{
return
{
}
},
created
()
{
},
methods
:
{
}
}
</
script
>
<
style
lang=
"scss"
scoped
>
</
style
>
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