zhaoke il y a 2 ans
Parent
commit
cc81708dc4
2 fichiers modifiés avec 10 ajouts et 3 suppressions
  1. 9 2
      src/views/newBagDetails/index.vue
  2. 1 1
      vue.config.js

+ 9 - 2
src/views/newBagDetails/index.vue

@@ -22,7 +22,11 @@
         <div class="newBagDetails-info-details-msgs">
           <el-scrollbar style="height: 100%;">
             <el-row class="newBagDetails-info-details-msgs-l1" :gutter="20">
-              <el-col :span="3" class="msgs-list" v-for="(item,index) in msgs1" :key="index">{{ item.columnLabel }}:{{ item.value }}</el-col>
+              <el-col :span="3" class="msgs-list" v-for="(item,index) in msgs1" :key="index">{{ item.columnLabel }}:
+                <el-tooltip class="item" effect="dark" :content="item.value" placement="top">
+                  <span>{{ item.value }}</span>
+                </el-tooltip>
+              </el-col>
             </el-row>
           </el-scrollbar>
         </div>
@@ -171,7 +175,7 @@ export default {
           carrierFlightsDate
         })
         if (code == 0 && returnData && returnData.length) {
-          this.detailsArr = [...returnData]
+          this.detailsArr = _.uniq([...returnData])
         }
       } catch (error) {
         console.log(error)
@@ -279,6 +283,9 @@ export default {
         &-l1 {
           .msgs-list {
             margin-bottom: 22px;
+            white-space: nowrap;
+            text-overflow: ellipsis;
+            overflow: hidden;
           }
         }
       }

+ 1 - 1
vue.config.js

@@ -25,7 +25,7 @@ module.exports = {
    * Detail: https://cli.vuejs.org/config/#publicpath
    */
   publicPath: './',
-  outputDir: 'zxxjc',
+  outputDir: 'dist',
   assetsDir: 'static',
   lintOnSave: process.env.NODE_ENV === 'development',
   productionSourceMap: false,