diff --git a/buyer/favicon.ico b/buyer/favicon.ico deleted file mode 100644 index df36fcfb..00000000 Binary files a/buyer/favicon.ico and /dev/null differ diff --git a/buyer/public/config.js b/buyer/public/config.js new file mode 100644 index 00000000..f54f0890 --- /dev/null +++ b/buyer/public/config.js @@ -0,0 +1,18 @@ +var BASE = { + /** + * @description api请求基础路径 + */ + API_DEV: { + common: "https://common-api.pickmall.cn", + buyer: "https://buyer-api.pickmall.cn", + seller: "https://store-api.pickmall.cn", + manager: "https://admin-api.pickmall.cn" + }, + API_PROD: { + common: "https://common-api.pickmall.cn", + buyer: "https://buyer-api.pickmall.cn", + seller: "https://store-api.pickmall.cn", + manager: "https://admin-api.pickmall.cn" + }, + }; + \ No newline at end of file diff --git a/buyer/public/index.html b/buyer/public/index.html index f54bba8f..f9c1f5e2 100644 --- a/buyer/public/index.html +++ b/buyer/public/index.html @@ -14,7 +14,9 @@ <% for(var js of htmlWebpackPlugin.options.cdn.js) { %> <% } %> +
diff --git a/buyer/src/assets/images/jinghui.png b/buyer/src/assets/images/jinghui.png new file mode 100644 index 00000000..bd214fb4 Binary files /dev/null and b/buyer/src/assets/images/jinghui.png differ diff --git a/buyer/src/assets/images/zhizhao.jpg b/buyer/src/assets/images/zhizhao.jpg new file mode 100644 index 00000000..e6352bf7 Binary files /dev/null and b/buyer/src/assets/images/zhizhao.jpg differ diff --git a/buyer/src/components/footer/Footer.vue b/buyer/src/components/footer/Footer.vue index 7a884ea0..d39875bf 100644 --- a/buyer/src/components/footer/Footer.vue +++ b/buyer/src/components/footer/Footer.vue @@ -29,18 +29,38 @@
- @@ -48,28 +68,32 @@ @@ -77,11 +101,9 @@ export default { /*****************************底 部 开 始*****************************/ .footer { width: 100%; - height: 380px; padding-top: 30px; @include background_color($light_background_color); - } .icon-row { margin: 15px auto; @@ -112,7 +134,20 @@ export default { .footer-icon-child-4 { background-position: 0 -129px; } - .footer-icon-text{ +.icp { + >*{ + margin: 0 4px; + } + flex-direction: column; +} +.flex{ + display: flex; + align-items: center; + >img{ + margin-right: 4px; + } +} +.footer-icon-text { margin-left: 45px; font-size: 18px; font-weight: bold; @@ -146,14 +181,24 @@ export default { .friend-link { display: flex; - align-items: center; + align-items: flex-start; + justify-content: space-between; width: 908px; - height: 30px; + padding: 10px 0; margin: 0px auto; border-top: 1px solid $border_color; } -.friend-link-item { - margin: 0px auto; +.information { + display: flex; + flex-direction: column; + > * { + margin: 2px 0; + } +} +.zhizhao { + width: 20px; + height: 20px; + border-radius: 50%; } .friend-link-item ul { list-style: none; @@ -175,15 +220,17 @@ export default { line-height: 30px; text-align: center; } -.copyright a{ +.copyright a { color: #232323; font-size: 20px; } -.footer-icon-text{ - @include title_color($light_title_color) +.footer-icon-text { + @include title_color($light_title_color); } -.copyright,.friend-link,.servece-type-info { - @include sub_color($light_sub_color) +.copyright, +.friend-link, +.servece-type-info { + @include sub_color($light_sub_color); } /*****************************底 部 结 束*****************************/ diff --git a/buyer/src/components/indexDecorate/modelList/Carousel.vue b/buyer/src/components/indexDecorate/modelList/Carousel.vue index 45c6be95..bea6e5c5 100644 --- a/buyer/src/components/indexDecorate/modelList/Carousel.vue +++ b/buyer/src/components/indexDecorate/modelList/Carousel.vue @@ -23,7 +23,7 @@
-
Hi,{{ userInfo.nickName || "欢迎来到LiLi Shop" | secrecyMobile }}
+
Hi,{{ userInfo.nickName || `欢迎来到${config.title}` | secrecyMobile }}
@@ -49,6 +49,7 @@ diff --git a/buyer/src/pages/payment/Pay.vue b/buyer/src/pages/payment/Pay.vue index a9749a98..88fbb69a 100644 --- a/buyer/src/pages/payment/Pay.vue +++ b/buyer/src/pages/payment/Pay.vue @@ -5,7 +5,7 @@ - +
@@ -361,11 +359,12 @@ export default { indeterminate: true, // 复选框全选样式 checkAll: false, // 全选 checkAllGroup: [], // 全选数组 + submitLoading: false, // 添加或编辑提交状态 settlementCycle: [], // 结算周期 shopForm: { // 店铺数据 settlementCycle: "", - selfOperated: false, + selfOperated: 0, memberName: "", companyName: "", addressPath: "", diff --git a/seller/src/views/promotion/coupon/coupon.vue b/seller/src/views/promotion/coupon/coupon.vue index bfd4e42b..da361deb 100644 --- a/seller/src/views/promotion/coupon/coupon.vue +++ b/seller/src/views/promotion/coupon/coupon.vue @@ -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) + "折"); } }, }, diff --git a/seller/src/views/promotion/seckill/seckillGoods.vue b/seller/src/views/promotion/seckill/seckillGoods.vue index fc78ea11..b570c8b1 100644 --- a/seller/src/views/promotion/seckill/seckillGoods.vue +++ b/seller/src/views/promotion/seckill/seckillGoods.vue @@ -18,90 +18,45 @@ - - + +
@@ -110,323 +65,299 @@ - + - + diff --git a/seller/src/views/shop/ship/shipTemplate.vue b/seller/src/views/shop/ship/shipTemplate.vue index 86e9c9b1..52d11c5f 100644 --- a/seller/src/views/shop/ship/shipTemplate.vue +++ b/seller/src/views/shop/ship/shipTemplate.vue @@ -66,7 +66,9 @@ 包邮 + + 点击右侧修改按钮编辑数据
@@ -84,7 +86,8 @@ - + @@ -101,7 +104,8 @@ - + @@ -109,9 +113,11 @@ - - @@ -136,7 +142,8 @@
- @@ -145,7 +152,7 @@ - + @@ -214,7 +221,7 @@ export default { }, //添加运费模板 add() { - this.$refs.region.clear() + this.$refs.region.clear(); this.title = "添加运费模板"; this.csTab = true; this.operation = "ADD";