xuqiang 4 ani în urmă
părinte
comite
cfca640b01

+ 3 - 0
src/main/pc-space/src/views/AssetDetail.vue

@@ -9,6 +9,7 @@
                             v-if="isVideo(item)"
                             :src="item.url"
                             :poster="getImg(changeImgs([item]), '', 1800)"
+                            style="width: 100%; height: 520px"
                             controls="controls"
                         >
                             您的浏览器不支持 video 标签。
@@ -1161,6 +1162,7 @@ export default {
                 width: 188px;
                 background: #fff;
                 border-radius: 4px;
+                z-index: 9999;
                 top: 40px;
                 left: 30px;
                 .span {
@@ -1192,6 +1194,7 @@ export default {
             .hoverTips1 {
                 position: absolute;
                 width: 188px;
+                z-index: 9999;
                 background: #fff;
                 border-radius: 4px;
                 top: 40px;

+ 4 - 1
src/main/pc-space/src/views/CollectionDetail.vue

@@ -9,6 +9,7 @@
                             v-if="isVideo(item)"
                             :src="item.url"
                             :poster="getImg(changeImgs([item]), '', 1800)"
+                            style="width: 100%; height: 520px"
                             controls="controls"
                         >
                             您的浏览器不支持 video 标签。
@@ -863,7 +864,7 @@ export default {
                 border-bottom: 10px solid #fff;
                 content: '';
                 display: block;
-                z-index: 999;
+                z-index: 9999;
                 position: absolute;
                 left: 12px; //给小三角定位,更具实际需求调整
                 top: -10px; //给小三角定位,更具实际需求调整
@@ -872,6 +873,7 @@ export default {
                 position: absolute;
                 width: 188px;
                 background: #fff;
+                z-index: 9999;
                 border-radius: 4px;
                 top: 40px;
                 left: -4px;
@@ -887,6 +889,7 @@ export default {
                 height: 0;
                 border-left: 7px solid transparent;
                 border-right: 7px solid transparent;
+                z-index: 9999;
                 border-bottom: 10px solid #fff;
                 content: '';
                 display: block;

+ 19 - 3
src/main/pc-space/src/views/user/AccountData.vue

@@ -45,9 +45,7 @@
         </div>
         <div class="userContent" v-if="active === '关注' || active === '粉丝'">
             <div class="borderUser"></div>
-            <!-- <el-divider content-position="right">
-                <img src="../../assets/copy_icon.png" alt="" />
-            </el-divider> -->
+            <!-- <img class="radio-img" src="../assets/sousuo_icon_sanjiao.png" alt="" :style="{ left: searchLeft }" /> -->
             <el-empty v-if="empty" description="还没有用户哦~"></el-empty>
             <div v-for="item in list" :key="item.id">
                 <div class="boxFollow">
@@ -234,6 +232,15 @@ export default {
     },
     computed: {
         ...mapState(['userInfo']),
+        searchLeft() {
+            return (
+                this.tabs.findIndex(item => {
+                    return item.value === this.searchType;
+                }) *
+                    (this.isChinese ? 68 : 90) +
+                'px'
+            );
+        },
         Phone() {
             return this.userInfo.phone.slice(0, 3) + ' **** ' + this.userInfo.phone.slice(7, 11);
         },
@@ -506,6 +513,15 @@ export default {
         color: #ccc;
         margin-top: 10px;
     }
+    .radio-img {
+        position: absolute;
+        bottom: 0;
+        left: 0;
+        width: 16px;
+        height: 10px;
+        transform: translate(26px, 12px);
+        transition: left ease-in-out 0.3s;
+    }
     .top {
         height: 146px;
         width: 970px;