Ver Fonte

适配调整

wenmenghao321 há 9 meses atrás
pai
commit
13e441f413

+ 14 - 2
src/web/templates/frontRouter/pc/seeBuyerHistory/sess/index.html

@@ -130,12 +130,24 @@
     .custom-dialog .el-dialog__body{
       padding: 20px 32px 22px;
     }
+    /* 适配工作台 */
+    .in-iframe .see-container .see-header.weighting_{
+      margin: 0px auto 24px auto;
+    }
+    .in-iframe .see-container .see-header.w1080{
+      width: auto;
+    }
+    .in-iframe  .see-content.weighting_{
+      background-color: #fff;
+      border-radius: 8px;
+      width: auto;
+    }
 </style>
 <body>
   {{include "/common/pchead.html"}}
 
   <section class="see-container" v-cloak>
-    <div class="see-header flex">
+    <div class="see-header flex weighting_">
       <div class="w1080">
         <h3 class="tab-title">采购单位画像记录</h3>
         <div class="show-total-info-group">
@@ -160,7 +172,7 @@
         <i class="el-icon-arrow-down r-icons" ></i>
       </div>
     </div>
-    <div class="see-content w1080" v-show="seeList.list.length !== 0 && empty">
+    <div class="see-content w1080 weighting_" v-show="seeList.list.length !== 0 && empty">
       <div class="lists flex" v-for="item in seeList.list" :key="item._id">
         <div class="r-conts flex">
           <h3 class="flex" @click="detailed(item.name)">{item.name}<span v-show="item.status >= 0"

+ 27 - 4
src/web/templates/frontRouter/pc/seeHistory/sess/index.html

@@ -19,12 +19,33 @@
         <link rel="stylesheet" href='{{Msg "seo" "cdn"}}/css/ele-reset.css?v={{Msg "seo" "version"}}'>
         <link rel="stylesheet" href='{{Msg "seo" "cdn"}}/css/selector/selector.css?v={{Msg "seo" "version"}}'>
         <link rel="stylesheet" href='{{Msg "seo" "cdn"}}/frontRouter/pc/seeHistory/css/index-pc.css?v={{Msg "seo" "version"}}'>
+        <style>
+            /* 适配工作台内 */
+            .in-iframe .see-container.weighting_{
+                padding: 26px 24px;
+
+            }
+            .in-iframe .list_box.weighting_{
+                background-color: #fff;
+                padding-top: 1px;
+                padding-bottom: 1px;
+                border-radius: 8px;
+
+            }
+            .in-iframe .see-container .see-header.weighting_ {
+                margin: 0px auto 24px auto;
+            }
+            .in-iframe .no-data.weighting_{
+                margin-bottom: 100px;       
+            }
+
+        </style>
 	</head>
 
 	<body>
 	{{include "/common/pchead.html"}}
-	<section class="see-container" v-cloak >
-        <div class="see-header flex w">
+	<section class="see-container weighting_" v-cloak >
+        <div class="see-header flex w weighting_">
             <div class="l-tabs flex">
                 <h3 class="tab-title">企业画像记录</h3>
                 <div class="tips">
@@ -46,6 +67,7 @@
                 <i class="el-icon-arrow-down r-icons" @click="dateHandler"></i>
             </div>
         </div>
+        <div class="list_box weighting_">
         <div class="see-content w" v-show="seeList.list.length !== 0 && empty">
             <div class="lists flex" v-for="item in seeList.list" :key="item._id">
                 <div class="words-img" :style="{'background-color': item.color}" @click="detailed(item._id)">
@@ -71,8 +93,9 @@
                 ></el-pagination>
             </div>
         </div>
-        <div class="no-data" v-if="working"><el-image src="/images/working.gif"></el-image><div class="tip-text"><p>剑鱼标讯正在努力工作中...</p></div></div>
-        <div class="no-data" v-if="seeList.list == 0 && empty"><el-image src="/images/pc_12.png"></el-image><div class="tip-text"><p>暂无数据</p></div></div>
+        <div class="no-data weighting_" v-if="working"><el-image src="/images/working.gif"></el-image><div class="tip-text"><p>剑鱼标讯正在努力工作中...</p></div></div>
+        <div class="no-data weighting_" v-if="seeList.list == 0 && empty"><el-image src="/images/pc_12.png"></el-image><div class="tip-text"><p>暂无数据</p></div></div>
+    </div>
     </section>
 
     {{include "/common/pcbottom.html"}}