Преглед изворни кода

代码更新报价单业务员选择,组织架构新增调整

qymljy пре 3 година
родитељ
комит
98f4fa9919

+ 6 - 6
src/SDrpManagement/QuotedPrice/detail/modules/productInventory/index.vue

@@ -91,7 +91,7 @@
         <el-table-column
             prop="price"
             label="单价"
-            width="80"
+            width="120"
         >
           <template slot-scope="scope">
             <div v-if="scope.row.discountDifferenceAmount > 0 ">
@@ -119,7 +119,7 @@
         <el-table-column
             prop="discountDifferenceAmount"
             label="单价差额(元)"
-            width="80"
+            width="62"
         >
           <template slot-scope="scope">
             <p><span>{{scope.row.discountDifferenceAmount}}</span></p>
@@ -200,7 +200,7 @@
         <el-table-column
             prop="brand"
             label="品牌"
-            width="180">
+            width="200">
           <template slot-scope="scope">
             <p v-for="(item,index) in scope.row.brand">
               <span style="float: left" v-if="index === scope.row.brand.length -1">{{item?item.brandname+'':'--'}}</span>
@@ -211,7 +211,7 @@
         <el-table-column
             prop="itemclass"
             label="类别"
-            width="180">
+            width="200">
           <template slot-scope="scope">
             <p v-for="(item,index) in scope.row.itemclass">
               <span style="float: left" v-if="index === scope.row.itemclass.length -1">{{item?item.itemclassname+'':'--'}}</span>
@@ -241,7 +241,7 @@
         <el-table-column
             prop="amount"
             label="金额"
-            width="80"
+            width="100"
             fixed="right">
           <template slot-scope="scope">
             <div v-if="scope.row.discountDifferenceAmount > 0  ">
@@ -256,7 +256,7 @@
         <el-table-column
             prop="specialoffer"
             label="是否特价"
-            width="80"
+            width="50"
             fixed="right">
           <template slot-scope="scope">
             <i class="el-icon-check" v-if="scope.row.discountDifferenceAmount < 0"  style="color: red;font-size: 20px"></i>

+ 5 - 5
src/components/productTable/indexQty.vue

@@ -60,7 +60,7 @@
           prop="price"
           label="单价"
 
-          width="80">
+          width="120">
         <template slot-scope="scope">
           <div v-if="(scope.row.discountDifferenceAmount > 0)">
             <p><span :style="[setTopColor]">{{tool.formatAmount(scope.row.price,2)}}</span></p>
@@ -77,7 +77,7 @@
           prop="discountDifferenceAmount"
           label="单价差额(元)"
 
-          width="80">
+          width="62">
         <template slot-scope="scope">
           <span >{{scope.row.discountDifferenceAmount?scope.row.discountDifferenceAmount:'--'}}</span>
         </template>
@@ -159,7 +159,7 @@
       <el-table-column
           prop="brand"
           label="品牌"
-          width="180">
+          width="200">
         <template slot-scope="scope">
           <p v-for="(item,index) in scope.row.brand">
             <span style="float: left" v-if="index === scope.row.brand.length -1">{{item?item.brandname+'':'--'}}</span>
@@ -170,7 +170,7 @@
       <el-table-column
           prop="itemclass"
           label="类别"
-          width="0">
+          width="200">
         <template slot-scope="scope">
           <p v-for="(item,index) in scope.row.itemclass">
             <span style="float: left" v-if="index === scope.row.itemclass.length -1">{{item?item.itemclassname+'':'--'}}</span>
@@ -219,7 +219,7 @@
           prop="specialoffer"
           label="是否特价"
           fixed="right"
-          width="100">
+          width="50">
         <template slot-scope="scope">
           <i class="el-icon-check" v-if="scope.row.discountDifferenceAmount < 0"  style="color: red;font-size: 20px"></i>
           <p v-else>--</p>