-
{{ nicknameUser }}
+
{{ userInfo.travelerName }}
{{ schoolNamesChoose.schoolName }}
@@ -211,7 +211,7 @@ export default {
// 获取用户信息
getUserInfo() {
// alert('getUserInfo:' + this.centerNo)
- this.yxAxios.get(`${this.proxyUrl}/user/info/getPortalUserByNum?userNum=${this.centerNo}`).then((res) => {
+ this.yxAxios.post(`${this.proxyUrl}/user/info/getPortalUserByNumV2?userNum=${this.centerNo}`).then((res) => {
console.log('getUserInfo', res)
if (res.data.code == 200) {
let userInfo = res.data.data.userInfo
diff --git a/src/views/Home/HomeUserInfo.vue b/src/views/Home/HomeUserInfo.vue
index 9fa41f3..989c00d 100644
--- a/src/views/Home/HomeUserInfo.vue
+++ b/src/views/Home/HomeUserInfo.vue
@@ -52,7 +52,7 @@ export default {
duration: 0,
forbidClick: true,
})
- this.yxAxios.get(`${this.proxyUrl}/user/info/getPortalUserByNum?userNum=${this.centerNo}`).then((res) => {
+ this.yxAxios.post(`${this.proxyUrl}/user/info/getPortalUserByNumV2?userNum=${this.centerNo}`).then((res) => {
this.$toast.clear()
if (res.data.code == 200) {
const userInfo = res.data.data.userInfo
diff --git a/src/views/Home/component/HomeChildList.vue b/src/views/Home/component/HomeChildList.vue
index b01c91b..06b1052 100644
--- a/src/views/Home/component/HomeChildList.vue
+++ b/src/views/Home/component/HomeChildList.vue
@@ -65,7 +65,7 @@ export default {
duration: 0,
forbidClick: true
})
- this.yxAxios.get(`${this.proxyUrl}/user/info/getPortalUserByNum?userNum=${localStorage.getItem('centerNo')}`).then((res) => {
+ this.yxAxios.post(`${this.proxyUrl}/user/info/getPortalUserByNumV2?userNum=${localStorage.getItem('centerNo')}`).then((res) => {
console.log('getUserInfo', res)
this.$toast.clear()
if (res.data.code == 200) {
diff --git a/src/views/Service/SelectContact.vue b/src/views/Service/SelectContact.vue
index a6be476..aee0d3d 100644
--- a/src/views/Service/SelectContact.vue
+++ b/src/views/Service/SelectContact.vue
@@ -53,7 +53,7 @@ export default {
duration: 0,
forbidClick: true,
})
- this.yxAxios.get(`${this.proxyUrl}/user/info/getPortalUserByNum?userNum=${localStorage.getItem('centerNo')}`).then((res) => {
+ this.yxAxios.post(`${this.proxyUrl}/user/info/getPortalUserByNumV2?userNum=${localStorage.getItem('centerNo')}`).then((res) => {
console.log('联系人列表:', res)
this.$toast.clear()
if (res.data.code == 200) {
diff --git a/src/views/Service/ServiceKQ.vue b/src/views/Service/ServiceKQ.vue
index 64d5d9b..d88622c 100644
--- a/src/views/Service/ServiceKQ.vue
+++ b/src/views/Service/ServiceKQ.vue
@@ -144,7 +144,7 @@ export default {
getUserInfo() {
this.centerNo = localStorage.getItem('centerNo')
// alert('getUserInfo:' + this.centerNo)
- this.yxAxios.get(`${this.proxyUrl}/user/info/getPortalUserByNum?userNum=${localStorage.getItem('centerNo')}`).then((res) => {
+ this.yxAxios.post(`${this.proxyUrl}/user/info/getPortalUserByNumV2?userNum=${localStorage.getItem('centerNo')}`).then((res) => {
console.log('获取用户信息getPortalUserByNum:', res)
if (res.data.code == 200) {
let userInfo = res.data.data.userInfo
--
libgit2 0.21.0