Login.vue 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  1. <template>
  2. <div class="fle bgColor" v-if="!isSSo && false">
  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. // 获取报修主体
  127. //报修主体
  128. var promise1 = this.$http.post("service/sysinfo/data/fetchDataList/systemConfiguration", {idx: 0, sum: 1, systemConfiguration: {keyconfig: 'repairMain'}});
  129. //是否绑定耗材
  130. var promise2 = this.$http.post("service/sysinfo/data/fetchDataList/systemConfiguration", {idx: 0, sum: 1, systemConfiguration: {keyconfig: 'incidentWithConsumable'}});
  131. //是否绑定资产
  132. var promise3 = this.$http.post("service/sysinfo/data/fetchDataList/systemConfiguration", {idx: 0, sum: 1, systemConfiguration: {keyconfig: 'wxIncidentWithCmdb'}});
  133. //获取是否自动建单
  134. var promise4 = this.$http.post("service/sysinfo/data/fetchDataList/systemConfiguration", {idx: 0, sum: 1, systemConfiguration: {keyconfig: 'reqHasCategory'}});
  135. //微信报修常见问题链接
  136. var promise5 = this.$http.post("service/sysinfo/data/fetchDataList/systemConfiguration", {idx: 0, sum: 1, systemConfiguration: {keyconfig: 'wxBxQuestions'}});
  137. //微信报修服务指南链接
  138. var promise6 = this.$http.post("service/sysinfo/data/fetchDataList/systemConfiguration", {idx: 0, sum: 1, systemConfiguration: {keyconfig: 'wxGuide'}});
  139. //是否增加房间号选择
  140. var promise7 = this.$http.post("service/sysinfo/data/fetchDataList/systemConfiguration", {idx: 0, sum: 1, systemConfiguration: {keyconfig: 'ifRoom'}});
  141. Promise.all([promise1, promise2, promise3, promise4, promise5, promise6, promise7]).then(([data1, data2, data3, data4, data5, data6, data7]) => {
  142. if(data1.status == 200 && data2.status == 200 && data3.status == 200 && data4.status == 200 && data5.status == 200 && data6.status == 200 && data7.status == 200){
  143. var list1 = data1.list || [];
  144. var list2 = data2.list || [];
  145. var list3 = data3.list || [];
  146. var list4 = data4.list || [];
  147. var list5 = data5.list || [];
  148. var list6 = data6.list || [];
  149. var list7 = data7.list || [];
  150. localStorage.setItem("repairMain", JSON.stringify(list1[0]));
  151. localStorage.setItem("incidentWithConsumable", list2[0].valueconfig);
  152. localStorage.setItem("wxIncidentWithCmdb", list3[0].valueconfig);
  153. localStorage.setItem("reqHasCategory", JSON.stringify(list4[0]));
  154. localStorage.setItem("wxBxQuestions", list5[0].valueconfig);
  155. localStorage.setItem("wxGuide", list6[0].valueconfig);
  156. localStorage.setItem("ifRoom", list7[0].valueconfig);
  157. this.roleHandler(null,requester);
  158. }else{
  159. this.$createDialog({
  160. type: "alert",
  161. title: "系统配置错误!",
  162. content: "请稍后再试",
  163. icon: "cubeic-wrong",
  164. color: "red"
  165. }).show();
  166. }
  167. }).catch(function(){
  168. console.log('Some request failed...');
  169. this.$createDialog({
  170. type: "alert",
  171. title: "系统配置错误!",
  172. content: "请稍后再试",
  173. icon: "cubeic-wrong",
  174. color: "red"
  175. }).show();
  176. });
  177. },
  178. // 获取报修人登录方式
  179. getLoginType() {
  180. this.$http.post("service/wechat/getLoginType", {}).then(result => {
  181. if (result.data.status == 200) {
  182. this.requesterLgoinType = result.data.data;
  183. window.localStorage.setItem(
  184. "requesterLgoinType",
  185. this.requesterLgoinType
  186. );
  187. if (this.requesterLgoinType == "wechat") {
  188. this.getCode();
  189. } else if (this.requesterLgoinType == "web") {
  190. // this.$router.push({ path: "/login" });
  191. }
  192. }
  193. });
  194. },
  195. // 账号密码登录
  196. zlogin() {
  197. console.log(this);
  198. var that = this;
  199. var postData = this.isSSo
  200. ? { type: 'req' }
  201. : { username: this.zhanghao, password: this.mima };
  202. this.$http.post("service/auth/sslLogin", postData).then(res => {
  203. that.loading = false;
  204. if (res.data && res.data.state == 200) {
  205. localStorage.clear();
  206. localStorage.setItem(
  207. "loginUser",
  208. JSON.stringify(res.data.data.requester)
  209. );
  210. localStorage.setItem(
  211. "loginConfig",
  212. JSON.stringify({ username: this.zhanghao, password: this.mima })
  213. );
  214. // 判断是否有区域地点或联系电话或校区,没有则需要补充
  215. var requester = res.data.data.requester;
  216. if (!requester.place || !requester.mphone || !requester.branch) {
  217. this.$router.push({ path: "/supplementary" });
  218. } else {
  219. this.loginNext(res.data.data.requester);
  220. }
  221. }else if (res.data && res.data.state == 501) {
  222. // 判断是否有区域地点或联系电话或校区,没有则需要补充
  223. var requester = JSON.parse(localStorage.getItem('loginUser')) || {};
  224. if (!requester.place || !requester.mphone || !requester.branch) {
  225. this.$router.push({ path: "/supplementary" });
  226. } else {
  227. this.loginNext(requester);
  228. }
  229. } else {
  230. localStorage.clear();
  231. that
  232. .$createDialog({
  233. type: "alert",
  234. title: "系统错误",
  235. content: "请稍后再试",
  236. icon: "cubeic-wrong",
  237. color: "red"
  238. })
  239. .show();
  240. }
  241. });
  242. },
  243. // 获取查询参数
  244. getQueryString(name) {
  245. var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
  246. var r = window.location.search.substr(1).match(reg);
  247. if (r != null) {
  248. return unescape(r[2]);
  249. }
  250. return null;
  251. }
  252. },
  253. created() {
  254. this.isSSo = true;
  255. if (this.isSSo) {
  256. this.zlogin();
  257. }
  258. this.getLoginType();
  259. }
  260. };
  261. </script>
  262. <style scoped>
  263. .color {
  264. color: red;
  265. font-size: 1rem;
  266. }
  267. .fle {
  268. display: flex;
  269. height: 100vh;
  270. justify-content: center;
  271. align-items: center;
  272. flex-direction: column;
  273. background: url(./../../static/images/weChartBackImage.jpg);
  274. background-size: cover;
  275. }
  276. /* .bgColor{
  277. background-color: white
  278. } */
  279. input {
  280. border: 0.02rem #999999 solid;
  281. width: 60%;
  282. height: 0.8rem;
  283. margin-top: 0.4rem;
  284. border-radius: 10px;
  285. padding-left: 0.24rem;
  286. }
  287. input:nth-child(1) {
  288. margin-top: 0;
  289. }
  290. input:focus {
  291. outline: none;
  292. }
  293. .sub {
  294. width: 40%;
  295. background-color: rgb(60, 162, 254);
  296. height: 0.7rem;
  297. color: white;
  298. font-size: 0.36rem;
  299. text-align: center;
  300. line-height: 0.7rem;
  301. margin-top: 0.3rem;
  302. border-radius: 10px;
  303. }
  304. </style>