修改购物车页面
This commit is contained in:
parent
7ac5846bcc
commit
de3547c79b
|
@ -54,38 +54,7 @@ export default {
|
||||||
name: "order-cart",
|
name: "order-cart",
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
list: [
|
list: [],
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
name: "空调安装",
|
|
||||||
list: [
|
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
name: "格力空调安装",
|
|
||||||
icon: require("@/static/temp/cate/1.png"),
|
|
||||||
buyNumber: 1,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
name: "美的空调安装",
|
|
||||||
icon: require("@/static/temp/cate/1.png"),
|
|
||||||
buyNumber: 1,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
name: "管道疏通",
|
|
||||||
list: [
|
|
||||||
{
|
|
||||||
id: 3,
|
|
||||||
name: "厨房下水道",
|
|
||||||
icon: require("@/static/temp/cate/1.png"),
|
|
||||||
buyNumber: 10,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
|
@ -97,7 +66,38 @@ export default {
|
||||||
ServicePreviewItem,
|
ServicePreviewItem,
|
||||||
},
|
},
|
||||||
onLoad() {
|
onLoad() {
|
||||||
this.list = this.parseList(this.list);
|
this.list = this.parseList([
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: "空调安装",
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
name: "格力空调安装",
|
||||||
|
icon: require("@/static/temp/cate/1.png"),
|
||||||
|
buyNumber: 1,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
name: "美的空调安装",
|
||||||
|
icon: require("@/static/temp/cate/1.png"),
|
||||||
|
buyNumber: 1,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
name: "管道疏通",
|
||||||
|
list: [
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
name: "厨房下水道",
|
||||||
|
icon: require("@/static/temp/cate/1.png"),
|
||||||
|
buyNumber: 10,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
]);
|
||||||
},
|
},
|
||||||
onShow() {},
|
onShow() {},
|
||||||
onReady() {},
|
onReady() {},
|
||||||
|
@ -137,7 +137,7 @@ export default {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
this.list[parentIndex].checked = allChecked;
|
this.list[parentIndex].checked = allChecked;
|
||||||
this.$forceUpdate();
|
// this.$forceUpdate();
|
||||||
},
|
},
|
||||||
changeNumber(e, d) {
|
changeNumber(e, d) {
|
||||||
console.log(e);
|
console.log(e);
|
||||||
|
|
Loading…
Reference in New Issue