From 96cdaf9682f6ed2f8cc2b62e660795493088e4da Mon Sep 17 00:00:00 2001 From: unknown <331404948@qq.com> Date: Fri, 3 Nov 2023 19:47:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/js/mixins.js | 1 + pages/carEntry/examineAppointment/comp/step3.vue | 2 +- .../simulateAppointment/simulateAppointment.vue | 2 +- pages/indexEntry/consult/pubConsult/pubConsult.vue | 2 +- pages/indexEntry/enroll/enroll.vue | 4 ++-- pages/indexEntry/enroll/realName/realName.vue | 4 ++-- pages/indexEntry/enroll/signContract/signContract.vue | 4 ++-- pages/mineEntry/myAppointment/myAppointment.vue | 2 +- static/images/car/newSatus.png | Bin 501 -> 1120 bytes 9 files changed, 11 insertions(+), 10 deletions(-) diff --git a/common/js/mixins.js b/common/js/mixins.js index ac81220..da2da5e 100644 --- a/common/js/mixins.js +++ b/common/js/mixins.js @@ -8,6 +8,7 @@ export default { vuex_cityInfo: state=> state.user.vuex_cityInfo, vuex_userInfo: state=> state.user.vuex_userInfo, userId: state=> state.user.vuex_loginInfo.userId, + studentId: state=> state.user.vuex_userInfo.id, apiOk: state=> state.user.apiOk, }), }, diff --git a/pages/carEntry/examineAppointment/comp/step3.vue b/pages/carEntry/examineAppointment/comp/step3.vue index d91decd..2b170fc 100644 --- a/pages/carEntry/examineAppointment/comp/step3.vue +++ b/pages/carEntry/examineAppointment/comp/step3.vue @@ -64,7 +64,7 @@ async examSimulationCreateFn() { if(!this.FormData.courseIds) return this.$u.toast('请选择预约时间') let obj = { - "studentId": this.userId, + "studentId": this.studentId, "classDetailId": this.FormData.courseIds } const res = await examSimulationCreate(obj) diff --git a/pages/carEntry/simulateAppointment/simulateAppointment.vue b/pages/carEntry/simulateAppointment/simulateAppointment.vue index 0ea25ad..62b5610 100644 --- a/pages/carEntry/simulateAppointment/simulateAppointment.vue +++ b/pages/carEntry/simulateAppointment/simulateAppointment.vue @@ -56,7 +56,7 @@ created() { this.simulationPointFn() this.FormData.trainType = this.vuex_userInfo.trainType - this.FormData.studentId = this.vuex_userInfo.id + this.FormData.studentId = this.studentId }, methods: { changeStep(num) { diff --git a/pages/indexEntry/consult/pubConsult/pubConsult.vue b/pages/indexEntry/consult/pubConsult/pubConsult.vue index c024ed5..5f8e92b 100644 --- a/pages/indexEntry/consult/pubConsult/pubConsult.vue +++ b/pages/indexEntry/consult/pubConsult/pubConsult.vue @@ -65,7 +65,7 @@ images, studentPhone: this.vuex_userInfo.phone, type: 1, - studentId: this.$store.state.user.vuex_loginInfo.userId, + studentId: this.studentId, content: this.value } const {data: res} = await createconsult(obj) diff --git a/pages/indexEntry/enroll/enroll.vue b/pages/indexEntry/enroll/enroll.vue index 419aa13..e3e1660 100644 --- a/pages/indexEntry/enroll/enroll.vue +++ b/pages/indexEntry/enroll/enroll.vue @@ -94,7 +94,7 @@ this.showType = false }, async getpersonfaceFn() { - const {data: res} = await getpersonface({ ruleId: 1, RedirectUrl: 'http://192.168.1.44:8003/h5/#/pages/indexEntry/enroll/realName/realName'}) + const {data: res} = await getpersonface({ ruleId: 1, RedirectUrl: 'http://192.168.1.44:8002/h5/#/pages/indexEntry/enroll/realName/realName'}) let obj = JSON.parse(res) this.link = obj.Url this.$store.commit('updateBizToken', obj.BizToken) @@ -109,7 +109,7 @@ async GetDetectInfoEnhancedFn(bizToken) { let obj = { ruleId: 1, - redirectUrl: 'http://192.168.1.44:8002/h5/#/pages/indexEntry/enroll/registInfo/registInfo', + redirectUrl: 'http://192.168.1.44:8001/h5/#/pages/indexEntry/enroll/registInfo/registInfo', bizToken: 'C9C2BC8E-8336-4071-84B3-8170E283E6CA', userId: this.userId } diff --git a/pages/indexEntry/enroll/realName/realName.vue b/pages/indexEntry/enroll/realName/realName.vue index 63bb0dd..7c64866 100644 --- a/pages/indexEntry/enroll/realName/realName.vue +++ b/pages/indexEntry/enroll/realName/realName.vue @@ -21,7 +21,7 @@ }) let obj = { ruleId: 1, - redirectUrl: 'http://192.168.1.44:8003/h5/#/pages/indexEntry/enroll/registInfo/registInfo', + redirectUrl: 'http://192.168.1.44:8002/h5/#/pages/indexEntry/enroll/registInfo/registInfo', bizToken: this.$store.state.school.BizToken, userId: this.userId } @@ -36,7 +36,7 @@ // console.log(obj2) alert('请求结果来了') alert(obj2.Text.ErrMsg) - alert(obj2.Text.name) + // alert(obj2.Text.name) // uni.setStorageSync(obj2) }, } diff --git a/pages/indexEntry/enroll/signContract/signContract.vue b/pages/indexEntry/enroll/signContract/signContract.vue index 2b2ab99..136e323 100644 --- a/pages/indexEntry/enroll/signContract/signContract.vue +++ b/pages/indexEntry/enroll/signContract/signContract.vue @@ -48,7 +48,7 @@ data: res } = await getSignContract({ schoolId: this.schoolId, - studentId: this.vuex_userInfo.id + studentId: this.studentId }) uni.hideLoading() this.url = res.url @@ -58,7 +58,7 @@ const { data: res } = await getContractStatus({ - studentId: this.vuex_userInfo.id + studentId: this.studentId }) if (res.flowStatus == 2) { clearInterval(this.timer) diff --git a/pages/mineEntry/myAppointment/myAppointment.vue b/pages/mineEntry/myAppointment/myAppointment.vue index 9cf4f92..3354478 100644 --- a/pages/mineEntry/myAppointment/myAppointment.vue +++ b/pages/mineEntry/myAppointment/myAppointment.vue @@ -72,7 +72,7 @@ }, onLoad(options) { if(options.currentTab) this.currentTab = options.currentTab - this.params.studentId = this.vuex_userInfo.id + this.params.studentId = this.studentId this.inintList() }, onPullDownRefresh() { diff --git a/static/images/car/newSatus.png b/static/images/car/newSatus.png index 1fc6c712bec660be2aff8591ddad67be71386d77..32d1269ef0b7a5c0cb4db4772577807245027760 100644 GIT binary patch delta 1064 zcmV+@1lRlZ1KRCK<_z=?I_xq1YKiwx|A(NAne|c+bYd2JZ zUkK^a#R>`vx)_ILjF{_!)v;7IVyX zMnWbgCd!!UB_XBYx3aRbL34q^!oop`iC?gzqod_!Ormi{LPDWXKP1}}QBPxIV~Ao7 z_QRMo>2q{f5OP5kAi#56KOAJx%3ge7KB6@Rc zsKurwgxQ^-$Z?f@zpbrp*1}|RurhCP-4i#t^>8$pAaTQ#LO6m2e-I5z7BgI7raf^C zHUqF135OJ9NVt;0Qwrg@wv${f1PHm(+}s>H5y=RRe!)tP_?XNtj&p}GZtU9%k?#ov zeJWwz>2$_c#z>H=Ur|vpjF{M6!)EVg)9*->V=IL3$z_sCB@wc2F09zCnTRNv&*gH- z?c1&5rA$mXEl*M*e;mt$pgocS(F>02lqDMnvy5oJv9En%xqYWG&!vwLx6kK0Bz@zP zR0yOu0Xh&7Wz%&UlZ^e!%E~v4<<6K6k?b$5mcKl>kT@;PU#Z!AWc_em6zB*;hN0U}A2?)vqvB3kwSy$JrtT zkVgSOqk2U3?Tmb9#t=QsZ8~oUlvs6j^$6Hc(#JN7mB+G_Eb%I{D*_Z`Z+QQ}vir-c z48Z86MwlA0e%B*kQuFf>#{tBgBH<;Q>Z=*>m*XnorpZzMpt&qUP}xs#3eZ;UU0#pI zX4O(BN*mCmmOa9edQ9*vO@FL3Hft6E%Thztit$?Zh^`h4221!KQA1LR_GQDe(#!nC id?)|zvcdQ7a{LD3(T6?EH3wV(0000i delta 441 zcmV;q0Y?7d2=xOYiBL{Q4GJ0x0000DNk~Le0000E0000E2nGNE03S##(UBoYe-5An z00aO40096101f~E006!4Ir;zq0bfZ(K~yLeol&t$#6T3hY)rT!g^gF)3L@eUTw@_N zS}F=DLoPOoosEj#2V6k3NTNwAh@IGp7Wx4qXkja8Ay}9y3DKFD9D7kgT$t>ec{6#N zO{4M8rTml&f?zt&^CR|z5SDG*e^+(iw_p@S!%31nDvEOcfrY@lVHjhkX}-x}ArsbV zn(knWHBEDLU0*@{9>+1Yfi*DE^Sp6%?=Wo{xTh0CCxBxdc?w5{ll4 zxR^FDS