index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492
  1. <template>
  2. <div class="login-container">
  3. <div class="login-form-main">
  4. <img src="@/assets/sheji/loginlan.png" alt="" />
  5. <div class="main-title">
  6. <h1>欢迎登录</h1>
  7. <h3>采销平台订单系统</h3>
  8. </div>
  9. <el-form
  10. ref="loginForm"
  11. :model="loginForm"
  12. :rules="loginRules"
  13. class="login-form"
  14. autocomplete="on"
  15. label-position="left"
  16. >
  17. <div class="title-container">
  18. <h3 class="title">
  19. 采销平台订单系统<span>{{ ver }}</span>
  20. </h3>
  21. </div>
  22. <el-form-item prop="username">
  23. <span class="svg-container">
  24. <i class="el-icon-user"></i>
  25. </span>
  26. <el-input
  27. ref="username"
  28. v-model="loginForm.username"
  29. placeholder="手机号"
  30. name="username"
  31. type="text"
  32. tabindex="1"
  33. autocomplete="on"
  34. />
  35. </el-form-item>
  36. <el-tooltip
  37. v-model="capsTooltip"
  38. content="Caps lock is On"
  39. placement="right"
  40. manual
  41. >
  42. <el-form-item prop="password">
  43. <span class="svg-container">
  44. <i class="el-icon-unlock"></i>
  45. </span>
  46. <el-input
  47. :key="passwordType"
  48. ref="password"
  49. v-model="loginForm.password"
  50. :type="passwordType"
  51. placeholder="密码"
  52. name="password"
  53. tabindex="2"
  54. autocomplete="on"
  55. @keyup.native="checkCapslock"
  56. @blur="capsTooltip = false"
  57. @keyup.enter.native="handleLogin"
  58. />
  59. <span class="show-pwd" @click="showPwd">
  60. <svg-icon
  61. :icon-class="passwordType === 'password' ? 'eye' : 'eye-open'"
  62. />
  63. </span>
  64. </el-form-item>
  65. </el-tooltip>
  66. <el-button
  67. :loading="loading"
  68. :disabled="loading"
  69. type="primary"
  70. style="width: 100%; margin-top: 5px"
  71. @click.native.prevent="handleLogin()"
  72. >登&nbsp;&nbsp;&nbsp;&nbsp;录</el-button
  73. >
  74. <div style="position: relative; padding: 12px 0 0 0">
  75. <div class="tips" style="float: left">
  76. <el-popover
  77. placement="top"
  78. title="初始密码:"
  79. width="200"
  80. trigger="click"
  81. content="dingding123"
  82. >
  83. <i class="el-icon-info" slot="reference"></i>
  84. </el-popover>
  85. </div>
  86. <router-link to="/forget-password">
  87. <div class="tips" style="float: right">
  88. <span>忘记密码</span>
  89. </div>
  90. </router-link>
  91. </div>
  92. </el-form>
  93. </div>
  94. <div class="beian">
  95. <span>万宇恒通</span>
  96. <a target="_blank" href="https://beian.miit.gov.cn/"
  97. >京ICP备2020033956号</a
  98. >
  99. <span> </span>
  100. </div>
  101. </div>
  102. </template>
  103. <script>
  104. import asyncRequest from "@/apis/service/user";
  105. import resToken from "@/mixins/resToken";
  106. import {
  107. isnumber,
  108. isAlphanumeric,
  109. validAlphabets,
  110. isMobile,
  111. } from "@/utils/validate";
  112. export default {
  113. name: "Login",
  114. mixins: [resToken],
  115. data() {
  116. const validateUsername = (rule, value, callback) => {
  117. if (value === "") {
  118. callback(new Error("手机号不能为空!"));
  119. } else {
  120. if (!isMobile(value)) {
  121. callback(new Error("请输入正确的手机号"));
  122. } else {
  123. callback();
  124. }
  125. }
  126. };
  127. const validatePassword = (rule, value, callback) => {
  128. if (value === "") {
  129. callback(new Error("密码不能为空!"));
  130. } else {
  131. if (!isAlphanumeric(value)) {
  132. callback(new Error("密码为6-18位数字字母组合!"));
  133. } else if (value.length < 6 || value.length > 18) {
  134. callback(new Error("密码为6-18位数字字母组合!"));
  135. } else if (isnumber(value)) {
  136. callback(new Error("密码不能为纯数字!"));
  137. } else if (validAlphabets(value)) {
  138. callback(new Error("密码不能为纯字母!"));
  139. } else {
  140. callback();
  141. }
  142. }
  143. };
  144. return {
  145. ver: "",
  146. show: false,
  147. loginForm: {
  148. username: "",
  149. password: "",
  150. },
  151. loginRules: {
  152. username: [
  153. { required: true, trigger: "blur", validator: validateUsername },
  154. ],
  155. password: [
  156. { required: true, trigger: "blur", validator: validatePassword },
  157. ],
  158. },
  159. passwordType: "password",
  160. capsTooltip: false,
  161. loading: false,
  162. showDialog: false,
  163. redirect: undefined,
  164. otherQuery: {},
  165. };
  166. },
  167. watch: {
  168. $route: {
  169. handler: function (route) {
  170. const query = route.query;
  171. if (query) {
  172. this.redirect = query.redirect;
  173. this.otherQuery = this.getOtherQuery(query);
  174. }
  175. },
  176. immediate: true,
  177. },
  178. },
  179. created() {},
  180. mounted() {
  181. // this.getversion();
  182. if (this.loginForm.username === "") {
  183. this.$refs.username.focus();
  184. } else if (this.loginForm.password === "") {
  185. this.$refs.password.focus();
  186. }
  187. },
  188. methods: {
  189. async getversion() {
  190. let res = await asyncRequest.version({});
  191. if (res && res.code === 0) {
  192. let data = res.data;
  193. this.ver = data.version;
  194. } else if (res && res.code >= 100 && res.code <= 104) {
  195. await this.logout();
  196. } else {
  197. this.$message.warning(res.message);
  198. }
  199. },
  200. setVisible(val) {
  201. this.show = val;
  202. },
  203. handleClick() {
  204. this.show = true;
  205. },
  206. handleSuccess() {
  207. this.show = false;
  208. this.handleLogin();
  209. },
  210. checkCapslock(e) {
  211. const { key } = e;
  212. this.capsTooltip = key && key.length === 1 && key >= "A" && key <= "Z";
  213. },
  214. showPwd() {
  215. if (this.passwordType === "password") {
  216. this.passwordType = "";
  217. } else {
  218. this.passwordType = "password";
  219. }
  220. this.$nextTick(() => {
  221. this.$refs.password.focus();
  222. });
  223. },
  224. handleLogin() {
  225. this.$refs.loginForm.validate((valid) => {
  226. if (valid) {
  227. this.loading = true;
  228. this.$store
  229. .dispatch("user/login", this.loginForm)
  230. .then((res) => {
  231. if (res.code === 0) {
  232. // this.$router.push({
  233. // path: this.redirect || "/",
  234. // query: this.otherQuery,
  235. // });
  236. this.getMenu();
  237. } else {
  238. this.$message.warning(res.message);
  239. this.loading = false;
  240. }
  241. })
  242. .catch((err) => {
  243. console.log(err);
  244. this.loading = false;
  245. });
  246. } else {
  247. console.log("error submit!!");
  248. return false;
  249. }
  250. });
  251. },
  252. getMenu() {
  253. this.$store
  254. .dispatch("user/getMenuList", this)
  255. .then((res) => {
  256. window.vm.$router.push({
  257. path: "/welcome",
  258. query: this.otherQuery,
  259. });
  260. this.loading = false;
  261. // console.log(res);
  262. })
  263. .catch((err) => {
  264. console.log(err);
  265. this.loading = false;
  266. });
  267. },
  268. getOtherQuery(query) {
  269. return Object.keys(query).reduce((acc, cur) => {
  270. if (cur !== "redirect") {
  271. acc[cur] = query[cur];
  272. }
  273. return acc;
  274. }, {});
  275. },
  276. },
  277. };
  278. </script>
  279. <style lang="scss">
  280. /* 修复input 背景不协调 和光标变色 */
  281. /* Detail see https://github.com/PanJiaChen/vue-element-admin/pull/927 */
  282. $bg: #283443;
  283. $light_gray: #fff;
  284. $cursor: #fff;
  285. @supports (-webkit-mask: none) and (not (cater-color: $cursor)) {
  286. .login-container .el-input input {
  287. color: $cursor;
  288. }
  289. }
  290. /* reset element-ui css */
  291. .login-container {
  292. .el-input {
  293. display: inline-block;
  294. height: 47px;
  295. width: 85%;
  296. input {
  297. background: transparent;
  298. border: 0px;
  299. -webkit-appearance: none;
  300. border-radius: 0px;
  301. padding: 12px 5px 12px 15px;
  302. color: #232323;
  303. height: 47px;
  304. // caret-color: $cursor;
  305. &:-webkit-autofill {
  306. // box-shadow: 0 0 0px 1000px $bg inset !important;
  307. // -webkit-text-fill-color: $cursor !important;
  308. }
  309. }
  310. }
  311. .el-form-item {
  312. border: 1px solid #e9e9e9;
  313. // background: rgba(0, 0, 0, 0.1);
  314. border-radius: 5px;
  315. color: #232323;
  316. }
  317. }
  318. </style>
  319. <style lang="scss" scoped>
  320. $bg: #2d3a4b;
  321. $dark_gray: #38c1e7;
  322. $light_gray: #f2f2f2;
  323. .login-container {
  324. position: fixed;
  325. top: 0;
  326. left: 0;
  327. width: 100%;
  328. height: 100%;
  329. min-width: 1000px;
  330. min-height: 700px;
  331. z-index: 2;
  332. zoom: 1;
  333. background-repeat: no-repeat;
  334. background-size: cover;
  335. background-position: center 0;
  336. background-image: url("~@/assets/sheji/loginbg.png");
  337. text-align: center;
  338. .login-form-main {
  339. display: inline-block;
  340. width: 600px;
  341. height: 500px;
  342. margin: 26vh auto 0 auto;
  343. position: relative;
  344. img {
  345. width: 400px;
  346. height: 350px;
  347. }
  348. .main-title {
  349. position: absolute;
  350. top: 0;
  351. left: 0;
  352. z-index: 2;
  353. left: 170px;
  354. top: 125px;
  355. text-align: left;
  356. color: #fff;
  357. h1 {
  358. padding: 0 0 13px 0;
  359. }
  360. h3 {
  361. font-size: 22px;
  362. }
  363. }
  364. .login-form {
  365. position: absolute;
  366. width: 320px;
  367. top: -20px;
  368. left: 380px;
  369. z-index: 3;
  370. max-width: 100%;
  371. padding: 60px 28px 20px 28px;
  372. margin: 0 auto;
  373. overflow: hidden;
  374. background: #fff;
  375. border-radius: 20px;
  376. .el-button--primary {
  377. background-color: #38c1e7;
  378. border-color: #38c1e7;
  379. height: 46px;
  380. font-size: 16px;
  381. text-align: center;
  382. }
  383. }
  384. }
  385. // min-height: 100%;
  386. // width: 100%;
  387. // background-color: $bg;
  388. // overflow: hidden;
  389. .beian {
  390. position: absolute;
  391. width: 100%;
  392. bottom: 60px;
  393. color: #343434;
  394. font-size: 12px;
  395. padding: 0 0 0 15%;
  396. span {
  397. padding: 0 10px;
  398. }
  399. a {
  400. display: inline-block;
  401. color: #343434;
  402. vertical-align: top;
  403. font-size: 12px;
  404. &:hover {
  405. text-decoration: underline;
  406. text-decoration-color: #343434;
  407. }
  408. }
  409. }
  410. .tips {
  411. font-size: 14px;
  412. color: #04a2ce;
  413. margin-bottom: 10px;
  414. span {
  415. &:first-of-type {
  416. margin-right: 8px;
  417. }
  418. }
  419. i {
  420. font-size: 20px;
  421. margin: 0 0 0 7px;
  422. }
  423. }
  424. .puzzle-box {
  425. position: absolute;
  426. top: 200px;
  427. }
  428. .svg-container {
  429. padding: 6px 5px 6px 6px;
  430. color: #38c1e7;
  431. vertical-align: middle;
  432. width: 30px;
  433. display: inline-block;
  434. }
  435. .title-container {
  436. position: relative;
  437. .title {
  438. font-size: 26px;
  439. color: #04a2ce;
  440. margin: 0px auto 40px auto;
  441. text-align: center;
  442. font-weight: bold;
  443. span {
  444. display: inline-block;
  445. font-size: 18px;
  446. vertical-align: top;
  447. padding: 10px 0 0 4px;
  448. }
  449. }
  450. }
  451. .show-pwd {
  452. position: absolute;
  453. right: 10px;
  454. top: 7px;
  455. font-size: 16px;
  456. color: $dark_gray;
  457. cursor: pointer;
  458. user-select: none;
  459. }
  460. .thirdparty-button {
  461. position: absolute;
  462. right: 0;
  463. bottom: 6px;
  464. }
  465. @media only screen and (max-width: 470px) {
  466. .thirdparty-button {
  467. display: none;
  468. }
  469. }
  470. }
  471. </style>