diff --git a/manager/src/styles/common.scss b/manager/src/styles/common.scss
index 29d84517..0aa5cad0 100644
--- a/manager/src/styles/common.scss
+++ b/manager/src/styles/common.scss
@@ -14,7 +14,9 @@ $theme_color: #804ed1;
border-radius: 1em;
background-color: rgba(50,50,50,.1);
}
-
+.ivu-table table{
+ width: 100%!important;
+}
.flex{
display: flex !important;
diff --git a/manager/src/views/main-components/tags-page-opened.vue b/manager/src/views/main-components/tags-page-opened.vue
index 0df6ed37..9e2f432b 100644
--- a/manager/src/views/main-components/tags-page-opened.vue
+++ b/manager/src/views/main-components/tags-page-opened.vue
@@ -8,20 +8,8 @@
@mousewheel="handlescroll"
class="tags-outer-scroll-con"
>
-
-
diff --git a/seller/src/assets/logo-min.png b/seller/src/assets/logo-min.png
deleted file mode 100644
index 6de196a8..00000000
Binary files a/seller/src/assets/logo-min.png and /dev/null differ
diff --git a/seller/src/styles/common.scss b/seller/src/styles/common.scss
index 41d2dd26..63488166 100644
--- a/seller/src/styles/common.scss
+++ b/seller/src/styles/common.scss
@@ -14,7 +14,9 @@ $theme_color: #804ed1;
border-radius: 1em;
background-color: rgba(50,50,50,.1);
}
-
+.ivu-table table {
+ width: 100%!important;
+}
.flex{
display: flex !important;
diff --git a/seller/src/views/goods/goods-seller/goodsOperation.vue b/seller/src/views/goods/goods-seller/goodsOperation.vue
index 4ae186a7..5a3362d7 100644
--- a/seller/src/views/goods/goods-seller/goodsOperation.vue
+++ b/seller/src/views/goods/goods-seller/goodsOperation.vue
@@ -28,7 +28,7 @@
:key="index"
>
{{ item.name }}
- 》
+ >
@@ -39,7 +39,7 @@
:key="index"
>
{{ item.name }}
- 》
+ >
@@ -701,6 +701,34 @@ export default {
this.activestep = 1;
this.isOperationGoods = false;
this.GET_GoodData();
+ } else if (to.query.id) {
+ this.activestep = 1;
+ this.goodsId = this.$route.query.id;
+ this.GET_GoodData();
+ } else {
+ this.baseInfoForm = {
+ salesModel: "RETAIL",
+ goodsParamsList: [],
+ freightPayer: "BUYER",
+ weight: "",
+ goodsGalleryFiles: [],
+ release: "true",
+ recommend: "true",
+ storeCategoryPath: "",
+ brandId: 0,
+ goodsUnit: "",
+ categoryPath: "",
+ sellingPoint: "",
+ intro: "",
+ mobileIntro: "",
+ updateSku: true,
+ regeneratorSkuFlag: false,
+ templateId: 0,
+ };
+ this.activestep = 0;
+ this.isPublish = true;
+ this.GET_GoodsTemplate();
+ this.GET_NextLevelCategory();
}
}
},
@@ -985,7 +1013,25 @@ export default {
}
//新增商品
else {
- this.baseInfoForm = {};
+ this.baseInfoForm = {
+ salesModel: "RETAIL",
+ goodsParamsList: [],
+ freightPayer: "BUYER",
+ weight: "",
+ goodsGalleryFiles: [],
+ release: "true",
+ recommend: "true",
+ storeCategoryPath: "",
+ brandId: 0,
+ goodsUnit: "",
+ categoryPath: "",
+ sellingPoint: "",
+ intro: "",
+ mobileIntro: "",
+ updateSku: true,
+ regeneratorSkuFlag: false,
+ templateId: 0,
+ };
this.activestep = 0;
this.isPublish = true;
this.GET_GoodsTemplate();
@@ -1088,6 +1134,7 @@ export default {
});
},
handleBeforeUploadGoodsPicture() {
+ console.log(this.baseInfoForm);
const check = this.baseInfoForm.goodsGalleryFiles.length < 5;
if (!check) {
this.$Notice.warning({
@@ -1198,6 +1245,7 @@ export default {
...this.baseInfoForm,
...response.result,
};
+ console.warn(this.baseInfoForm);
if (this.baseInfoForm.freightPayer != "BUYER") {
API_Shop.getShipTemplate().then((res) => {
if (res.success) {
@@ -1702,6 +1750,7 @@ export default {
this.GET_GoodData();
return;
}
+ console.log(this.baseInfoForm);
this.GET_GoodsParams();
/** 1级校验 */
this.loading = true;
diff --git a/seller/src/views/main.scss b/seller/src/views/main.scss
index d4d2ea6d..15864933 100644
--- a/seller/src/views/main.scss
+++ b/seller/src/views/main.scss
@@ -258,7 +258,7 @@
top: 100px;
right: 0;
bottom: 0;
- height: calc(100% + 52px);
+ height: calc(100% + 200px);
width: calc(100% - 240px);
background-color: #f0f0f0;
diff --git a/seller/src/views/promotion/pintuan/pintuanGoods.vue b/seller/src/views/promotion/pintuan/pintuanGoods.vue
index b1d56c37..73aedb0f 100644
--- a/seller/src/views/promotion/pintuan/pintuanGoods.vue
+++ b/seller/src/views/promotion/pintuan/pintuanGoods.vue
@@ -19,11 +19,14 @@
@@ -138,27 +141,9 @@ export default {
{
title: "操作",
- key: "action",
+ slot: "action",
minWidth: 50,
align: "center",
- render: (h, params) => {
- return h(
- "Button",
- {
- props: {
- size: "small",
- type: "error",
- ghost: true,
- },
- on: {
- click: () => {
- this.delGoods(params.index);
- },
- },
- },
- "删除"
- );
- },
},
],
goodsData: [], // 商品列表
@@ -327,9 +312,9 @@ export default {
margin: 20px 0;
font-size: 15px;
&::before{
- content: '';
- border: 1px solid $theme_color;
- height: 10px;
+ content: '|';
+ color: $theme_color;
+ display: inline-block;
font-weight: bold;
font-size: 16px;
margin-right: 5px;
diff --git a/seller/src/views/promotion/seckill/seckill.vue b/seller/src/views/promotion/seckill/seckill.vue
index 9367daa3..49d4ced7 100644
--- a/seller/src/views/promotion/seckill/seckill.vue
+++ b/seller/src/views/promotion/seckill/seckill.vue
@@ -64,14 +64,19 @@
+
diff --git a/seller/src/views/promotion/seckill/seckillGoods.vue b/seller/src/views/promotion/seckill/seckillGoods.vue
index 3b6fb1fd..7dfa3450 100644
--- a/seller/src/views/promotion/seckill/seckillGoods.vue
+++ b/seller/src/views/promotion/seckill/seckillGoods.vue
@@ -16,7 +16,7 @@
-
+
已选择 {{ selectCount }} 项
@@ -101,8 +101,7 @@