@@ -82,26 +82,24 @@ export default {
this.verifyText = '解锁失败';
let that = this;
setTimeout(() => {
- that.refresh();
+ that.init();
}, 1000);
this.$emit('change', { status: false, distance: this.distance });
}
} else {
- this.refresh()
+ this.init()
}
- }).catch(() => {
- this.refresh()
+
+ }).catch(()=>{
+ this.init()
});
},
- refresh () { // 刷新滑块
+ init () { // 初始化数据
this.flag = false;
this.downX = 0;
this.distance = 0;
this.bgColor = '#04ad11';
this.verifyText = '拖动滑块解锁';
- this.init();
- },
- init () { // 初始化数据
getVerifyImg(this.type).then(res => {
if (res.result) {
this.data = res.result;
diff --git a/buyer/src/config/index.js b/buyer/src/config/index.js
index e3011596..f6d6212c 100644
--- a/buyer/src/config/index.js
+++ b/buyer/src/config/index.js
@@ -17,10 +17,10 @@ export default {
* @description api请求基础路径
*/
api_dev: {
- // common: 'http://192.168.0.100:8890',
- // buyer: 'http://192.168.0.100:8888',
- // seller: 'http://192.168.0.100:8889',
- // manager: 'http://192.168.0.100:8887'
+ // common: 'http://192.168.0.106:8890',
+ // buyer: 'http://192.168.0.106:8888',
+ // seller: 'http://192.168.0.106:8889',
+ // manager: 'http://192.168.0.106:8887'
common: 'https://common-api.pickmall.cn',
buyer: 'https://buyer-api.pickmall.cn',
diff --git a/buyer/src/pages/forgetPassword.vue b/buyer/src/pages/forgetPassword.vue
index 88dced4e..469d329f 100644
--- a/buyer/src/pages/forgetPassword.vue
+++ b/buyer/src/pages/forgetPassword.vue
@@ -97,7 +97,7 @@
条款
- Copyright © 2020 - Present
+ Copyright © {{year}} - Present
lili-shop
@@ -130,6 +130,7 @@ export default {
password: '',
oncePasd: ''
},
+ year: new Date().getFullYear(), // 当前年份
step: 0, // 步骤
ruleInline: {
// 验证规则
diff --git a/buyer/src/pages/home/memberCenter/Favorites.vue b/buyer/src/pages/home/memberCenter/Favorites.vue
index d63fcd2b..f57a6b94 100644
--- a/buyer/src/pages/home/memberCenter/Favorites.vue
+++ b/buyer/src/pages/home/memberCenter/Favorites.vue
@@ -5,11 +5,8 @@
-
-
+
+
{{params.type === 'GOODS'? item.goodsName : item.storeName}}
diff --git a/buyer/src/pages/home/orderCenter/AfterSale.vue b/buyer/src/pages/home/orderCenter/AfterSale.vue
index c5f896db..271fcc29 100644
--- a/buyer/src/pages/home/orderCenter/AfterSale.vue
+++ b/buyer/src/pages/home/orderCenter/AfterSale.vue
@@ -84,7 +84,9 @@ export default {
params: { // 请求参数
pageNumber: 1,
pageSize: 10,
- keywords: ''
+ keywords: '',
+ sort: 'createTime',
+ order: 'desc'
},
// 状态数组
afterSaleStatusList,
diff --git a/buyer/src/pages/home/orderCenter/OrderDetail.vue b/buyer/src/pages/home/orderCenter/OrderDetail.vue
index 5baf7772..bf0223fd 100644
--- a/buyer/src/pages/home/orderCenter/OrderDetail.vue
+++ b/buyer/src/pages/home/orderCenter/OrderDetail.vue
@@ -46,9 +46,7 @@
商品 |
-
货号 |
-
单价 |
数量 |
小计 |
@@ -82,10 +80,11 @@
运费:+{{ order.order.freightPrice | unitPrice("¥") }}
- 优惠金额:-{{ order.order.discountPrice | unitPrice("¥") }}
+ 优惠券:-{{ order.order.priceDetailDTO.couponPrice || 0 | unitPrice("¥") }}
+ 活动优惠:-{{ order.order.discountPrice | unitPrice("¥") }}
- 应付金额:{{ order.order.flowPrice | unitPrice("¥") }}
+ 应付金额:
+ {{ order.order.flowPrice | unitPrice("¥") }}
@@ -121,7 +120,7 @@ export default {
});
window.open(routeUrl.href, '_blank');
},
- getDetail () { // 订单详情
+ getDetail () { // 获取订单详情
orderDetail(this.$route.query.sn).then(res => {
if (res.success) {
this.order = res.result;
diff --git a/manager/src/api/member.js b/manager/src/api/member.js
index fbce5ce1..48850755 100644
--- a/manager/src/api/member.js
+++ b/manager/src/api/member.js
@@ -98,7 +98,7 @@ export const getMemberStatistics = params => {
};
-// 获取会员注册统计列表
+// 获取流量统计
export const getStatisticsList = params => {
return getRequest("/statistics/view/list", params);
};
diff --git a/manager/src/config/index.js b/manager/src/config/index.js
index 8b6b162f..deef8a67 100644
--- a/manager/src/config/index.js
+++ b/manager/src/config/index.js
@@ -17,14 +17,14 @@ export default {
* @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"
- common: 'http://192.168.0.109:8890',
- buyer: 'http://192.168.0.109:8888',
- seller: 'http://192.168.0.109:8889',
- manager: 'http://192.168.0.109:8887'
+ common: "https://common-api.pickmall.cn",
+ buyer: "https://buyer-api.pickmall.cn",
+ seller: "https://store-api.pickmall.cn",
+ manager: "https://admin-api.pickmall.cn"
+ // common: 'http://192.168.0.103:8890',
+ // buyer: 'http://192.168.0.103:8888',
+ // seller: 'http://192.168.0.103:8889',
+ // manager: 'http://192.168.0.103:8887'
},
api_prod: {
common: "https://common-api.pickmall.cn",
diff --git a/manager/src/router/router.js b/manager/src/router/router.js
index 17649475..2e4b1e8d 100644
--- a/manager/src/router/router.js
+++ b/manager/src/router/router.js
@@ -242,13 +242,6 @@ export const otherRouter = {
name: "edit-platform-coupon",
component: () => import("@/views/promotion/coupon/couponPublish.vue")
},
- {
- path: "promotion/member-receive-coupon",
- title: "领取详情",
- name: "member-receive-coupon",
- component: () =>
- import("@/views/promotion/coupon/memberReceiveCoupon.vue")
- },
{
path: "promotion/platform-coupon-info",
title: "详情",
@@ -273,25 +266,12 @@ export const otherRouter = {
name: "coupon-activity-info",
component: () => import("@/views/promotion/couponActivity/couponInfo.vue")
},
- {
- path: "promotion/member-receive-coupon",
- title: "领取详情",
- name: "member-coupon-activity",
- component: () =>
- import("@/views/promotion/coupon/memberReceiveCoupon.vue")
- },
{
path: "promotion/platform-coupon-info",
title: "详情",
name: "platform-coupon-activity",
component: () => import("@/views/promotion/coupon/couponInfo.vue")
},
- {
- path: "promotion/add-coupon-specify",
- title: "精准发劵",
- name: "add-coupon-specify",
- component: () => import("@/views/promotion/coupon/couponSpecify.vue")
- },
{
path: "promotion/manager-pintuan",
title: "平台拼团",
diff --git a/manager/src/views/distribution/distributionOrder.vue b/manager/src/views/distribution/distributionOrder.vue
index 0a828d92..b1f30079 100644
--- a/manager/src/views/distribution/distributionOrder.vue
+++ b/manager/src/views/distribution/distributionOrder.vue
@@ -52,6 +52,9 @@
+
+ {{filterStatus(row.distributionOrderStatus)}}
+