浏览代码

EHR-绩效:增加企业微信应用PC端跳转页面;

001295 1 年之前
父节点
当前提交
976213c951
共有 2 个文件被更改,包括 68 次插入0 次删除
  1. 23 0
      src/api/business/ehr/wxworklogin.js
  2. 45 0
      src/views/business/ehr/ehrpm-entrance.vue

+ 23 - 0
src/api/business/ehr/wxworklogin.js

@@ -0,0 +1,23 @@
+import request from "@/utils/request";
+
+//查询企业微信用户信息
+export function getWxworkUser_ehrpm(code) {
+  return request({
+    url: '/wxwork/ehrpm/getInfo/' + code,
+	headers: {
+	  isToken: false
+	},
+    method: 'get'
+  })
+}
+
+//根据手机号获取DRP用户信息
+export function getDrpUser(phonenumber) {
+  return request({
+    'url': '/login/wxwork/' + phonenumber,
+    headers: {
+      isToken: false
+    },
+    'method': 'get',
+  })
+}

+ 45 - 0
src/views/business/ehr/ehrpm-entrance.vue

@@ -0,0 +1,45 @@
+<template>
+	<div>
+		正在前往DRP绩效
+	</div>
+</template>
+<script>
+	import {getWxworkUser_ehrpm,getDrpUser} from "@/api/business/ehr/wxworklogin";
+	export default {
+		data() {
+			return {
+			}
+		},
+		methods: {
+		},
+		async onLoad() {
+			console.log(111);
+			let query = this.$route.query;
+			console.log("query",query);
+			// //获取链接
+			// let href = location.href;
+			// //获取查询参数
+			// let params = this.urlSearchParse(href);
+			// let code = params.code;
+			// // 获取企业微信用户信息
+			// await this.getWWIF(code);
+			// //获取手机号码
+			// const phonenumber = this.wxWorkUserInfo.mobile
+			// //根据手机号获取token
+			// await wxworkLogin(phonenumber).then((response) => {
+			// 	if (response.code == 200) {
+			// 		this.$store.dispatch('wxworkLogin111', response.token);
+			// 		//获取drp用户信息
+			// 		this.$store.dispatch('GetInfo').then(res => {
+			// 			console.log('用户【' + this.wxWorkUserInfo.userid + '】登录成功');
+			// 			this.$store.dispatch('GenerateRoutes').then(res => {
+			// 				this.$tab.reLaunch('/pages/work/ehr/pm/performance/index')
+			// 			})
+			// 		})
+			// 	} else {
+			// 		this.$modal.msgError("登录失败");
+			// 	}
+			// });
+		}
+	}
+</script>