login.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  1. <!--
  2. 退役军人端: 通过退役军人userID获取退役军人userSig等信息,再通过判断permission获取哪一个教师拥有这个咨询权限,再进行登录后直接跳转到聊天页面
  3. 教师端: 通过教师userID获取教师userSig等信息,再进行登录跳转到聊天记录页面
  4. -->
  5. <template>
  6. <view class="login">
  7. <view class="login-logo">
  8. <u-image src="../../static/logo.png" mode="aspectFill" width="260" height="260" />
  9. </view>
  10. <view class="login-form">
  11. <u-form :model="form" ref="uForm">
  12. <u-form-item label="用户名" label-width="140" prop="userName">
  13. <u-input v-model="form.userName" placeholder="" border="" :disabled="isDisable"></u-input>
  14. </u-form-item>
  15. <!-- <u-form-item label="用户名" label-width="140" prop="userName">
  16. <u-input v-model="form.userName" placeholder="请输入用户名" border="" :disabled="isDisable"></u-input>
  17. </u-form-item> -->
  18. <!-- <u-form-item label="用户密码" label-width="140" prop="userSig">
  19. <u-input v-model="form.userSig" placeholder="请输入用户密码" border="" type="password" :disabled="isDisable"></u-input>
  20. </u-form-item> -->
  21. <u-form-item :border-bottom="false">
  22. <u-button type="primary" @click="handleLogin">登录</u-button>
  23. </u-form-item>
  24. </u-form>
  25. </view>
  26. </view>
  27. </template>
  28. <script>
  29. import userList from '../../config/tim/user.js'
  30. export default {
  31. data() {
  32. return {
  33. isDisable: false,
  34. form: {
  35. userID: '', // 用户id
  36. userName: '', // 用户名
  37. userSig: '', // 用户标签
  38. toUserId: '', // 接收消息用户id
  39. permission: '', // 教师权限 用于筛选不用类型下的教师
  40. classId: '', // 班级id 用于筛选该班级下的教师
  41. type: '' // 用来区分教师端(teacher)和退役军人移动端(retire)
  42. },
  43. rules: {
  44. userID: [{
  45. required: true,
  46. message: '请输入用户ID',
  47. trigger: ['blur']
  48. }],
  49. userName: [{
  50. required: true,
  51. message: '请输入用户名',
  52. trigger: ['blur']
  53. }],
  54. userSig: [{
  55. required: true,
  56. message: '请输入用户密码',
  57. trigger: ['blur']
  58. }]
  59. }
  60. }
  61. },
  62. onLoad(page) {
  63. /**
  64. * userID 用户id
  65. * userName 用户名
  66. * userSig 用户标签
  67. * toUserId 接收消息用户id
  68. * permission 教师权限 用于筛选不用类型下的教师
  69. * classId 班级id 用于筛选该班级下的教师
  70. * type 用来区分教师端(teacher)和退役军人移动端(retire)
  71. */
  72. if (page.userID) {
  73. this.isDisable = true
  74. this.form.userID = page?.userID
  75. this.form.type = page?.type
  76. this.form.userName = page?.userName
  77. this.form.userSig = page?.userSig
  78. this.form.permission = page?.permission
  79. this.form.classId = page?.classId
  80. this.autoLogin();
  81. } else {
  82. uni.showToast({
  83. title: '参数丢失',
  84. icon: 'none'
  85. })
  86. }
  87. },
  88. onShow() {},
  89. methods: {
  90. /**
  91. * 自动登录
  92. */
  93. autoLogin() {
  94. uni.showLoading({
  95. mask: true,
  96. title: '正在登录中...'
  97. })
  98. if (this.form.type === 'teacher') {
  99. setTimeout(() => {
  100. this.getTeacherInfo(this.form.userID);
  101. }, 100)
  102. } else if (this.form.type === 'retire') {
  103. setTimeout(() => {
  104. this.getRetireInfo(this.form.userID);
  105. }, 100)
  106. } else {
  107. uni.showToast({
  108. title: '参数丢失',
  109. icon: 'none'
  110. })
  111. }
  112. },
  113. /**
  114. * 获取个人信息
  115. */
  116. getMyProfile() {
  117. this.tim.getMyProfile().then(res => {
  118. console.log('res', res)
  119. }).catch(err => {
  120. console.log('err', err)
  121. this.autoLogin();
  122. })
  123. },
  124. /**
  125. * 登录按钮
  126. */
  127. handleLogin() {
  128. this.$refs.uForm.validate(valid => {
  129. if (valid) {
  130. this.autoLogin();
  131. }
  132. return false;
  133. })
  134. },
  135. /**
  136. * 登录TIM
  137. */
  138. loginTim(userInfo) {
  139. this.tim.login({
  140. userID: this.form.userID,
  141. userSig: this.form.userSig
  142. }).then(res => {
  143. // 登录成功后 更新登录状态
  144. this.$store.commit('toggleIsLogin', true);
  145. // 自己平台的用户基础信息
  146. uni.setStorageSync('userInfo', JSON.stringify(userInfo))
  147. // tim 返回的用户信息
  148. uni.setStorageSync('userTIMInfo', JSON.stringify(res.data));
  149. this.updateUserInfo(userInfo);
  150. if (this.form.toUserId) {
  151. setTimeout(() => {
  152. uni.hideLoading()
  153. this.$store.commit('createConversationActive', this.form.toUserId)
  154. this.$u.route({
  155. url: 'pages/chat/chat',
  156. type: 'redirectTo'
  157. })
  158. }, 300)
  159. } else {
  160. setTimeout(() => {
  161. uni.hideLoading();
  162. this.$u.route({
  163. url: '/pages/index/index',
  164. type: 'redirectTo'
  165. })
  166. }, 300)
  167. }
  168. }).catch(err => {
  169. uni.showToast({
  170. icon: 'none',
  171. title: '用户不存在',
  172. duration: 2000
  173. })
  174. })
  175. },
  176. updateUserInfo(userInfo) {
  177. // 将已经登陆的用户信息 提交到IM中
  178. this.tim.updateMyProfile({
  179. nick: userInfo.username,
  180. avatar: userInfo.avatar,
  181. gender: this.$TIM.TYPES.GENDER_MALE,
  182. selfSignature: '暂无个性签名',
  183. allowType: this.$TIM.TYPES.ALLOW_TYPE_ALLOW_ANY
  184. }).then((res) => {
  185. console.log('提交资料成功')
  186. }).catch((err) => {
  187. console.warn('updateMyProfile error:', err); // 更新资料失败的相关信息
  188. });
  189. },
  190. /**
  191. * 获取老师信息
  192. * @param { String } teacherId
  193. */
  194. getTeacherInfo(teacherId) {
  195. uni.request({
  196. url: this.config.baseUrl + '/im/getSignatureInfo',
  197. data: {
  198. id: teacherId,
  199. type: 2
  200. },
  201. success: (res) => {
  202. console.log('教师信息:', res.data)
  203. if (res.data.code === 200) {
  204. this.form.userSig = res.data.data.signature
  205. this.form.userName = res.data.data.username
  206. this.importUser(teacherId, 2, res.data.data)
  207. } else {
  208. uni.showToast({
  209. title: res.data.msg,
  210. icon: 'error'
  211. })
  212. uni.hideLoading()
  213. }
  214. },
  215. fail: (err) => {
  216. uni.showToast({
  217. title: '获取教师信息失败!',
  218. icon: 'none'
  219. })
  220. uni.hideLoading()
  221. }
  222. });
  223. },
  224. /**
  225. * 获取退役军人信息
  226. * @param {String} retireId
  227. */
  228. getRetireInfo(retireId) {
  229. uni.request({
  230. url: this.config.baseUrl + '/im/getSignatureInfo',
  231. data: {
  232. id: retireId,
  233. type: 1
  234. },
  235. success: (res) => {
  236. console.log('退役军人信息:', res.data);
  237. if (res.data.code === 200) {
  238. this.form.userSig = res.data.data.signature
  239. this.form.userName = res.data.data.username
  240. if (this.form.classId) {
  241. this.getClassTeacherByClassId(this.form.classId, res.data.data)
  242. } else {
  243. this.getConsultJurisdiction(this.form.permission, res.data.data)
  244. }
  245. } else {
  246. uni.showToast({
  247. title: res.data.msg,
  248. icon: 'error'
  249. })
  250. uni.hideLoading()
  251. }
  252. },
  253. fail: (err) => {
  254. uni.showToast({
  255. title: '获取退役军人信息失败!',
  256. icon: 'none'
  257. })
  258. uni.hideLoading()
  259. }
  260. });
  261. },
  262. /**
  263. * 通过班级id筛选老师
  264. * @param {Object} classId
  265. * @param {Object} userInfo
  266. */
  267. getClassTeacherByClassId(classId, userInfo) {
  268. uni.request({
  269. url: this.config.baseUrl + '/im/getTeacherInfoByClassId',
  270. data: {
  271. classId: classId
  272. },
  273. success: (res) => {
  274. console.log('班级教师信息:', res.data);
  275. if (res.data.code === 200) {
  276. this.form.toUserId = res.data.data?.teacherId
  277. if (this.form.toUserId) {
  278. this.importUser(this.form.toUserId, 2, userInfo)
  279. } else {
  280. uni.showToast({
  281. title: '未找到相关班级老师!',
  282. icon: 'none'
  283. })
  284. }
  285. } else {
  286. uni.showToast({
  287. title: res.data.msg,
  288. icon: 'error'
  289. })
  290. uni.hideLoading()
  291. }
  292. },
  293. fail: (err) => {
  294. uni.showToast({
  295. title: '获取退役军人信息失败!',
  296. icon: 'none'
  297. })
  298. uni.hideLoading()
  299. }
  300. });
  301. },
  302. /**
  303. * 获取拥有该权限的教师
  304. * @param { String } permission
  305. */
  306. getConsultJurisdiction(permission, userInfo) {
  307. uni.request({
  308. url: this.config.baseUrl + '/im/getTeacherInfoByAuth',
  309. data: {
  310. auth: permission
  311. },
  312. success: (res) => {
  313. console.log('拥有权限的教师:', res.data);
  314. if (res.data.code === 200) {
  315. if (res.data.data) {
  316. this.form.toUserId = res.data.data.teacherId
  317. this.importUser(res.data.data.teacherId, 2, userInfo)
  318. } else {
  319. uni.showToast({
  320. title: '该咨询目前未分配教师!',
  321. icon: 'none'
  322. })
  323. }
  324. } else {
  325. uni.showToast({
  326. title: res.msg,
  327. icon: 'error'
  328. })
  329. uni.hideLoading()
  330. }
  331. },
  332. fail: (err) => {
  333. uni.showToast({
  334. title: '获取教师权限失败!',
  335. icon: 'none'
  336. })
  337. uni.hideLoading()
  338. }
  339. });
  340. },
  341. /**
  342. * 导入用户
  343. * @param { String } id 导入用户id
  344. * @param { Number } type 1-退役军人 2-教师 3-企业
  345. * @param { Object } userInfo 登录用户信息
  346. */
  347. importUser(id, type, userInfo) {
  348. uni.request({
  349. url: this.config.baseUrl + '/im/importUser',
  350. method: 'POST',
  351. data: {
  352. id,
  353. type
  354. },
  355. success: (res) => {
  356. console.log('注册:', res.data);
  357. if (res.data.code === 200) {
  358. this.loginTim(userInfo);
  359. } else {
  360. uni.showToast({
  361. title: res.data.msg || res.data.message,
  362. icon: 'error'
  363. })
  364. }
  365. },
  366. fail: (err) => {
  367. uni.showToast({
  368. title: '注册失败!',
  369. icon: 'none'
  370. })
  371. uni.hideLoading()
  372. }
  373. });
  374. },
  375. /**
  376. * 登录trtc calling
  377. */
  378. loginTrtc() {
  379. this.trtcCalling.login({
  380. sdkAppID: this.config.sdkAppId,
  381. userID: this.form.userID,
  382. userSig: this.form.userSig
  383. }).then(res => {
  384. this.tim.login({
  385. userID: this.form.userID,
  386. userSig: this.form.userSig
  387. }).then(res => {
  388. // 登录成功后 更新登录状态
  389. this.$store.commit('toggleIsLogin', true);
  390. // 自己平台的用户基础信息
  391. uni.setStorageSync('userInfo', JSON.stringify(userInfo))
  392. // tim 返回的用户信息
  393. uni.setStorageSync('userTIMInfo', JSON.stringify(res.data));
  394. setTimeout(() => {
  395. uni.hideLoading()
  396. this.$u.route({
  397. url: '/pages/index/index'
  398. })
  399. }, 1000)
  400. }).catch(err => {
  401. uni.showToast({
  402. icon: 'none',
  403. title: '用户不存在',
  404. duration: 2000
  405. })
  406. })
  407. }).catch(err => {
  408. console.log(err)
  409. })
  410. }
  411. },
  412. onReady() {
  413. this.$refs.uForm.setRules(this.rules);
  414. }
  415. }
  416. </script>
  417. <style lang="scss" scoped>
  418. .login {
  419. &-logo {
  420. width: 260rpx;
  421. height: 260rpx;
  422. margin: 100rpx auto;
  423. }
  424. &-form {
  425. width: calc(100% - 200rpx);
  426. margin: 0 auto;
  427. }
  428. }
  429. </style>