|
@@ -563,7 +563,7 @@ export default {
|
|
|
// 获取用户信息
|
|
|
getMemberDetail() {
|
|
|
this.$axios
|
|
|
- .get('/au/member/detail')
|
|
|
+ .get('/api/au/member/detail')
|
|
|
.then(res => {
|
|
|
if (res.code === 1) {
|
|
|
this.profileform = res.result
|
|
@@ -600,7 +600,7 @@ export default {
|
|
|
needLogout = true
|
|
|
}
|
|
|
this.$axios
|
|
|
- .post('/au/member/edit', requestBody)
|
|
|
+ .post('/api/au/member/edit', requestBody)
|
|
|
.then(res => {
|
|
|
if (res.code === 1) {
|
|
|
this.$notify({
|
|
@@ -631,7 +631,7 @@ export default {
|
|
|
const type = this.activeMenu === 'all-orders'?'':this.activeMenu === 'open-orders'? 'Open Orders':'Closed Orders'
|
|
|
this.tableLoading = true
|
|
|
this.$axios
|
|
|
- .post('/crmdata/order_lists', {
|
|
|
+ .post('/api/crmdata/order_lists', {
|
|
|
keyword: this.orderKeyword,
|
|
|
page: this.orderListQuery.page,
|
|
|
limit: this.orderListQuery.limit,
|
|
@@ -663,7 +663,7 @@ export default {
|
|
|
getEnquiryList() {
|
|
|
this.tableLoading = true
|
|
|
this.$axios
|
|
|
- .post('/crmdata/enquiries_lists', {
|
|
|
+ .post('/api/crmdata/enquiries_lists', {
|
|
|
keyword: this.enquiryKeyword,
|
|
|
page: this.enquiryListQuery.page,
|
|
|
limit: this.enquiryListQuery.limit,
|
|
@@ -692,7 +692,7 @@ export default {
|
|
|
// 获取地址列表
|
|
|
getAddressList() {
|
|
|
this.$axios
|
|
|
- .get('address/list', {
|
|
|
+ .get('/api/address/list', {
|
|
|
params: {
|
|
|
page: this.addressListQuery.page,
|
|
|
limit: this.addressListQuery.limit,
|
|
@@ -718,7 +718,7 @@ export default {
|
|
|
},
|
|
|
editAddress(num, id) {
|
|
|
this.$axios
|
|
|
- .get('address/detail/' + id)
|
|
|
+ .get('/api/address/detail/' + id)
|
|
|
.then(res => {
|
|
|
this.addressDetail = res.result
|
|
|
this.addressDetail.is_default = res.result.is_default === 1
|
|
@@ -728,7 +728,7 @@ export default {
|
|
|
.catch(() => {})
|
|
|
},
|
|
|
delAddress(id) {
|
|
|
- this.$axios.get('address/delete/' + id).then(res => {
|
|
|
+ this.$axios.get('/api/address/delete/' + id).then(res => {
|
|
|
this.$notify({
|
|
|
title: 'success',
|
|
|
message: 'Deleted successfully',
|
|
@@ -740,7 +740,7 @@ export default {
|
|
|
// .catch((error) => {});
|
|
|
},
|
|
|
setDefault(id) {
|
|
|
- this.$axios.get('address/set_default/' + id).then(res => {
|
|
|
+ this.$axios.get('/api/address/set_default/' + id).then(res => {
|
|
|
this.$notify({
|
|
|
title: 'success',
|
|
|
message: 'Default address is set successfully',
|
|
@@ -762,7 +762,7 @@ export default {
|
|
|
this.$message.error('The second password is inconsistent!')
|
|
|
} else {
|
|
|
this.$axios({
|
|
|
- url: 'au/member/reset',
|
|
|
+ url: '/api/au/member/reset',
|
|
|
method: 'POST',
|
|
|
data: this.accountPasswordForm,
|
|
|
})
|