Login.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. <template>
  2. <div class="fle bgColor" v-if="!isSSo">
  3. <load-ing v-show="requesterLgoinType == 'wechat'"></load-ing>
  4. <h2
  5. v-if="requesterLgoinType == 'web'"
  6. style="font-size: 0.36rem; margin-bottom: 0.36rem; font-weight: 700"
  7. >
  8. 信息化故障报修
  9. </h2>
  10. <div v-if="requesterLgoinType == 'web'" style="width: 5rem">
  11. <cube-input
  12. v-model="zhanghao"
  13. placeholder="您的账号为学工号"
  14. ></cube-input>
  15. <br />
  16. <cube-input
  17. v-model="mima"
  18. type="password"
  19. placeholder="您的初始密码为学工号后四位"
  20. ></cube-input>
  21. <br />
  22. <cube-button @click="zlogin()" style="background: #005395"
  23. >登录</cube-button
  24. >
  25. </div>
  26. </div>
  27. </template>
  28. <script>
  29. import { decode } from "js-base64";
  30. import LoadIng from "./../views/loading.vue";
  31. export default {
  32. data() {
  33. return {
  34. zhanghao: "",
  35. mima: "",
  36. requesterLgoinType: "",
  37. isSSo: true // 是否单点登录
  38. };
  39. },
  40. components: {
  41. LoadIng
  42. },
  43. methods: {
  44. // 登陆
  45. login() {
  46. var that = this;
  47. that.$http.post("service/auth/wechatAuth", {}).then(res => {
  48. if (res.data.url) {
  49. window.location.href = res.data.url;
  50. } else {
  51. if (res.data.user) {
  52. localStorage.setItem(
  53. "loginUser",
  54. JSON.stringify(res.data.user.requester)
  55. );
  56. this.loginNext(res.data.user.requester);
  57. }
  58. }
  59. });
  60. },
  61. // 获取code
  62. getCode() {
  63. var that = this;
  64. var url = window.location.href.split("?");
  65. if (!url[1]) {
  66. that.login();
  67. } else {
  68. var code = {
  69. code: url[1]
  70. // name: "微信报修"
  71. };
  72. that.$http.post("service/auth/wechatLoginEncrypt", code).then(res => {
  73. if (res.data.state == 200) {
  74. if (res.data.user) {
  75. localStorage.setItem(
  76. "loginUser",
  77. JSON.stringify(res.data.user.requester)
  78. );
  79. this.loginNext(res.data.user.requester);
  80. }
  81. } else if (res.data.state == 501) {
  82. that
  83. .$createDialog({
  84. type: "alert",
  85. title: "您的账号被删除,请联系管理员",
  86. icon: "cubeic-alert"
  87. })
  88. .show();
  89. } else {
  90. that
  91. .$createDialog({
  92. type: "alert",
  93. title: res.data.remarks,
  94. icon: "cubeic-alert"
  95. })
  96. .show();
  97. }
  98. });
  99. }
  100. },
  101. // 判断角色
  102. roleHandler(user,requester){
  103. let isReq = false;
  104. // let userRoles = user.role.map(v=>({id:v.id,rolecode:v.rolecode}));
  105. // if(userRoles.length){
  106. // this.isService = userRoles.some(v=>(v.rolecode === 'call center' || v.rolecode === 'call center admin'))
  107. // this.isUser = userRoles.some(v=>(v.rolecode === 'first-line support' || v.rolecode === 'second-line support' || v.rolecode === 'incident manager' || v.rolecode === 'inspectman' || v.rolecode === 'incident-category-manager'))
  108. // }else{
  109. // this.isService = false;
  110. // this.isUser = false;
  111. // }
  112. isReq = requester ? true : false;
  113. if(isReq){
  114. this.$router.push({ path: "/main" });
  115. }else{
  116. this.$createDialog({
  117. type: "alert",
  118. title: "提示",
  119. content: "没有权限,无法进入!",
  120. icon: "cubeic-wrong",
  121. color: "red"
  122. }).show();
  123. }
  124. },
  125. loginNext(requester) {
  126. // seimin
  127. // 获取报修主体
  128. this.$http
  129. .post("service/sysinfo/data/fetchDataList/systemConfiguration", {
  130. idx: 0,
  131. sum: 1000
  132. })
  133. .then(result => {
  134. if (result.data.status == 200) {
  135. let list = result.data.list;
  136. list.forEach(v => {
  137. switch (v.keyconfig) {
  138. case "repairMain": //报修主体
  139. localStorage.setItem("repairMain", JSON.stringify(v));
  140. break;
  141. case "incidentWithConsumable": //是否绑定耗材
  142. localStorage.setItem("incidentWithConsumable", v.valueconfig);
  143. break;
  144. case "wxIncidentWithCmdb": //是否绑定资产
  145. localStorage.setItem("wxIncidentWithCmdb", v.valueconfig);
  146. break;
  147. case "reqHasCategory": //获取是否自动建单
  148. localStorage.setItem("reqHasCategory", JSON.stringify(v));
  149. break;
  150. case "wxBxQuestions": //微信报修常见问题链接
  151. localStorage.setItem("wxBxQuestions", v.valueconfig);
  152. break;
  153. case "wxGuide": //微信报修服务指南链接
  154. localStorage.setItem("wxGuide", v.valueconfig);
  155. break;
  156. case "ifRoom": //是否增加房间号选择
  157. localStorage.setItem("ifRoom", v.valueconfig);
  158. break;
  159. }
  160. });
  161. this.roleHandler(null,requester);
  162. }
  163. });
  164. // seimin
  165. },
  166. // 获取报修人登录方式
  167. getLoginType() {
  168. this.$http.post("service/wechat/getLoginType", {}).then(result => {
  169. if (result.data.status == 200) {
  170. this.requesterLgoinType = result.data.data;
  171. window.localStorage.setItem(
  172. "requesterLgoinType",
  173. this.requesterLgoinType
  174. );
  175. if (this.requesterLgoinType == "wechat") {
  176. this.getCode();
  177. } else if (this.requesterLgoinType == "web") {
  178. // this.$router.push({ path: "/login" });
  179. }
  180. }
  181. });
  182. },
  183. // 账号密码登录
  184. zlogin() {
  185. console.log(this);
  186. var that = this;
  187. var ssoStr = "";
  188. var ssoJson;
  189. if (this.isSSo) {
  190. ssoStr = location.search
  191. .replace("?", "")
  192. .split("&")[0]
  193. .split("=")[1];
  194. ssoStr = decode(decodeURIComponent(ssoStr));
  195. ssoJson = JSON.parse(ssoStr);
  196. }
  197. var postData = this.isSSo
  198. ? { username: ssoJson.a, password: ssoJson.r, t: false }
  199. : { username: this.zhanghao, password: this.mima };
  200. this.$http.post("service/auth/reqlogin", postData).then(res => {
  201. that.loading = false;
  202. if (res.data && res.data.state == 200) {
  203. localStorage.setItem(
  204. "loginUser",
  205. JSON.stringify(res.data.data.requester)
  206. );
  207. localStorage.setItem(
  208. "loginConfig",
  209. JSON.stringify({ username: this.zhanghao, password: this.mima })
  210. );
  211. // 判断是否有区域地点或联系电话或校区,没有则需要补充
  212. var requester = res.data.data.requester;
  213. if (!requester.place || !requester.mphone || !requester.branch) {
  214. this.$router.push({ path: "/supplementary" });
  215. } else {
  216. this.loginNext(res.data.data.requester);
  217. }
  218. } else {
  219. that
  220. .$createDialog({
  221. type: "alert",
  222. title: "系统错误",
  223. content: "请稍后再试",
  224. icon: "cubeic-wrong",
  225. color: "red"
  226. })
  227. .show();
  228. }
  229. });
  230. },
  231. // 获取查询参数
  232. getQueryString(name) {
  233. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
  234. var r = window.location.search.substr(1).match(reg);
  235. if (r != null) {
  236. return unescape(r[2]);
  237. }
  238. return null;
  239. }
  240. },
  241. created() {
  242. localStorage.clear();
  243. if (location.search.length > 0) {
  244. this.isSSo = Boolean(this.getQueryString("t"));
  245. } else {
  246. this.isSSo = false;
  247. }
  248. if (this.isSSo) {
  249. this.zlogin();
  250. }
  251. this.getLoginType();
  252. }
  253. };
  254. </script>
  255. <style scoped>
  256. .color {
  257. color: red;
  258. font-size: 1rem;
  259. }
  260. .fle {
  261. display: flex;
  262. height: 100vh;
  263. justify-content: center;
  264. align-items: center;
  265. flex-direction: column;
  266. background: url(./../../static/images/weChartBackImage.jpg);
  267. background-size: cover;
  268. }
  269. /* .bgColor{
  270. background-color: white
  271. } */
  272. input {
  273. border: 0.02rem #999999 solid;
  274. width: 60%;
  275. height: 0.8rem;
  276. margin-top: 0.4rem;
  277. border-radius: 10px;
  278. padding-left: 0.24rem;
  279. }
  280. input:nth-child(1) {
  281. margin-top: 0;
  282. }
  283. input:focus {
  284. outline: none;
  285. }
  286. .sub {
  287. width: 40%;
  288. background-color: rgb(60, 162, 254);
  289. height: 0.7rem;
  290. color: white;
  291. font-size: 0.36rem;
  292. text-align: center;
  293. line-height: 0.7rem;
  294. margin-top: 0.3rem;
  295. border-radius: 10px;
  296. }
  297. </style>