diff --git a/src/api/modules/mer_admin.js b/src/api/modules/mer_admin.js
index ce219c1..c7fb203 100644
--- a/src/api/modules/mer_admin.js
+++ b/src/api/modules/mer_admin.js
@@ -46,7 +46,7 @@ export const mer_admin = {
},
//商品分页
getProductPage: (data) => {
- return $http.post(`/merchant-api/product/page`, data);
+ return $http.post(`/merchant-api/product/page?pageNumber=${data.p.pageNumber}&pageSize=${data.p.pageSize}`, data);
},
//商品概况
getProductOverview: (data) => {
diff --git a/src/views/modules/datacenter/customer-analysis/index.vue b/src/views/modules/datacenter/customer-analysis/index.vue
index 0d9d0a8..1a7e9d2 100644
--- a/src/views/modules/datacenter/customer-analysis/index.vue
+++ b/src/views/modules/datacenter/customer-analysis/index.vue
@@ -266,6 +266,7 @@ export default {
新客数量: row.newPeopleCount,
支付订单人数: row.payCount,
支付订单转化率: row.payConversion,
+ 客户复购率: row.repurchaseRate
},
];
const workbook = XLSX.utils.book_new();
@@ -324,4 +325,4 @@ export default {
color: #969696;
margin-bottom: 10px;
}
-
\ No newline at end of file
+
diff --git a/src/views/modules/operation-management/commodity/popup/add-price.vue b/src/views/modules/operation-management/commodity/popup/add-price.vue
index 3fcafb6..0d31532 100644
--- a/src/views/modules/operation-management/commodity/popup/add-price.vue
+++ b/src/views/modules/operation-management/commodity/popup/add-price.vue
@@ -103,7 +103,7 @@ export default {
render: () => {
return (
@@ -128,7 +128,7 @@ export default {
},
{
title: "价格",
- field: "salePrice",
+ field: "marketPrice",
align: "center",
type: "jsx",
render: ({ row }) => {
@@ -137,7 +137,7 @@ export default {
@@ -187,4 +187,4 @@ export default {
};
\ No newline at end of file
+