Commit 35c92985 authored by liwei's avatar liwei

概览页面

parent 717b7bbb
...@@ -4,6 +4,11 @@ ...@@ -4,6 +4,11 @@
我的流程 我的流程
</div> </div>
<div class="centent2"> <div class="centent2">
<div style="display: flex;justify-content: center;width:100%">
<div style="margin-left: 18%">我发起的</div>
<div style="margin-left: 30%">我的代办</div>
</div>
<div style="display: flex;justify-content: center;">
<template v-for="(item, index) in CardList2" :key="item.title"> <template v-for="(item, index) in CardList2" :key="item.title">
<Card <Card
size="small" size="small"
...@@ -22,6 +27,7 @@ ...@@ -22,6 +27,7 @@
<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">
<List.Item class="centent3" @click=""> <List.Item class="centent3" @click="">
...@@ -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{
......
<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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment