|
@@ -9,10 +9,10 @@
|
|
|
<el-col class="infoRightList" :span="24" v-for="(item, index) in hangyeList" :key="index">
|
|
|
<p>
|
|
|
<span class="textOver" @click="clickhangye(item.id)">{{ item.title }}</span
|
|
|
- ><span class="textOver">{{ item.start_time }}</span>
|
|
|
-
|
|
|
- <el-button type="primary" class="duijie">进入对接会</el-button>
|
|
|
- <el-button type="primary" class="duijie" @click="apply(item.id)">申请对接会</el-button>
|
|
|
+ ><span class="textOver">
|
|
|
+ <el-button type="primary" class="duijie" @click="jinru()">进入对接会</el-button>
|
|
|
+ <el-button type="primary" class="duijie" @click="apply(item.id)">申请对接会</el-button></span
|
|
|
+ >
|
|
|
</p>
|
|
|
</el-col>
|
|
|
</el-col>
|
|
@@ -76,6 +76,10 @@ export default {
|
|
|
apply(id) {
|
|
|
this.$router.push({ path: '/live/liveApply', query: { id: id } });
|
|
|
},
|
|
|
+
|
|
|
+ jinru() {
|
|
|
+ window.location.href = '/static/liveIndex.html';
|
|
|
+ },
|
|
|
handleCurrentChange(val) {
|
|
|
console.log(`当前页: ${val}`);
|
|
|
this.limit = 5;
|
|
@@ -87,7 +91,7 @@ export default {
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
.main {
|
|
|
- width: 80%;
|
|
|
+ width: 1200px;
|
|
|
margin: 0 auto;
|
|
|
float: none;
|
|
|
}
|
|
@@ -157,6 +161,7 @@ export default {
|
|
|
height: 87px;
|
|
|
margin: 0 0 0 5px;
|
|
|
}
|
|
|
+
|
|
|
.infoLeftList:hover p:last-child span:first-child {
|
|
|
-webkit-transform: translateY(-3px);
|
|
|
-ms-transform: translateY(-3px);
|
|
@@ -168,6 +173,19 @@ export default {
|
|
|
color: #005293;
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
+/deep/.infoRightList p span[data-v-64e7ce6c]:first-child {
|
|
|
+ display: inline-block;
|
|
|
+ width: 78%;
|
|
|
+ margin: 0 20px 0 10px;
|
|
|
+}
|
|
|
+
|
|
|
+/deep/.infoRightList p span[data-v-64e7ce6c]:last-child {
|
|
|
+ display: inline-block;
|
|
|
+ width: 19%;
|
|
|
+ text-align: center;
|
|
|
+ font-size: 16px;
|
|
|
+}
|
|
|
+
|
|
|
.infoLeftList p:first-child {
|
|
|
float: left;
|
|
|
width: 20%;
|