修改buyer api路径 将buyer manager seller 统一为 public/config下修改api地址,新增buyer底部 公司,备案号等信息展示,修改商家端seller秒杀bug以及部分issue中的优化方案

This commit is contained in:
lemon橪
2021-10-19 16:40:43 +08:00
parent 7cbd2b698c
commit dbe5a21f4d
22 changed files with 519 additions and 515 deletions

View File

@@ -84,10 +84,10 @@ export default {
if (params.row.price) {
return h(
"div",
this.$options.filters.unitPrice(params.row.price, "¥")
this.$options.filters.unitPrice((params.row.price || 0), "¥")
);
} else {
return h("div", params.row.couponDiscount + "折");
return h("div", (params.row.couponDiscount || 0) + "折");
}
},
},