|
@@ -71,13 +71,13 @@
|
|
</a-card>
|
|
</a-card>
|
|
</a-col>
|
|
</a-col>
|
|
|
|
|
|
- <!-- 计划 友情链接 -->
|
|
|
|
- <div style="height:350">
|
|
|
|
|
|
+ <!-- 计划 友情链接 style="height:350"-->
|
|
|
|
+ <div>
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="7" :style="{ marginBottom: '8px' }">
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="7" :style="{ marginBottom: '8px' }">
|
|
<a-row :gutter="24">
|
|
<a-row :gutter="24">
|
|
<!-- 我的计划 -->
|
|
<!-- 我的计划 -->
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" :style="{ marginBottom: '8px', paddingRight: 0 }">
|
|
<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%;">
|
|
|
|
|
|
+ <a-card title="我的计划" :bordered="false" style="width:100%;height:175px">
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="12" :style="{ marginBottom: '8px', paddingRight: 0 }">
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="12" :style="{ marginBottom: '8px', paddingRight: 0 }">
|
|
<p>
|
|
<p>
|
|
上月我的计划:
|
|
上月我的计划:
|
|
@@ -103,9 +103,13 @@
|
|
</a-col>
|
|
</a-col>
|
|
<!-- 友情链接 -->
|
|
<!-- 友情链接 -->
|
|
<a-col :xs="24" :sm="24" :md="24" :lg="24" :xl="24" :style="{ marginBottom: '8px', paddingRight: 0 }">
|
|
<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%;" class="links">
|
|
|
|
|
|
+ <a-card title="友情链接" :bordered="false" style="width:100%;height:188px">
|
|
<template #extra><a href="javascript:void(0);" @click="openMyLinks">更多</a></template>
|
|
<template #extra><a href="javascript:void(0);" @click="openMyLinks">更多</a></template>
|
|
- <button><a href="https://www.yonyou.com/" target="_blank">用友</a></button>
|
|
|
|
|
|
+ <div v-for="item in linksList" :key="item.id" class="links">
|
|
|
|
+ <button>
|
|
|
|
+ <a href="https://www.yonyou.com/" target="_blank">{{ item.name }}</a>
|
|
|
|
+ </button>
|
|
|
|
+ </div>
|
|
</a-card>
|
|
</a-card>
|
|
</a-col>
|
|
</a-col>
|
|
</a-row>
|
|
</a-row>
|
|
@@ -196,6 +200,7 @@ export default {
|
|
value: 0,
|
|
value: 0,
|
|
annDetail: {}, //公告详情 数据
|
|
annDetail: {}, //公告详情 数据
|
|
annList: [], //公告列表 数据
|
|
annList: [], //公告列表 数据
|
|
|
|
+ linksList: [], //友情链接 数据
|
|
config: {}, //轮播表配置
|
|
config: {}, //轮播表配置
|
|
//日历组件 参数
|
|
//日历组件 参数
|
|
calendarOptions: {
|
|
calendarOptions: {
|
|
@@ -342,6 +347,8 @@ export default {
|
|
// params:{xx1:'',xx2:'',......}
|
|
// params:{xx1:'',xx2:'',......}
|
|
await linksList().then(res => {
|
|
await linksList().then(res => {
|
|
console.log('友情链接后台返回结果', res)
|
|
console.log('友情链接后台返回结果', res)
|
|
|
|
+ this.linksList = res.result.records
|
|
|
|
+ console.log('this.linksList', this.linksList)
|
|
})
|
|
})
|
|
},
|
|
},
|
|
|
|
|