Browse Source

修改bug

chenrui 1 year ago
parent
commit
c0a1b1f635
1 changed files with 22 additions and 11 deletions
  1. 22 11
      src/views/productManagement/productSourcePath/chooseImportModal.vue

+ 22 - 11
src/views/productManagement/productSourcePath/chooseImportModal.vue

@@ -10,20 +10,20 @@
     :width="900">
     <div class="chooseImport-con">
       <!-- 可导入数据 -->
-      <a-row :gutter="16">
-        <a-col :span="5">
-          <p class="">可导入数据{{ loadData.length }}条</p>
-        </a-col>
-        <a-col :span="19">
-          <a-tooltip placement="topLeft">
+      <div class="chooseImport-head">
+        <p class="text-overflow">可导入数据{{ loadData.length }}条</p>
+        <p>
+          <a-tooltip placement="right">
             <template slot="title">
-              <div>产品款数与产品数量不符:Y6508N(17/18);Y6509N(15/18)</div>
+              <div><strong>业务单号</strong>Y6508N(17/18);Y6509N(15/18)</div>
             </template>
-            <div>
-              产品款数与产品数量不符:Y6508N(17/18);Y6509N(15/18)
+            <div class="text-overflows2">
+              产品款数与产品数量不符:<strong>业务单号</strong>(CSDGFD125458458)(<span class="red">17</span>/18);Y6509N(<span class="red">15</span>/18)
+              产品款数与产品数量不符:<strong>业务单号</strong>(CSDGFD125458458)(<span class="red">17</span>/18);Y6509N(<span class="red">15</span>/18)
             </div>
-          </a-tooltip></a-col>
-      </a-row>
+          </a-tooltip>
+        </p>
+      </div>
       <a-table
         class="sTable"
         ref="table"
@@ -199,6 +199,17 @@ export default {
           font-size: 12px;
         }
       }
+      .chooseImport-head{
+        display:flex;
+        align-items:center;
+        p:first-child{
+          max-width:12%;
+        }
+        p:last-child{
+          margin-left:10px;
+          max-width:88%;
+        }
+      }
     }
   }
 </style>