duanshenglang 1 semana atrás
pai
commit
b13c02b21b
2 arquivos alterados com 14 adições e 7 exclusões
  1. 4 2
      lottery/complaintContent.html
  2. 10 5
      lottery/intentionDetail.html

+ 4 - 2
lottery/complaintContent.html

@@ -48,6 +48,7 @@
     display: flex;
     flex-direction: column;
     justify-content: space-between;
+    overflow: auto;
   }
   .client_head {
     font-weight: 500;
@@ -63,9 +64,10 @@
     font-weight: 400;
     font-size: 14px;
     color: #999999;
-    height: 100%;
-    overflow: auto;
+    max-height: 100%;
+    min-height: 300px;
     margin-bottom: 10px;
+    line-height: 24px;
   }
   .follow_btn {
     background: #1677FF;

+ 10 - 5
lottery/intentionDetail.html

@@ -49,11 +49,12 @@
     display: flex;
     flex-direction: column;
     justify-content: space-between;
+    overflow: auto;
   }
 
   .client_head {
     font-weight: 500;
-    font-size: 14px;
+    font-size: 16px;
     color: #222222;
     line-height: 20px;
     margin-bottom: 10px;
@@ -63,9 +64,9 @@
     background: #FFFFFF;
     border-radius: 10px;
     padding: 12px 10px;
-    height: 100%;
-    overflow: auto;
     margin-bottom: 10px;
+    max-height: 100%;
+    min-height: 300px;
   }
   .intention_tag1 {
     border-radius: 5px;
@@ -89,11 +90,15 @@
     background: rgba(196,207,218,0.1);
     margin-right: 8px;
   }
+  .ai_title {
+    color: #222222;
+  }
   .reason {
     font-weight: 400;
-    font-size: 14px;
+    font-size: 12px;
     color: #999999;
     margin-top: 10px;
+    line-height: 20px;
   }
   .follow_btn {
     background: #1677FF;
@@ -117,7 +122,7 @@
             <span v-for="(k, kIndex) in nameList" :key="kIndex"
               :class="groupId === 1 ? 'intention_tag1' : 'intention_tag2'">{{k}}</span>
           </div>
-          <div class="reason">{{reason}}</div>
+          <div class="reason"><span class="ai_title">AI意向分析:</span>{{reason}}</div>
         </div>
         <div class="follow_btn" @click="toComfirm">去跟进</div>
       </div>