|
|
@@ -84,7 +84,7 @@
|
|
|
|
|
|
<script>
|
|
|
import { getCustomerOrderList } from "@/api/store/storeOrder";
|
|
|
-import productOrder from "../../store/components/productOrder";
|
|
|
+import productOrder from "../../hisStore/components/productOrder";
|
|
|
export default {
|
|
|
components: { productOrder },
|
|
|
name: "customerVisit",
|
|
|
@@ -108,7 +108,7 @@ import productOrder from "../../store/components/productOrder";
|
|
|
queryParams: {
|
|
|
pageNum: 1,
|
|
|
pageSize: 10,
|
|
|
- customerId: null,
|
|
|
+ userId: null,
|
|
|
},
|
|
|
};
|
|
|
},
|
|
|
@@ -140,8 +140,8 @@ import productOrder from "../../store/components/productOrder";
|
|
|
this.$refs.order.getOrder(orderId);
|
|
|
}, 500);
|
|
|
},
|
|
|
- getData(customerId){
|
|
|
- this.queryParams.customerId=customerId;
|
|
|
+ getData(userId){
|
|
|
+ this.queryParams.userId=userId;
|
|
|
this.queryParams.pageNum=1;
|
|
|
this.getList();
|
|
|
},
|