
<template>
<div class="wrap">
<el-table
empty-text="购物车为空"
:data="tableData"
:summary-method="getSummaries"
show-summary
style="width: 100%">
<el-table-column
label="商品名称"
prop="name"
width="100">
</el-table-column>
<el-table-column
label="商品单价"
prop="price"
width="130">
</el-table-column>
<el-table-column
label="购买数量"
width="180"
prop="num"
>
<template slot-scope="scope">
<el-button @click="sub(scope.$index, scope.row)">-</el-button>
<span>{
{scope.row.num}}</span>
<el-button @click="add(scope.$index, scope.row)">+</el-button>
</template>
<