|
@@ -1,9 +1,10 @@
|
|
|
<template>
|
|
|
<div id="list">
|
|
|
<el-col class="infoRightList" :span="24" v-for="(item, index) in list" :key="index">
|
|
|
- <el-col :span="20">
|
|
|
+ <el-col :span="14">
|
|
|
<p class="textOver">{{ item.title }}</p>
|
|
|
</el-col>
|
|
|
+ <el-col :span="6" class="date"> {{ item.start_time }}-{{ item.end_time }} </el-col>
|
|
|
<el-col :span="4" style="text-align:right;">
|
|
|
<el-button type="warning" size="mini" @click="dockBtn()" v-if="user.role == '3' || user.role == '7'">管理进入</el-button>
|
|
|
<el-button type="warning" size="mini" @click="linkBtn(item.id)" v-if="status == '1'">进入对接会</el-button>
|
|
@@ -148,6 +149,11 @@ export default {
|
|
|
text-align: center;
|
|
|
font-size: 16px;
|
|
|
}
|
|
|
+.infoRightList .date {
|
|
|
+ text-align: right;
|
|
|
+ padding: 4px 0;
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
.duijie {
|
|
|
color: #ff8500;
|
|
|
}
|