|
@@ -3,12 +3,12 @@
|
|
|
<!-- 第一行 -->
|
|
|
<a-row :gutter="24" class="firstLine">
|
|
|
<!-- 我的 -->
|
|
|
- <a-col :xs="24" :sm="24" :md="24" :lg="7" :style="{ marginBottom: '8px', paddingRight: 0 }">
|
|
|
+ <!-- <a-col :xs="24" :sm="24" :md="24" :lg="7" :style="{ marginBottom: '8px', paddingRight: 0 }"> -->
|
|
|
<!-- 等高设置 -->
|
|
|
- <a-card title="我的" style="width: 100%;" :bordered="false" :style="{ marginBottom: '8px', height: '250px' }">
|
|
|
- <a-row :gutter="24">
|
|
|
+ <!-- <a-card title="我的" style="width: 100%;" :bordered="false" :style="{ marginBottom: '8px', height: '250px' }">
|
|
|
+ <a-row :gutter="24"> -->
|
|
|
<!-- 头像 -->
|
|
|
- <a-col :xs="24" :sm="24" :md="12" :lg="14">
|
|
|
+ <!-- <a-col :xs="24" :sm="24" :md="12" :lg="14">
|
|
|
<a-row :gutter="24">
|
|
|
<a-col :xs="24" :sm="24" :md="12" :lg="8">
|
|
|
<div class="userImg">
|
|
@@ -23,10 +23,10 @@
|
|
|
</div>
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
- </a-col>
|
|
|
+ </a-col> -->
|
|
|
|
|
|
<!-- 数量 -->
|
|
|
- <a-col :xs="24" :sm="24" :md="12" :lg="10" class="msgBox">
|
|
|
+ <!-- <a-col :xs="24" :sm="24" :md="12" :lg="10" class="msgBox">
|
|
|
<span> {{ todoList.length }}</span>
|
|
|
<p>我的待办</p>
|
|
|
<span>{{ msgTotal }}</span>
|
|
@@ -34,15 +34,15 @@
|
|
|
</a-col>
|
|
|
</a-row>
|
|
|
</a-card>
|
|
|
- </a-col>
|
|
|
+ </a-col> -->
|
|
|
|
|
|
<!-- 待办 -->
|
|
|
- <a-col :xs="24" :sm="24" :md="24" :lg="11" :style="{ marginBottom: '8px', paddingRight: 0 }">
|
|
|
+ <a-col :xs="24" :sm="24" :md="24" :lg="11" :style="{ marginBottom: '8px', paddingRight: 0, width: '67%' }">
|
|
|
<MyoaTabs />
|
|
|
</a-col>
|
|
|
|
|
|
<!-- 按钮 -->
|
|
|
- <a-col :xs="24" :sm="24" :md="24" :lg="6" :style="{ marginBottom: '8px' }">
|
|
|
+ <a-col :xs="24" :sm="24" :md="24" :lg="6" :style="{ marginBottom: '8px', width: '33%' }">
|
|
|
<!-- 等高设置 -->
|
|
|
<a-card title="常用流程" :bordered="false" style="height: 250px;">
|
|
|
<div v-for="(item, index) in activeKeyAll.slice(5, 10)" :key="index" class="oaBig">
|
|
@@ -115,7 +115,7 @@
|
|
|
<div v-for="item in linksList.slice(0, 8)" :key="item.id" class="links">
|
|
|
<button class="itemLink">
|
|
|
<a href="#" @click="openItemLink(item)">
|
|
|
- <span width="2em"> {{ item.name }}</span>
|
|
|
+ <span width="2em" style='color:#5c5c5c'> {{ item.name }}</span>
|
|
|
</a>
|
|
|
</button>
|
|
|
</div>
|
|
@@ -695,4 +695,8 @@ export default {
|
|
|
width: 100%;
|
|
|
background: rgba(255, 255, 255, 0.3);
|
|
|
}
|
|
|
+#home .secondLine .links .itemLink{
|
|
|
+ background-color: #f5f5f5 !important ;
|
|
|
+}
|
|
|
+
|
|
|
</style>
|