Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bigDataSystem
Project
Project
Details
Activity
Releases
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
张伯涛
bigDataSystem
Commits
35c92985
Commit
35c92985
authored
Nov 30, 2024
by
liwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
概览页面
parent
717b7bbb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
19 deletions
+35
-19
MyProcess.vue
src/views/OverviewMallResources/MyProcess.vue
+24
-19
index.vue
src/views/OverviewMallResources/index.vue
+11
-0
No files found.
src/views/OverviewMallResources/MyProcess.vue
View file @
35c92985
...
@@ -4,23 +4,29 @@
...
@@ -4,23 +4,29 @@
我的流程
我的流程
</div>
</div>
<div
class=
"centent2"
>
<div
class=
"centent2"
>
<template
v-for=
"(item, index) in CardList2"
:key=
"item.title"
>
<div
style=
"display: flex;justify-content: center;width:100%"
>
<Card
<div
style=
"margin-left: 18%"
>
我发起的
</div>
size=
"small"
<div
style=
"margin-left: 30%"
>
我的代办
</div>
:loading=
"loading"
</div>
hoverable=
"true"
<div
style=
"display: flex;justify-content: center;"
>
class=
"md:w-25 w-full !md:mt-0 h-25 md:h-25"
<template
v-for=
"(item, index) in CardList2"
:key=
"item.title"
>
:class=
"[
{ 'md:mr-4': index + 1
<
4
,
'
mt-4
'
:
index
>
0,'bg-color':(index % 4) + 1 },`bg-color-${(index % 4) + 1}`]"
<Card
>
size=
"small"
<div
:class=
"`centent2-1`"
class=
"md:h-20"
>
:loading=
"loading"
<div>
hoverable=
"true"
<span
class=
"centent2-1-1"
>
{{
item
.
total
}}
</span>
class=
"md:w-25 w-full !md:mt-0 h-25 md:h-25"
<span>
{{
item
.
title
}}
</span>
:class=
"[
{ 'md:mr-4': index + 1
<
4
,
'
mt-4
'
:
index
>
0,'bg-color':(index % 4) + 1 },`bg-color-${(index % 4) + 1}`]"
>
<div
:class=
"`centent2-1`"
class=
"md:h-20"
>
<div>
<span
class=
"centent2-1-1"
>
{{
item
.
total
}}
</span>
<span>
{{
item
.
title
}}
</span>
</div>
</div>
</div>
</
div
>
</
Card
>
</Card
>
<Divider
v-if=
"index === 2"
:class=
"`centent2-2`"
type=
"vertical"
class=
"md:h-25"
/
>
<
Divider
v-if=
"index === 2"
:class=
"`centent2-2`"
type=
"vertical"
class=
"md:h-25"
/
>
<
/
template
>
</
template
>
</
div
>
</div>
</div>
<List
:pagination=
"pagination"
>
<List
:pagination=
"pagination"
>
<
template
v-for=
"item in dataList"
:key=
"item.id"
>
<
template
v-for=
"item in dataList"
:key=
"item.id"
>
...
@@ -59,8 +65,6 @@ const dataList = ref(ListData)
...
@@ -59,8 +65,6 @@ const dataList = ref(ListData)
</
script
>
</
script
>
<
style
lang=
"less"
scoped
>
<
style
lang=
"less"
scoped
>
.centent2{
.centent2{
display: flex;
justify-content: center;
.centent2-1{
.centent2-1{
display: flex;
display: flex;
align-items: center;
align-items: center;
...
@@ -68,7 +72,8 @@ const dataList = ref(ListData)
...
@@ -68,7 +72,8 @@ const dataList = ref(ListData)
.centent2-1-1{
.centent2-1-1{
display:flex;
display:flex;
justify-content: center;
justify-content: center;
align-items: center
align-items: center;
font-size: 20px;
}
}
}
}
.centent2-2{
.centent2-2{
...
...
src/views/OverviewMallResources/index.vue
View file @
35c92985
<
template
>
<
template
>
<div
class=
"p-4"
>
<div
class=
"p-4"
>
<div
style=
"display: flex;justify-content: center;margin-bottom: 20px"
>
<a-input-search
v-model:value=
"value"
placeholder=
""
style=
"width: 800px;"
@
search=
"onSearch"
/>
<Icon
icon=
"mdi:funnel"
style=
"font-size: 20px;color: rgb(27, 148, 243);margin-left: 5px;margin-right: 5px"
/>
<Icon
icon=
"ant-design:folder-open-outlined"
style=
"font-size: 20px"
/>
</div>
<ResourceStatistics
:loading=
"loading"
class=
"enter-y"
/>
<ResourceStatistics
:loading=
"loading"
class=
"enter-y"
/>
<div
class=
"!my-4 md:flex enter-y"
>
<div
class=
"!my-4 md:flex enter-y"
>
<PopularResources
class=
"md:w-1/2 w-full"
:loading=
"loading"
/>
<PopularResources
class=
"md:w-1/2 w-full"
:loading=
"loading"
/>
...
@@ -19,6 +29,7 @@ import PopularResources from './PopularResources.vue';
...
@@ -19,6 +29,7 @@ import PopularResources from './PopularResources.vue';
import
MyProcess
from
'./MyProcess.vue'
;
import
MyProcess
from
'./MyProcess.vue'
;
import
{
Tag
,
Card
}
from
'ant-design-vue'
;
import
{
Tag
,
Card
}
from
'ant-design-vue'
;
import
StatisticalChart
from
'./StatisticalChart.vue'
import
StatisticalChart
from
'./StatisticalChart.vue'
import
Icon
from
"@/components/Icon/Icon.vue"
;
const
loading
=
ref
(
false
);
const
loading
=
ref
(
false
);
...
...
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