This commit is contained in:
parent
64b4ebb88a
commit
5c10f30eae
|
|
@ -236,7 +236,7 @@
|
|||
<el-table-column label="金额" prop="salesAmount"></el-table-column>
|
||||
</el-table>
|
||||
<div class="head-container" style="padding-top: 20px;display: flex;justify-content: flex-end;">
|
||||
<el-pagination :total="saleTableTotal" :page-size="saleTableSize" :current-page="saleTablePage"
|
||||
<el-pagination :total="saleTableTotal" :page-size="saleTableSize" :current-page="saleTablePage + 1"
|
||||
@current-change="paginationChange" layout="total, prev, pager, next, jumper"></el-pagination>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -767,7 +767,7 @@ export default {
|
|||
}
|
||||
},
|
||||
paginationChange(e) {
|
||||
this.saleTablePage = e;
|
||||
this.saleTablePage = e - 1;
|
||||
this.dateProduct();
|
||||
},
|
||||
// 获取销售额排行表格数据
|
||||
|
|
|
|||
|
|
@ -734,6 +734,11 @@ export default {
|
|||
specInfo[index].suit = item.suit;
|
||||
specInfo[index].stockNumber = item.stockNumber;
|
||||
specInfo[index].isGrounding = item.isGrounding;
|
||||
specInfo[index].salePrice = item.salePrice;
|
||||
specInfo[index].memberPrice = item.memberPrice;
|
||||
specInfo[index].costPrice = item.costPrice;
|
||||
specInfo[index].originPrice = item.originPrice;
|
||||
specInfo[index].firstShared = item.firstShared;
|
||||
return specInfo[index];
|
||||
});
|
||||
console.log(this.form.skuList);
|
||||
|
|
|
|||
Loading…
Reference in New Issue