Commit 842ce8ce42f0a52f2f5a5eaf4db49af3185dc641

Authored by 王强
1 parent 695bea6d

搜索页面,达人更多,UI兼容问题处理~

src/components/darenList/darenList.less
... ... @@ -7,9 +7,9 @@
7 7 width: 690px;
8 8 .left-box {
9 9 display: flex;
10   - justify-content: flex-start;
  10 + justify-content: space-between;
11 11 align-items: center;
12   - width: 570px;
  12 + width: 550px;
13 13 height: auto;
14 14 .avatar-box {
15 15 width: 80px;
... ... @@ -23,8 +23,7 @@
23 23 }
24 24 }
25 25 .user-info {
26   - margin-left: 30px;
27   - width: 460px;
  26 + width: 440px;
28 27 .name {
29 28 color: #4A4A4A;
30 29 font-size: 28px;
... ...
src/components/darenList/darenList.vue
1 1 <template>
2 2 <div class="daren-list" v-if="item" @click="jump(item)">
3 3 <div class="box">
4   -
5 4 <div class="left-box">
6 5 <div class="avatar-box">
7 6 <img v-lazy="item.user_img || item.logo" class="avatar-img" />
... ...