Commit e6f2cbdc authored by Mac's avatar Mac

1

parent 7c22b3ca
......@@ -143,7 +143,14 @@
</el-table-column>
<el-table-column label="营业成本" align="center">
<el-table-column label="手续费" prop="ServiceCharge" width="80"></el-table-column>
<el-table-column label="手续费" prop="ServiceCharge" width="80">
<template slot-scope="scope">
<span v-if="scope.row.OrderNo=='小计' ">{{scope.row.ServiceCharge-scope.row.ReturnServiceCharge}} </span>
<span v-else >{{scope.row.ServiceCharge}}<span style=" color: #ff4544;" v-if="scope.row.ReturnServiceCharge>0">-{{scope.row.ReturnServiceCharge}}</span> </span>
</template>
</el-table-column>
<el-table-column label="采购成本" prop="CostMoney"></el-table-column>
<el-table-column label="运费支出" prop="GoodsFreight" ></el-table-column>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment