|
@@ -141,7 +141,7 @@
|
|
<div class="join_shadow_right"></div>
|
|
<div class="join_shadow_right"></div>
|
|
</div>
|
|
</div>
|
|
<div class="join_top">
|
|
<div class="join_top">
|
|
- <div class="join_item" v-for="(item, index) in friendList" :key="index">
|
|
|
|
|
|
+ <div class="join_item" v-for="(item, index) in friendList" :key="index" @click="toFriend(item)">
|
|
<el-image class="image" :src="getFile(item.url)" fit="fill">
|
|
<el-image class="image" :src="getFile(item.url)" fit="fill">
|
|
<template v-slot:error>
|
|
<template v-slot:error>
|
|
<el-image class="image" :src="friend" fit="fill" />
|
|
<el-image class="image" :src="friend" fit="fill" />
|
|
@@ -259,6 +259,11 @@ const handleMousOut = (index) => {
|
|
const toSelect = (item) => {
|
|
const toSelect = (item) => {
|
|
recordInfo.value = item
|
|
recordInfo.value = item
|
|
}
|
|
}
|
|
|
|
+// 查看合作伙伴下级
|
|
|
|
+const toFriend = (item) => {
|
|
|
|
+ console.log(item)
|
|
|
|
+ router.push({ path: '/friend/detail', query: { code: item.code } })
|
|
|
|
+}
|
|
// 请求
|
|
// 请求
|
|
onMounted(() => {
|
|
onMounted(() => {
|
|
setTimeout(async () => {
|
|
setTimeout(async () => {
|
|
@@ -721,11 +726,9 @@ watch(
|
|
.join {
|
|
.join {
|
|
margin: auto;
|
|
margin: auto;
|
|
width: 100%;
|
|
width: 100%;
|
|
- height: 300px;
|
|
|
|
position: relative;
|
|
position: relative;
|
|
overflow: hidden;
|
|
overflow: hidden;
|
|
display: flex;
|
|
display: flex;
|
|
- padding-bottom: 100px;
|
|
|
|
padding-top: 48px;
|
|
padding-top: 48px;
|
|
justify-content: center;
|
|
justify-content: center;
|
|
.join_bg {
|
|
.join_bg {
|
|
@@ -741,7 +744,6 @@ watch(
|
|
filter: blur(67.957px);
|
|
filter: blur(67.957px);
|
|
}
|
|
}
|
|
.join_scroll {
|
|
.join_scroll {
|
|
- height: 300px;
|
|
|
|
margin: 0 auto;
|
|
margin: 0 auto;
|
|
max-width: 1920px;
|
|
max-width: 1920px;
|
|
min-width: 1700px;
|
|
min-width: 1700px;
|
|
@@ -752,7 +754,6 @@ watch(
|
|
width: 100%;
|
|
width: 100%;
|
|
min-width: 1700px;
|
|
min-width: 1700px;
|
|
position: absolute;
|
|
position: absolute;
|
|
- height: 400px;
|
|
|
|
z-index: 1;
|
|
z-index: 1;
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|