老师写删除项目那部分写得复杂了,只需要在v-for中修改为v-for="(item,index) in productList",然后用下面这个函数就可以删除了:
deleteProduct: function (index) {
this.productList.splice(index,1);
this.delFlag = false;
}
deleteProduct: function (index) {
this.productList.splice(index,1);
this.delFlag = false;
}
2017-05-15