login.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420
  1. <template>
  2. <div class="login_content">
  3. <div class="login_box" v-show="islogin">
  4. <div style="padding: 0px 20px">
  5. <div class="login_title">
  6. <span>广东省案例征集</span>
  7. </div>
  8. <el-form
  9. label-position="right"
  10. label-width="80px"
  11. style="margin-top: 30px"
  12. >
  13. <el-form-item label="账号">
  14. <el-input
  15. v-model="phoneNum"
  16. auto-complete="off"
  17. placeholder="请输入账号"
  18. style="width: 100%"
  19. @keyup.enter.native="findPhone"
  20. ></el-input>
  21. </el-form-item>
  22. <el-form-item label="密码">
  23. <el-input
  24. v-model="password"
  25. auto-complete="off"
  26. placeholder="请输入密码"
  27. type="password"
  28. style="width: 100%"
  29. @keyup.enter.native="findPhone"
  30. ></el-input>
  31. </el-form-item>
  32. </el-form>
  33. <!-- <div style="display: flex; justify-content: flex-end">
  34. <el-button type="text" @click="goTo('/register')">立即注册</el-button>
  35. </div> -->
  36. <div class="login_button">
  37. <button @click="findPhone()">登录</button>
  38. </div>
  39. </div>
  40. </div>
  41. <div class="login_box" v-show="!islogin">
  42. <div style="padding: 0px 20px">
  43. <div class="login_title">
  44. <span>PBL项目平台注册</span>
  45. </div>
  46. <!-- <div class="userLogin">
  47. <img src="../assets/username.png" />
  48. <el-input v-model="phoneNum" placeholder="手机号码"></el-input>
  49. </div>
  50. <div class="userLogin">
  51. <img src="../assets/password.png" />
  52. <el-input v-model="password" placeholder="密码" type="password"></el-input>
  53. </div> -->
  54. <el-form
  55. label-position="right"
  56. label-width="80px"
  57. style="margin-top: 30px"
  58. :rules="rules2"
  59. ref="ruleForm2"
  60. :model="registerForm"
  61. >
  62. <el-form-item label="手机号码" prop="phone">
  63. <el-input
  64. v-model="registerForm.rphoneNum"
  65. auto-complete="off"
  66. placeholder="请输入手机号码"
  67. style="width: 100%"
  68. ></el-input>
  69. </el-form-item>
  70. <el-form-item label="密码" prop="pass">
  71. <el-input
  72. v-model="registerForm.rpassword"
  73. auto-complete="off"
  74. placeholder="请输入密码"
  75. type="password"
  76. style="width: 100%"
  77. ></el-input>
  78. </el-form-item>
  79. <el-form-item label="确认密码" prop="checkPass">
  80. <el-input
  81. v-model="registerForm.repassword"
  82. auto-complete="off"
  83. placeholder="请再输入一遍密码"
  84. type="password"
  85. style="width: 100%"
  86. ></el-input>
  87. </el-form-item>
  88. <el-form-item label="学校" prop="school">
  89. <el-select v-model="registerForm.school" placeholder="请选择学校">
  90. <el-option
  91. v-for="(item, index) in schoolArray"
  92. :key="index"
  93. :label="item.name"
  94. :value="item.id"
  95. >
  96. </el-option>
  97. </el-select>
  98. </el-form-item>
  99. </el-form>
  100. <div style="display: flex; justify-content: flex-end">
  101. <el-button type="text" @click="islogin = true">返回登录</el-button>
  102. </div>
  103. <div class="login_button">
  104. <button @click="register()">注册</button>
  105. </div>
  106. </div>
  107. </div>
  108. </div>
  109. </template>
  110. <script>
  111. export default {
  112. data() {
  113. var validatePass = (rule, value, callback) => {
  114. var _this = this;
  115. if (_this.registerForm.rpassword === "") {
  116. callback(new Error("请输入密码"));
  117. } else {
  118. if (_this.registerForm.rpassword.length < 6) {
  119. callback(new Error("输入的密码需不少于6位"));
  120. } else if (_this.registerForm.repassword !== "") {
  121. _this.$refs.ruleForm2.validateField("checkPass");
  122. }
  123. callback();
  124. }
  125. };
  126. var validatePass2 = (rule, value, callback) => {
  127. var _this = this;
  128. if (_this.registerForm.repassword === "") {
  129. callback(new Error("请再次输入密码"));
  130. } else if (
  131. _this.registerForm.repassword !== _this.registerForm.rpassword
  132. ) {
  133. callback(new Error("两次输入密码不一致!"));
  134. } else {
  135. callback();
  136. }
  137. };
  138. // 验证手机
  139. var checkPhone = (rule, value, callback) => {
  140. var _this = this;
  141. let reg = /^1\d{10}$/;
  142. if (_this.registerForm.rphoneNum === "") {
  143. callback(new Error("请输入手机号码"));
  144. } else {
  145. if (!reg.test(_this.registerForm.rphoneNum)) {
  146. callback(new Error("请输入11位手机号"));
  147. } else {
  148. let params = { un: _this.registerForm.rphoneNum };
  149. this.ajax
  150. .get(this.$store.state.api + "findPhone", params)
  151. .then((res) => {
  152. if (res.data[0].length > 0) {
  153. callback(new Error("此手机号已注册"));
  154. } else {
  155. callback();
  156. }
  157. console.log(res.data[0]);
  158. })
  159. .catch((err) => {
  160. callback();
  161. console.error(err);
  162. });
  163. }
  164. }
  165. };
  166. return {
  167. islogin: true,
  168. phoneNum: "",
  169. password: "",
  170. sqlPassword: "",
  171. registerForm: {
  172. rphoneNum: "",
  173. rpassword: "",
  174. repassword: "",
  175. school: "",
  176. },
  177. schoolArray: [],
  178. now: "",
  179. rules2: {
  180. phone: [
  181. {
  182. required: true,
  183. type: "number",
  184. validator: checkPhone,
  185. trigger: ["blur", "change"],
  186. },
  187. ],
  188. pass: [{ required: true, validator: validatePass, trigger: "blur" }],
  189. checkPass: [
  190. { required: true, validator: validatePass2, trigger: "blur" },
  191. ],
  192. school: [
  193. { required: true, message: "请选择活动区域", trigger: "blur" },
  194. ],
  195. },
  196. userInfo: [],
  197. };
  198. },
  199. created() {
  200. // this.getOrg();
  201. this.getSchool();
  202. },
  203. methods: {
  204. time() {
  205. if (!this.now) {
  206. this.now = new Date().getTime();
  207. return true;
  208. } else {
  209. let time = new Date().getTime();
  210. if (time - this.now > 3000) {
  211. this.now = time;
  212. return true;
  213. } else {
  214. return false;
  215. }
  216. }
  217. },
  218. register() {
  219. this.$refs.ruleForm2.validate((valid) => {
  220. if (valid) {
  221. if (this.time()) {
  222. let params = [
  223. {
  224. username: this.registerForm.rphoneNum,
  225. userpassword: this.registerForm.repassword,
  226. oid: this.registerForm.school,
  227. },
  228. ];
  229. this.ajax
  230. .post(this.$store.state.api + "register", params)
  231. .then((res) => {
  232. this.$message({
  233. message: "注册成功",
  234. type: "success",
  235. });
  236. this.registerForm = {
  237. rphoneNum: "",
  238. rpassword: "",
  239. repassword: "",
  240. school: "",
  241. };
  242. this.islogin = true;
  243. })
  244. .catch((err) => {
  245. this.$message.error("注册失败");
  246. console.error(err);
  247. });
  248. }
  249. } else {
  250. return false;
  251. }
  252. });
  253. },
  254. goTo(path) {
  255. this.$router.push(path);
  256. },
  257. findPhone() {
  258. let params = { un: this.phoneNum };
  259. this.ajax
  260. .get(this.$store.state.api + "findUsername", params)
  261. .then((res) => {
  262. if (res.data[0].length > 0) {
  263. if (res.data[0][0].type == 0) {
  264. this.$message.error("此账号已被屏蔽登录,请咨询管理员");
  265. return;
  266. }
  267. this.isU = res.data[0][0].type;
  268. this.login();
  269. } else {
  270. this.$message.error("此账号不存在");
  271. return;
  272. this.isU = false;
  273. }
  274. console.log(res.data[0][0]);
  275. })
  276. .catch((err) => {
  277. console.error(err);
  278. });
  279. },
  280. login() {
  281. if (this.time()) {
  282. var _this = this;
  283. let isU = _this.isU;
  284. let params = [
  285. {
  286. uname: this.phoneNum,
  287. password: this.password,
  288. // sqlpassword: this.sqlPassword,
  289. },
  290. ];
  291. _this.ajax
  292. .post(_this.$store.state.api + "loginRace", params)
  293. .then((res) => {
  294. if (res.data.status == "1") {
  295. _this.$message({
  296. message: "登录成功",
  297. type: "success",
  298. });
  299. _this.userInfo = res.data[0][0];
  300. _this.$cookies.set("tlogin", "1", -1);
  301. _this.$cookies.set("tuserid", _this.userInfo.userid, -1);
  302. _this.$cookies.set("teacherInfo", _this.userInfo, -1);
  303. // window.sessionStorage.setItem("login", true);
  304. // window.sessionStorage.setItem("userInfo", JSON.stringify(this.userInfo));
  305. _this.$store.commit("update", ["isLogin", true]);
  306. _this.$store.commit("update", ["userInfo", _this.userInfo]);
  307. if (isU == 1) {
  308. this.$router.push("/eventCenter?steps=" + "2");
  309. }else if(isU == 2 || isU == 4){
  310. this.$router.push("/anliList");
  311. }else if(isU == 5 || isU == 6){
  312. this.$router.push("/anliList1");
  313. }else if(isU == 3){
  314. this.$router.push("/anliList2");
  315. }
  316. // console.log(_this.$store.state);
  317. } else {
  318. this.$message.error("密码错误");
  319. }
  320. console.log(res.data);
  321. })
  322. .catch((err) => {
  323. this.$message.error("登录失败");
  324. console.error(err);
  325. });
  326. }
  327. // sessionStorage.removeItem("key");
  328. },
  329. //查询学校
  330. // getOrg() {
  331. // this.ajax
  332. // .get(this.$store.state.api + "getAllOrg", "")
  333. // .then((res) => {
  334. // this.schoolArray = res.data[0];
  335. // console.log(res.data[0]);
  336. // })
  337. // .catch((err) => {
  338. // console.error(err);
  339. // });
  340. // },
  341. getSchool() {
  342. this.ajax
  343. .get(this.$store.state.api + "selectOrg", "")
  344. .then((res) => {
  345. this.schoolArray = res.data[0];
  346. })
  347. .catch((err) => {
  348. console.error(err);
  349. });
  350. },
  351. },
  352. };
  353. </script>
  354. <style scoped>
  355. .login_content {
  356. display: flex;
  357. align-items: center;
  358. justify-content: center;
  359. height: 100%;
  360. /* position: absolute; */
  361. width: 100%;
  362. }
  363. .login_box {
  364. width: 23%;
  365. min-width: 400px;
  366. margin: 0 auto;
  367. background: #fff;
  368. padding: 20px;
  369. box-shadow: 0 0 20px #eee;
  370. }
  371. /* .userLogin img {
  372. width: 50%;
  373. display: inline-block;
  374. width: 18px;
  375. padding-right: 5px;
  376. border-right: 1px solid #2a97ff;
  377. position: absolute;
  378. top: 8px;
  379. left: 10px;
  380. z-index: 999;
  381. } */
  382. /* .el-input >>> input {
  383. width: 100%;
  384. padding: 15px 0 15px 40px;
  385. outline: none;
  386. border: 1px solid #ccc;
  387. font-size: 14px;
  388. } */
  389. /* .userLogin {
  390. margin-top: 25px;
  391. position: relative;
  392. } */
  393. .login_button {
  394. margin-top: 10px;
  395. }
  396. .login_button button {
  397. width: 100%;
  398. color: #fff;
  399. background: #2a97ff;
  400. padding: 10px;
  401. border-radius: 10px;
  402. border: none;
  403. font-size: 18px;
  404. text-align: center;
  405. outline: none;
  406. cursor: pointer;
  407. }
  408. .login_title {
  409. text-align: center;
  410. font-size: 26px;
  411. font-weight: 600;
  412. }
  413. </style>