fix(order/index.vue): 订单分页列表数据加载失败问题修复

This commit is contained in:
郝先瑞
2022-02-25 00:11:03 +08:00
parent 617238cc13
commit b32bb51e95

View File

@@ -54,18 +54,18 @@
border border
> >
<el-table-column label="序号" type="index" width="100"/> <el-table-column label="序号" type="index" width="100"/>
<el-table-column label="商品编号" align="center" prop="skuCode"/> <el-table-column label="商品编号" align="center" prop="skuSn"/>
<el-table-column label="商品规格" align="center" prop="skuName"/> <el-table-column label="商品规格" align="center" prop="skuName"/>
<el-table-column label="图片" prop="skuPic"> <el-table-column label="图片" prop="picUrl">
<template slot-scope="scope"> <template slot-scope="scope">
<img :src="scope.row.skuPic" width="40"> <img :src="scope.row.picUrl" width="40">
</template> </template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="单价" prop="skuPrice"> <el-table-column align="center" label="单价" prop="price">
<template slot-scope="scope">{{ scope.row.skuPrice}}</template> <template slot-scope="scope">{{ scope.row.price}}</template>
</el-table-column> </el-table-column>
<el-table-column align="center" label="数量" prop="skuQuantity"> <el-table-column align="center" label="数量" prop="count">
<template slot-scope="scope">{{ scope.row.skuQuantity }}</template> <template slot-scope="scope">{{ scope.row.count }}</template>
</el-table-column> </el-table-column>
</el-table> </el-table>
</template> </template>