huangfuli 3 سال پیش
والد
کامیت
d62ccc1272
2فایلهای تغییر یافته به همراه12 افزوده شده و 5 حذف شده
  1. 2 2
      src/views/customer/customerList.vue
  2. 10 3
      src/views/salesManagement/salesPlanOrderList.vue

+ 2 - 2
src/views/customer/customerList.vue

@@ -140,7 +140,7 @@
           </template>
           </template>
         </el-table-column>
         </el-table-column>
         <el-table-column prop="customerName" label="客户名称">
         <el-table-column prop="customerName" label="客户名称">
-          <template scope="scope">
+          <!-- <template scope="scope">
             <span
             <span
               v-if="
               v-if="
                 scope.row.customerName == '' || scope.row.customerName == null
                 scope.row.customerName == '' || scope.row.customerName == null
@@ -151,7 +151,7 @@
               v-if="scope.row.compName == '' || scope.row.compName == null"
               v-if="scope.row.compName == '' || scope.row.compName == null"
               >{{ scope.row.customerName }}</span
               >{{ scope.row.customerName }}</span
             >
             >
-          </template>
+          </template> -->
         </el-table-column>
         </el-table-column>
         <el-table-column prop="compAddress" label="地址"></el-table-column>
         <el-table-column prop="compAddress" label="地址"></el-table-column>
         <el-table-column prop="customerPhone" label="电话"> </el-table-column>
         <el-table-column prop="customerPhone" label="电话"> </el-table-column>

+ 10 - 3
src/views/salesManagement/salesPlanOrderList.vue

@@ -85,7 +85,7 @@
         prop="unitPrice"
         prop="unitPrice"
         label="单价(元/吨)"
         label="单价(元/吨)"
       >
       >
-        <!--改价记录-->
+        <!--改价记录--> 
         <template slot-scope="scope">
         <template slot-scope="scope">
           {{ scope.row.unitPrice }}
           {{ scope.row.unitPrice }}
           <i
           <i
@@ -910,13 +910,16 @@
     </el-dialog>
     </el-dialog>
     <!--改价记录-->
     <!--改价记录-->
     <el-dialog
     <el-dialog
-      width="30%"
+      width="10%"
       title="改价记录"
       title="改价记录"
       :visible.sync="dialogFormVisible5"
       :visible.sync="dialogFormVisible5"
       :append-to-body="true"
       :append-to-body="true"
     >
     >
       <div v-for="item in pricechange">
       <div v-for="item in pricechange">
-        <div>{{ item.priceType }}{{ item.price }}</div>
+        <div>{{ item.priceType }}</div>
+        <div class="price">
+          {{ item.price }}
+        </div>
         <div>{{ item.updateDate }}</div>
         <div>{{ item.updateDate }}</div>
       </div>
       </div>
     </el-dialog>
     </el-dialog>
@@ -2090,4 +2093,8 @@ hr {
   background-color: #fff;
   background-color: #fff;
   height: 50px;
   height: 50px;
 }
 }
+.price {
+  margin-left: 97px;
+  margin-top: -19px;
+}
 </style>
 </style>