李双庆 1 year ago
parent
commit
d33582186e
  1. 15
      pages/student/login/login.vue

15
pages/student/login/login.vue

@ -36,14 +36,14 @@
</template>
<script>
import medicationApi from '@/api/medication.js';
import medicationApi from '@/api/medication.js';
export default {
data() {
return {
password: true,
user: '',//
password1: ''//
user: '18888888888', //
password1: '123456' //
}
},
onLoad() {
@ -70,20 +70,17 @@ import medicationApi from '@/api/medication.js';
//
medicationApi.login(item).then(res => {
if (res.code == 1) {
res.data.userType = 2
uni.setStorageSync('token', res.data.token);
uni.setStorageSync('userType', res.data.userType);
let url_path = ''
switch (String(res.data.userType)) {
case '1'://
case '1': //
url_path = '/pages/coach/home/index'
break;
case '2'://
case '2': //
url_path = '/pages/market/index/index'
break;
case '3'://
case '3': //
url_path = '/pages/student/index/index'
break;
default:

Loading…
Cancel
Save