lilei 1 year ago
parent
commit
e3ac88986e
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/views/salesManagement/salesQueryNew/comps/productList.vue

+ 3 - 3
src/views/salesManagement/salesQueryNew/comps/productList.vue

@@ -187,9 +187,9 @@
       <!-- 折扣 -->
       <template slot="discountPrice" slot-scope="text, record">
         <div v-if="record.promotionFlag=='DISCOUNT'&&detailData">
-          <span v-if="detailData.buyerLevel=='PROVINCE'">{{ record.provinceDiscount }}%</span>
-          <span v-if="detailData.buyerLevel=='CITY'">{{ record.cityDiscount }}%</span>
-          <span v-if="detailData.buyerLevel=='SPECIAL'">{{ record.specialDiscount }}%</span>
+          <span v-if="detailData.buyerLevel=='PROVINCE'">{{ record.provinceDiscount*100 }}%</span>
+          <span v-if="detailData.buyerLevel=='CITY'">{{ record.cityDiscount*100 }}%</span>
+          <span v-if="detailData.buyerLevel=='SPECIAL'">{{ record.specialDiscount*100 }}%</span>
         </div>
         <div v-else>--</div>
       </template>