diff --git a/src/api/securitySetting.js b/src/api/securitySetting.js index 5dc7ffc..0c27aab 100644 --- a/src/api/securitySetting.js +++ b/src/api/securitySetting.js @@ -18,3 +18,11 @@ export function modfiyUserInfo(data) { data, }); } +// 校验安全密码 +export function tbShopInfoPUT(data) { + return request({ + url: "/api/tbShopInfo", + method: 'put', + data + }) +} diff --git a/src/views/order_manage/order_list.vue b/src/views/order_manage/order_list.vue index ced920f..239c203 100644 --- a/src/views/order_manage/order_list.vue +++ b/src/views/order_manage/order_list.vue @@ -313,7 +313,8 @@ export default { pageSize: this.tableData.size, orderType: this.orderType, ...this.query, - productName + productName, + userId:this.$route.query.userId }); this.tableData.loading = false; this.tableData.data = res.content; diff --git a/src/views/shop/components/securitySetting.vue b/src/views/shop/components/securitySetting.vue index 5602d91..ea00be8 100644 --- a/src/views/shop/components/securitySetting.vue +++ b/src/views/shop/components/securitySetting.vue @@ -1,6 +1,11 @@