@@ -38,7 +38,7 @@ export default {
form: {},
search: {
year: defaultDate4(),
- status: "1"
+ status: "0"
},
dataList: [],
loading: false,
@@ -220,7 +220,7 @@ export default {
{
label: "含未发货订单",
prop: "status",
- searchValue:"1",
+ searchValue:"0",
overHidden: true,
hide: true,
showColumn: false,
@@ -26,6 +26,9 @@
<template slot="grossProfitRate" slot-scope="{ row, index }">
<span>{{ Number(row.grossProfitRate ? row.grossProfitRate : 0).toFixed(2) }}</span>
</template>
+ <template slot="purchaseAmount" slot-scope="{ row, index }">
+ <span>{{ Number(row.purchaseAmount ? row.purchaseAmount : 0).toFixed(2) }}</span>
+ </template>
</avue-crud>
</basic-container>
</div>
@@ -23,6 +23,9 @@