index.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494
  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: "17744520491",
  149. password: "dingding123",
  150. // username: "15501067031",
  151. // password: "wugg123",
  152. },
  153. loginRules: {
  154. username: [
  155. { required: true, trigger: "blur", validator: validateUsername },
  156. ],
  157. password: [
  158. { required: true, trigger: "blur", validator: validatePassword },
  159. ],
  160. },
  161. passwordType: "password",
  162. capsTooltip: false,
  163. loading: false,
  164. showDialog: false,
  165. redirect: undefined,
  166. otherQuery: {},
  167. };
  168. },
  169. watch: {
  170. $route: {
  171. handler: function (route) {
  172. const query = route.query;
  173. if (query) {
  174. this.redirect = query.redirect;
  175. this.otherQuery = this.getOtherQuery(query);
  176. }
  177. },
  178. immediate: true,
  179. },
  180. },
  181. created() {},
  182. mounted() {
  183. // this.getversion();
  184. if (this.loginForm.username === "") {
  185. this.$refs.username.focus();
  186. } else if (this.loginForm.password === "") {
  187. this.$refs.password.focus();
  188. }
  189. },
  190. methods: {
  191. async getversion() {
  192. let res = await asyncRequest.version({});
  193. if (res && res.code === 0) {
  194. let data = res.data;
  195. this.ver = data.version;
  196. } else if (res && res.code >= 100 && res.code <= 104) {
  197. await this.logout();
  198. } else {
  199. this.$message.warning(res.message);
  200. }
  201. },
  202. setVisible(val) {
  203. this.show = val;
  204. },
  205. handleClick() {
  206. this.show = true;
  207. },
  208. handleSuccess() {
  209. this.show = false;
  210. this.handleLogin();
  211. },
  212. checkCapslock(e) {
  213. const { key } = e;
  214. this.capsTooltip = key && key.length === 1 && key >= "A" && key <= "Z";
  215. },
  216. showPwd() {
  217. if (this.passwordType === "password") {
  218. this.passwordType = "";
  219. } else {
  220. this.passwordType = "password";
  221. }
  222. this.$nextTick(() => {
  223. this.$refs.password.focus();
  224. });
  225. },
  226. handleLogin() {
  227. this.$refs.loginForm.validate((valid) => {
  228. if (valid) {
  229. this.loading = true;
  230. this.$store
  231. .dispatch("user/login", this.loginForm)
  232. .then((res) => {
  233. if (res.code === 0) {
  234. // this.$router.push({
  235. // path: this.redirect || "/",
  236. // query: this.otherQuery,
  237. // });
  238. this.getMenu();
  239. } else {
  240. this.$message.warning(res.message);
  241. this.loading = false;
  242. }
  243. })
  244. .catch((err) => {
  245. console.log(err);
  246. this.loading = false;
  247. });
  248. } else {
  249. console.log("error submit!!");
  250. return false;
  251. }
  252. });
  253. },
  254. getMenu() {
  255. this.$store
  256. .dispatch("user/getMenuList", this)
  257. .then((res) => {
  258. window.vm.$router.push({
  259. path: "/welcome",
  260. query: this.otherQuery,
  261. });
  262. this.loading = false;
  263. // console.log(res);
  264. })
  265. .catch((err) => {
  266. console.log(err);
  267. this.loading = false;
  268. });
  269. },
  270. getOtherQuery(query) {
  271. return Object.keys(query).reduce((acc, cur) => {
  272. if (cur !== "redirect") {
  273. acc[cur] = query[cur];
  274. }
  275. return acc;
  276. }, {});
  277. },
  278. },
  279. };
  280. </script>
  281. <style lang="scss">
  282. /* 修复input 背景不协调 和光标变色 */
  283. /* Detail see https://github.com/PanJiaChen/vue-element-admin/pull/927 */
  284. $bg: #283443;
  285. $light_gray: #fff;
  286. $cursor: #fff;
  287. @supports (-webkit-mask: none) and (not (cater-color: $cursor)) {
  288. .login-container .el-input input {
  289. color: $cursor;
  290. }
  291. }
  292. /* reset element-ui css */
  293. .login-container {
  294. .el-input {
  295. display: inline-block;
  296. height: 47px;
  297. width: 85%;
  298. input {
  299. background: transparent;
  300. border: 0px;
  301. -webkit-appearance: none;
  302. border-radius: 0px;
  303. padding: 12px 5px 12px 15px;
  304. color: #232323;
  305. height: 47px;
  306. // caret-color: $cursor;
  307. &:-webkit-autofill {
  308. // box-shadow: 0 0 0px 1000px $bg inset !important;
  309. // -webkit-text-fill-color: $cursor !important;
  310. }
  311. }
  312. }
  313. .el-form-item {
  314. border: 1px solid #e9e9e9;
  315. // background: rgba(0, 0, 0, 0.1);
  316. border-radius: 5px;
  317. color: #232323;
  318. }
  319. }
  320. </style>
  321. <style lang="scss" scoped>
  322. $bg: #2d3a4b;
  323. $dark_gray: #38c1e7;
  324. $light_gray: #f2f2f2;
  325. .login-container {
  326. position: fixed;
  327. top: 0;
  328. left: 0;
  329. width: 100%;
  330. height: 100%;
  331. min-width: 1000px;
  332. min-height: 700px;
  333. z-index: 2;
  334. zoom: 1;
  335. background-repeat: no-repeat;
  336. background-size: cover;
  337. background-position: center 0;
  338. background-image: url("~@/assets/sheji/loginbg.png");
  339. text-align: center;
  340. .login-form-main {
  341. display: inline-block;
  342. width: 600px;
  343. height: 500px;
  344. margin: 26vh auto 0 auto;
  345. position: relative;
  346. img {
  347. width: 400px;
  348. height: 350px;
  349. }
  350. .main-title {
  351. position: absolute;
  352. top: 0;
  353. left: 0;
  354. z-index: 2;
  355. left: 170px;
  356. top: 125px;
  357. text-align: left;
  358. color: #fff;
  359. h1 {
  360. padding: 0 0 13px 0;
  361. }
  362. h3 {
  363. font-size: 22px;
  364. }
  365. }
  366. .login-form {
  367. position: absolute;
  368. width: 320px;
  369. top: -20px;
  370. left: 380px;
  371. z-index: 3;
  372. max-width: 100%;
  373. padding: 60px 28px 20px 28px;
  374. margin: 0 auto;
  375. overflow: hidden;
  376. background: #fff;
  377. border-radius: 20px;
  378. .el-button--primary {
  379. background-color: #38c1e7;
  380. border-color: #38c1e7;
  381. height: 46px;
  382. font-size: 16px;
  383. text-align: center;
  384. }
  385. }
  386. }
  387. // min-height: 100%;
  388. // width: 100%;
  389. // background-color: $bg;
  390. // overflow: hidden;
  391. .beian {
  392. position: absolute;
  393. width: 100%;
  394. bottom: 60px;
  395. color: #343434;
  396. font-size: 12px;
  397. padding: 0 0 0 15%;
  398. span {
  399. padding: 0 10px;
  400. }
  401. a {
  402. display: inline-block;
  403. color: #343434;
  404. vertical-align: top;
  405. font-size: 12px;
  406. &:hover {
  407. text-decoration: underline;
  408. text-decoration-color: #343434;
  409. }
  410. }
  411. }
  412. .tips {
  413. font-size: 14px;
  414. color: #04a2ce;
  415. margin-bottom: 10px;
  416. span {
  417. &:first-of-type {
  418. margin-right: 8px;
  419. }
  420. }
  421. i {
  422. font-size: 20px;
  423. margin: 0 0 0 7px;
  424. }
  425. }
  426. .puzzle-box {
  427. position: absolute;
  428. top: 200px;
  429. }
  430. .svg-container {
  431. padding: 6px 5px 6px 6px;
  432. color: #38c1e7;
  433. vertical-align: middle;
  434. width: 30px;
  435. display: inline-block;
  436. }
  437. .title-container {
  438. position: relative;
  439. .title {
  440. font-size: 26px;
  441. color: #04a2ce;
  442. margin: 0px auto 40px auto;
  443. text-align: center;
  444. font-weight: bold;
  445. span {
  446. display: inline-block;
  447. font-size: 18px;
  448. vertical-align: top;
  449. padding: 10px 0 0 4px;
  450. }
  451. }
  452. }
  453. .show-pwd {
  454. position: absolute;
  455. right: 10px;
  456. top: 7px;
  457. font-size: 16px;
  458. color: $dark_gray;
  459. cursor: pointer;
  460. user-select: none;
  461. }
  462. .thirdparty-button {
  463. position: absolute;
  464. right: 0;
  465. bottom: 6px;
  466. }
  467. @media only screen and (max-width: 470px) {
  468. .thirdparty-button {
  469. display: none;
  470. }
  471. }
  472. }
  473. </style>