Browse Source

修改成本

shish 8 months ago
parent
commit
7512542ab1
1 changed files with 3 additions and 2 deletions
  1. 3 2
      ghsApp/src/pagesPurchase/components/pageSuccess.vue

+ 3 - 2
ghsApp/src/pagesPurchase/components/pageSuccess.vue

@@ -14,7 +14,8 @@
 						<view class="flex title" v-if="info.status == 3"> 入库前请确认售价: </view>
 						<view class="flex title" v-else> 确认售价: </view>
 						<view class="flex title">
-							<text style="font-size:22upx;font-weight:normal;color:green;">花材名称 / 进货价 / 成本价 / 旧批发价 / 入库数 / 原库存</text>
+							<text style="font-size:25upx;font-weight:normal;color:#CCCCCC;">
+								<text style="color:black;font-weight:bold;margin:0 5upx 0 0;">花材名称</text> / <text style="color:red;font-weight:normal;margin:0 5upx 0 5upx;">进货价</text> / <text style="color:#3385FF;font-weight:bold;margin:0 5upx 0 5upx;">成本价</text> / 旧批发价 / 入库数 / 原库存</text>
 						</view>
 
 						<view v-for="(res,i) in flowersList" :key="i">
@@ -24,7 +25,7 @@
 										<text class="name" @click="pageTo({url:'/admin/item/detail?id='+ res.productId})">
 											{{res.name?res.name.substr(0,11):''}}
 											<text style="color:red;margin-left:13upx;font-weight:normal;font-size:26upx;">¥{{res.bigPrice?parseFloat(res.bigPrice):0}}</text>
-											<text style="color:red;margin-left:13upx;font-weight:normal;font-size:26upx;">¥{{res.cost?parseFloat(res.cost):0}}</text>
+											<text style="color:#3385FF;margin-left:13upx;font-weight:bold;font-size:26upx;">¥{{res.cost?parseFloat(res.cost):0}}</text>
 											<text style="color:#CCCCCC;margin-left:13upx;font-weight:normal;font-size:26upx;">旧¥{{res.beforeModifyPrice?parseFloat(res.beforeModifyPrice):0}}</text>
 											<text style="color:#CCCCCC;margin-left:13upx;font-weight:normal;font-size:26upx;">{{res.itemNum?parseFloat(res.itemNum):0}}{{res.bigUnit}}</text>
 											<text style="color:#CCCCCC;margin-left:13upx;font-weight:normal;font-size:26upx;">{{res.beforeModifyStock?parseFloat(res.beforeModifyStock):0}}{{res.bigUnit}}</text>