index.vue 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400
  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>登录藏金1745管理系统</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. 藏金1745管理系统<span>{{ ver }}</span>
  20. </h3>
  21. </div>
  22. <!-- 用户名 -->
  23. <el-form-item prop="username">
  24. <!-- <span class="svg-container">
  25. <svg-icon icon-class="user" />
  26. </span> -->
  27. <el-input
  28. ref="username"
  29. v-model="loginForm.username"
  30. placeholder="账号"
  31. name="username"
  32. type="text"
  33. tabindex="1"
  34. autocomplete="on"
  35. >
  36. <i slot="prefix" class="el-icon-user-solid"></i>
  37. </el-input>
  38. </el-form-item>
  39. <!-- 文字提示是否大小写,固定在右边 -->
  40. <el-tooltip
  41. v-model="capsTooltip"
  42. content="Caps lock is On"
  43. placement="right"
  44. manual
  45. >
  46. <!-- 密码栏 -->
  47. <el-form-item prop="password">
  48. <!-- <span class="svg-container">
  49. <svg-icon icon-class="password" />
  50. </span> -->
  51. <el-input
  52. :key="passwordType"
  53. ref="password"
  54. v-model="loginForm.password"
  55. :type="passwordType"
  56. placeholder="密码"
  57. name="password"
  58. tabindex="2"
  59. autocomplete="on"
  60. @keyup.native="checkCapslock"
  61. @blur="capsTooltip = false"
  62. @keyup.enter.native="handleLogin"
  63. >
  64. <!-- 监听键盘事件,执行checkCapslock函数,判断提示框是否出现,失焦隐藏 -->
  65. <i slot="prefix" class="el-icon-warning"></i>
  66. <i
  67. slot="suffix"
  68. :class="{
  69. 'el-input__icon': passwordType === 'password',
  70. 'el-input__icon': passwordType !== 'password',
  71. }"
  72. @click.native="showPwd"
  73. ></i>
  74. </el-input>
  75. </el-form-item>
  76. </el-tooltip>
  77. <el-button
  78. :loading="loading"
  79. :disabled="loading"
  80. type="primary"
  81. style="width: 100%; margin-top: 5px"
  82. @click.native.prevent="handleLogin()"
  83. >登&nbsp;&nbsp;&nbsp;&nbsp;录</el-button
  84. >
  85. </el-form>
  86. </div>
  87. <div class="beian">黑ICP备2021005911号-1</div>
  88. </div>
  89. </template>
  90. <script>
  91. import asyncRequest from "@/apis/service/user";
  92. import resToken from "@/mixins/resToken"; //登出文件
  93. export default {
  94. name: "Login",
  95. mixins: [resToken],
  96. data() {
  97. const validateUsername = (rule, value, callback) => {
  98. if (value === "") {
  99. callback(new Error("账号不能为空!"));
  100. } else {
  101. callback();
  102. }
  103. };
  104. const validatePassword = (rule, value, callback) => {
  105. callback();
  106. if (value === "") {
  107. callback(new Error("密码不能为空!"));
  108. } else {
  109. callback();
  110. }
  111. };
  112. return {
  113. ver: "",
  114. show: false,
  115. loginForm: {
  116. username: "",
  117. password: "",
  118. },
  119. loginRules: {
  120. username: [
  121. { required: true, trigger: "blur", validator: validateUsername },
  122. ],
  123. password: [
  124. { required: true, trigger: "blur", validator: validatePassword },
  125. ],
  126. },
  127. passwordType: "password",
  128. capsTooltip: false, //绑定在tooltip文字提示的属性。
  129. loading: false,
  130. showDialog: false,
  131. redirect: undefined,
  132. otherQuery: {},
  133. };
  134. },
  135. watch: {
  136. $route: {
  137. handler: function (route) {
  138. const query = route.query;
  139. if (query) {
  140. this.redirect = query.redirect;
  141. this.otherQuery = this.getOtherQuery(query);
  142. }
  143. },
  144. immediate: true,
  145. },
  146. },
  147. created() {},
  148. mounted() {
  149. // this.getversion();
  150. if (this.loginForm.username === "") {
  151. this.$refs.username.focus();
  152. } else if (this.loginForm.password === "") {
  153. this.$refs.password.focus();
  154. }
  155. },
  156. methods: {
  157. async getversion() {
  158. let res = await asyncRequest.version({});
  159. if (res && res.code === 0) {
  160. let data = res.data;
  161. this.ver = data.version;
  162. } else if (res && res.code >= 100 && res.code <= 104) {
  163. await this.logout();
  164. }
  165. },
  166. setVisible(val) {
  167. this.show = val;
  168. },
  169. handleClick() {
  170. this.show = true;
  171. },
  172. handleSuccess() {
  173. this.show = false;
  174. this.handleLogin();
  175. },
  176. checkCapslock(e) {
  177. const { key } = e;
  178. this.capsTooltip = key && key.length === 1 && key >= "A" && key <= "Z";
  179. },
  180. showPwd() {
  181. if (this.passwordType === "password") {
  182. this.passwordType = "";
  183. } else {
  184. this.passwordType = "password";
  185. }
  186. this.$nextTick(() => {
  187. this.$refs.password.focus();
  188. });
  189. },
  190. handleLogin() {
  191. this.$refs.loginForm.validate((valid) => {
  192. if (valid) {
  193. this.loading = true;
  194. this.$store
  195. .dispatch("user/login", this.loginForm)
  196. .then((res) => {
  197. if (res.code === 0) {
  198. this.getMenu();
  199. } else {
  200. console.log(res);
  201. this.$message.warning(res.msg);
  202. this.loading = false;
  203. }
  204. })
  205. .catch((err) => {
  206. console.log(err);
  207. this.loading = false;
  208. });
  209. } else {
  210. console.log("error submit!!");
  211. return false;
  212. }
  213. });
  214. },
  215. getMenu() {
  216. this.$store
  217. .dispatch("user/getMenuList", this)
  218. .then((res) => {
  219. window.vm.$router.push({
  220. path: "/welcome",
  221. query: this.otherQuery,
  222. });
  223. this.loading = false;
  224. })
  225. .catch((err) => {
  226. console.log(err);
  227. this.loading = false;
  228. });
  229. },
  230. getOtherQuery(query) {
  231. return Object.keys(query).reduce((acc, cur) => {
  232. if (cur !== "redirect") {
  233. acc[cur] = query[cur];
  234. }
  235. return acc;
  236. }, {});
  237. },
  238. },
  239. };
  240. </script>
  241. <style lang="scss" scoped>
  242. $bg: #283443;
  243. // $light_gray: #fff;
  244. $cursor: #fff;
  245. $bg: #2d3a4b;
  246. $dark_gray: #38c1e7;
  247. $light_gray: #f2f2f2;
  248. @supports (-webkit-mask: none) and (not (cater-color: $cursor)) {
  249. .login-container .el-input input {
  250. color: $cursor;
  251. }
  252. }
  253. .login-container {
  254. .beian {
  255. position: absolute;
  256. width: 100%;
  257. text-align: center;
  258. color: #fff;
  259. }
  260. .el-input {
  261. display: inline-block;
  262. height: 47px;
  263. width: 100%;
  264. input {
  265. background: transparent;
  266. border: 0px;
  267. -webkit-appearance: none;
  268. border-radius: 0px;
  269. padding: 12px 5px 12px 15px;
  270. color: #232323;
  271. height: 47px;
  272. }
  273. }
  274. .el-form-item {
  275. padding: 0 8%;
  276. // border: 1px solid #e9e9e9;
  277. // border-radius: 5px;
  278. // color: #232323;
  279. }
  280. }
  281. .login-container {
  282. position: fixed;
  283. top: 0;
  284. left: 0;
  285. width: 100%;
  286. height: 100%;
  287. min-width: 1000px;
  288. min-height: 700px;
  289. z-index: 2;
  290. zoom: 1;
  291. background-repeat: no-repeat;
  292. background-size: cover;
  293. background-position: center 0;
  294. background: $bg;
  295. text-align: center;
  296. .login-form-main {
  297. display: inline-block;
  298. width: 320px;
  299. height: 500px;
  300. margin: 26vh auto 0 auto;
  301. position: relative;
  302. img {
  303. width: 400px;
  304. height: 350px;
  305. }
  306. .main-title {
  307. position: absolute;
  308. top: 0;
  309. left: 0;
  310. z-index: 2;
  311. left: 170px;
  312. top: 125px;
  313. text-align: left;
  314. color: #fff;
  315. h1 {
  316. padding: 0 0 13px 0;
  317. }
  318. h3 {
  319. font-size: 22px;
  320. }
  321. }
  322. .login-form {
  323. max-width: 100%;
  324. padding: 50px 28px 50px 28px;
  325. margin: 0 auto;
  326. overflow: hidden;
  327. background: #fff;
  328. border-radius: 20px;
  329. .el-button--primary {
  330. background-color: $bg;
  331. border-color: $bg;
  332. height: 46px;
  333. font-size: 16px;
  334. text-align: center;
  335. }
  336. }
  337. }
  338. .puzzle-box {
  339. position: absolute;
  340. top: 200px;
  341. }
  342. .svg-container {
  343. padding: 6px 5px 6px 15px;
  344. // color: #38c1e7;
  345. vertical-align: middle;
  346. width: 30px;
  347. display: inline-block;
  348. }
  349. .title-container {
  350. position: relative;
  351. .title {
  352. font-size: 26px;
  353. // color: $bge;
  354. margin: 0px auto 40px auto;
  355. text-align: center;
  356. font-weight: bold;
  357. span {
  358. display: inline-block;
  359. font-size: 18px;
  360. vertical-align: top;
  361. padding: 10px 0 0 4px;
  362. }
  363. }
  364. }
  365. .show-pwd {
  366. position: absolute;
  367. right: 10px;
  368. top: 7px;
  369. font-size: 16px;
  370. // color: $dark_gray;
  371. cursor: pointer;
  372. user-select: none;
  373. }
  374. .thirdparty-button {
  375. position: absolute;
  376. right: 0;
  377. bottom: 6px;
  378. }
  379. @media only screen and (max-width: 470px) {
  380. .thirdparty-button {
  381. display: none;
  382. }
  383. }
  384. }
  385. </style>