商家端保存商品列表筛选条件

This commit is contained in:
mabo
2021-05-14 17:28:01 +08:00
parent b6b45926f9
commit f2c2734b15
20 changed files with 132 additions and 105 deletions

View File

@@ -192,27 +192,21 @@ export const otherRouter = {
component: () => import("@/views/goods/goods-info/goodsDetail.vue")
},
{
path: "promotion/manager-poonts-goods",
title: "积分商品",
name: "manager-points-goods",
component: () => import("@/views/promotion/pointsGoods/pointsGoods.vue")
},
{
path: "promotion/add-poonts-goods",
path: "promotion/add-points-goods",
title: "添加积分商品",
name: "add-points-goods",
component: () =>
import("@/views/promotion/pointsGoods/addPointsGoods.vue")
},
{
path: "promotion/edit-poonts-goods",
path: "promotion/edit-points-goods",
title: "修改积分商品",
name: "edit-points-goods",
component: () =>
import("@/views/promotion/pointsGoods/editPointsGoods.vue")
},
{
path: "promotion/manager-poonts-goods-category",
path: "promotion/manager-points-goods-category",
title: "积分商品分类",
name: "manager-points-goods-category",
component: () =>

View File

@@ -234,7 +234,7 @@ export default {
},
{
title: "店铺名称",
key: "sellerName",
key: "storeName",
minWidth: 60,
},
{
@@ -348,7 +348,7 @@ export default {
},
// 关闭当前页面
closeCurrentPage() {
this.$store.commit("removeTag", "add-poonts-goods");
this.$store.commit("removeTag", "add-points-goods");
localStorage.pageOpenedList = JSON.stringify(
this.$store.state.app.pageOpenedList
);
@@ -406,7 +406,7 @@ export default {
originalPrice: e.price,
quantity: e.quantity,
storeId: e.storeId,
sellerName: e.sellerName,
storeName: e.storeName,
skuId: e.id,
...e,
});

View File

@@ -62,6 +62,6 @@ export default {
@import "./style.scss";
/deep/ .ivu-form-item-content{
align-items: center;
paddinig-bottom: 5px;
padding-bottom: 5px;
}
</style>