|
|
@@ -14,7 +14,7 @@
|
|
|
<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:28upx;font-weight:normal;color:green;">花材名称 / 进货价 / 成本价(进货价+运费) </text>
|
|
|
+ <text style="font-size:22upx;font-weight:normal;color:green;">花材名称 / 进货价 / 成本价(进货价+运费)/ 入库数 </text>
|
|
|
</view>
|
|
|
|
|
|
<view v-for="(res,i) in flowersList" :key="i">
|
|
|
@@ -23,8 +23,10 @@
|
|
|
<view style="margin-bottom:6upx;">
|
|
|
<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:40upx;font-weight:normal;">¥{{res.bigPrice?parseFloat(res.bigPrice):0}}</text>
|
|
|
- <text style="color:red;margin-left:40upx;font-weight:normal;">¥{{res.cost?parseFloat(res.cost):0}}</text>
|
|
|
+ <text style="color:red;margin-left:25upx;font-weight:normal;">¥{{res.bigPrice?parseFloat(res.bigPrice):0}}</text>
|
|
|
+ <text style="color:red;margin-left:25upx;font-weight:normal;">¥{{res.cost?parseFloat(res.cost):0}}</text>
|
|
|
+ <text style="color:#CCCCCC;margin-left:25upx;font-weight:normal;">¥{{res.beforeModifyPrice?parseFloat(res.beforeModifyPrice):0}}</text>
|
|
|
+ <text style="color:#CCCCCC;margin-left:25upx;font-weight:normal;">{{res.itemNum?parseFloat(res.itemNum):0}}{{res.bigUnit}}</text>
|
|
|
<text style="float:right;color:green;">...</text>
|
|
|
</text>
|
|
|
</view>
|