|
@@ -57,10 +57,10 @@
|
|
|
</a-row>
|
|
|
|
|
|
<!-- 第二行-->
|
|
|
- <a-row :gutter="24" class="secondLine" style="height:360px;">
|
|
|
+ <a-row :gutter="24" class="secondLine">
|
|
|
<!-- 企业公告 -->
|
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="9" :style="{ marginBottom: '8px', paddingRight: 0 }">
|
|
|
- <a-card title="企业公告" :bordered="false" style="height:370px;">
|
|
|
+ <a-card title="企业公告" :bordered="false" style="height:400px;">
|
|
|
<template #extra>
|
|
|
<a href="javascript:void(0);" @click="openEnterAnn">更多</a>
|
|
|
</template>
|
|
@@ -77,7 +77,7 @@
|
|
|
<a-row :gutter="24">
|
|
|
<!-- 我的计划 -->
|
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" :style="{ marginBottom: '8px', paddingRight: 0 }">
|
|
|
- <a-card title="我的计划" :bordered="false" style="width:100%;height:175px">
|
|
|
+ <a-card title="我的计划" :bordered="false" style="width:100%;height:176px">
|
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="12" :style="{ marginBottom: '8px', paddingRight: 0 }">
|
|
|
<p>
|
|
|
上月我的计划:
|
|
@@ -103,9 +103,9 @@
|
|
|
</a-col>
|
|
|
<!-- 友情链接 -->
|
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" :style="{ marginBottom: '8px', paddingRight: 0 }">
|
|
|
- <a-card title="友情链接" :bordered="false" style="width:100%;height:188px">
|
|
|
+ <a-card title="友情链接" :bordered="false" style="width:100%;height:216px">
|
|
|
<template #extra><a href="javascript:void(0);" @click="openMyLinks">更多</a></template>
|
|
|
- <div v-for="item in linksList.slice(0, 8)" :key="item.id" class="links">
|
|
|
+ <div v-for="item in linksList.slice(0, 13)" :key="item.id" class="links">
|
|
|
<button class="itemLink">
|
|
|
<a href="#" @click="openItemLink(item)">
|
|
|
<span width="2em"> {{ item.name }}</span>
|
|
@@ -119,22 +119,11 @@
|
|
|
|
|
|
<!-- 日历 -->
|
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="8" :style="{ marginBottom: '8px' }">
|
|
|
- <a-card title="日程" :bordered="false" style="height:370px;" class="dataStyle">
|
|
|
+ <a-card title="日程" :bordered="false" class="dataStyle">
|
|
|
<template #extra>
|
|
|
<a href="javascript:void(0);" @click="openCalTab">详情</a>
|
|
|
</template>
|
|
|
-
|
|
|
<a-row :gutter="24">
|
|
|
- <!-- 图片 -->
|
|
|
- <!-- <a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
|
|
|
- <div style="height:186px;">
|
|
|
- <div class="tips"> -->
|
|
|
- <!-- <img src="../../assets/date.jpg" alt="" height="186px;" width="100%" /> -->
|
|
|
- <!-- <i id="showTime"></i> -->
|
|
|
- <!-- </div>
|
|
|
- </div>
|
|
|
- </a-col> -->
|
|
|
-
|
|
|
<!-- 小日历 -->
|
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24">
|
|
|
<div class="ccfullCalendar">
|
|
@@ -348,11 +337,13 @@ export default {
|
|
|
// 上月我计划
|
|
|
async getMyLastM() {
|
|
|
// createBy:'' ,人员账号(不传则查询全部人员)
|
|
|
- // whereTimeType:'',时间类型(0无时间筛选1查询上月的2本月)
|
|
|
+ // whereTimeType:'',时间类型(0无时间筛选 1查询上月 2本月)
|
|
|
await scheduleGetLastMonth({ createBy: '', whereTimeType: '1' }).then(res => {
|
|
|
console.log('我的上月计划res', res)
|
|
|
})
|
|
|
+
|
|
|
},
|
|
|
+
|
|
|
// 友情链接跳转
|
|
|
openItemLink(e) {
|
|
|
window.open(e.link, '_blank') //新窗口打开
|
|
@@ -481,8 +472,8 @@ export default {
|
|
|
},
|
|
|
|
|
|
// 获取 OA 按钮
|
|
|
- async getActiveKeyAll() {
|
|
|
- await this.postFormAction('/activiti_process/listData', { status: 1, roles: true }).then(res => {
|
|
|
+ async getActiveKeyAll() {
|
|
|
+ await this.postFormAction('/activiti_process/listData', { status: 1, roles: true }).then(res => {
|
|
|
this.activeKeyAll = []
|
|
|
if (res.success) {
|
|
|
var result = res.result || []
|