login.vue 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343
  1. <template>
  2. <view class="content">
  3. <view class="title">
  4. <text class="thing" style="width: 100rpx;"></text>
  5. <text class="name">用户登录</text>
  6. <text class="thing" style="width: 300rpx;"></text>
  7. </view>
  8. <view class="form-box">
  9. <view class="row-input">
  10. <u-icon name="account" color="#2979ff" size="50" style="padding: 0 20rpx;"></u-icon>
  11. <input v-model="account" placeholder="请输入用户账号" maxlength="18" clearable />
  12. </view>
  13. <view class="row-input">
  14. <u-icon name="lock" color="#2979ff" size="50" style="padding: 0 20rpx;"></u-icon>
  15. <input v-model="password" placeholder="登陆密码" clearable :password="!isShowPassword" />
  16. <u-icon name="eye-fill" color="#2979ff" size="50" style="padding-right:20rpx" v-if="isShowPassword"
  17. @click="showOrHide"></u-icon>
  18. <u-icon name="eye-off" color="#2979ff" size="50" style="padding-right:0rpx" v-else @click="showOrHide">
  19. </u-icon>
  20. </view>
  21. <!-- <view class="rowinputcaptcha">
  22. <u-icon name="hourglass" color="#2979ff" size="50" style="padding: 0 20rpx;"></u-icon>
  23. <input class="captchainput" v-model="captcha" placeholder="验证码"/>
  24. <u--image :showLoading="true" :src="captchaPath" width="150px" height="35px" @click="getCaptcha"></u--image>
  25. </view> -->
  26. <view class="menu-link">
  27. <text @click="forget">找回密码</text>
  28. </view>
  29. <view class="login-btn" @click="loginbtn">登录</view>
  30. <view class="tip-link">
  31. 还没有账号?<text @click="register">注册</text>
  32. </view>
  33. </view>
  34. <u-toast ref="uToast" />
  35. </view>
  36. </template>
  37. <script>
  38. // function getUUID() {
  39. // return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, c => {
  40. // return (c === 'x' ? (Math.random() * 16 | 0) : ('r&0x3' | '0x8')).toString(16)
  41. // })
  42. // }
  43. //const BaseApi= require("@/http/baseApi.js");
  44. export default {
  45. data() {
  46. return {
  47. isShowPassword: false,
  48. account: '',
  49. password: '',
  50. captcha: '',
  51. uuid: '',
  52. captchaPath: '',
  53. }
  54. },
  55. onLoad() {
  56. // this.getCaptcha();
  57. },
  58. onUnload() {
  59. //触发水印显示
  60. uni.$emit('ly-show-watermark');
  61. },
  62. methods: {
  63. // 获取验证码
  64. // getCaptcha() {
  65. // this.uuid = getUUID();
  66. // this.captchaPath =BaseApi.BaseApi+ `/captcha?uuid=${this.uuid}`;
  67. // },
  68. loginbtn() {
  69. if (this.account == '') {
  70. this.$refs.uToast.show({
  71. type: 'error',
  72. message: "请输入账号",
  73. })
  74. // uni.showToast({
  75. // title: "请输入账号",
  76. // icon:'error',
  77. // duration: 1000,
  78. // })
  79. } else if (this.password == '') {
  80. this.$refs.uToast.show({
  81. type: 'error',
  82. message: "请输入密码",
  83. })
  84. }
  85. let formData = {
  86. username: this.account,
  87. password: this.password,
  88. // uuid:this.uuid,
  89. // captcha:this.captcha,
  90. }
  91. //登录功能
  92. this.$api.post('/login', formData)
  93. .then(res => {
  94. if (res.data.code == 0) {
  95. uni.setStorageSync('tokendata', res.data.data.token); //token
  96. uni.setStorageSync('Userinformation', formData); //用户信息
  97. //获取用户的信息,如组织架构,个人信息,权限等
  98. Promise.all([this.getpermissions(), this.getDictList(), this.getuserInfo(), ]).then(() => {
  99. // uni.switchTab({
  100. // url: '/pages/index/index',
  101. // success: res => {},
  102. // fail: () => {},
  103. // complete: () => {},
  104. // })
  105. uni.navigateTo({
  106. url: '/pages/index/index'
  107. })
  108. });
  109. } else {
  110. this.$refs.uToast.show({
  111. type: 'error',
  112. message: "账号或者密码错误,请重新输入",
  113. })
  114. }
  115. })
  116. },
  117. getpermissions() {
  118. console.log('权限功能', )
  119. //获取用户权限功能
  120. return new Promise((resolve, reject) => {
  121. this.$api.get('/menu/permissions', {}).then((res) => {
  122. uni.setStorageSync('ButtonPermissions', res.data.data);
  123. resolve(res);
  124. // console.log('111111111111111111', res)
  125. }).catch(e => {
  126. reject(e)
  127. })
  128. });
  129. // this.$api.get('/menu/permissions', {})
  130. // .then(res1 => {
  131. // uni.setStorageSync('ButtonPermissions', res1.data.data); //权限列表
  132. // })
  133. },
  134. getDictList() {
  135. //获取字典列表, 添加并全局变量保存
  136. return new Promise((resolve, reject) => {
  137. this.$api.get('/all', {}).then((res) => {
  138. uni.setStorageSync('getDictDataList', res.data.data);
  139. resolve(res);
  140. // console.log('222222', res)
  141. }).catch(e => {
  142. reject(e)
  143. })
  144. });
  145. // this.$api.get('/all', {})
  146. // .then(res => {
  147. // // console.log('88888', res.data.data)
  148. // uni.setStorageSync('getDictDataList', res.data.data);
  149. // })
  150. },
  151. getuserInfo() {
  152. //获取用户信息
  153. return new Promise((resolve, reject) => {
  154. this.$api.get('/user/userInfo', {}).then((res) => {
  155. uni.setStorageSync('getuserInfo', res.data.data);
  156. resolve(res);
  157. //console.log('333333', res)
  158. }).catch(e => {
  159. reject(e)
  160. })
  161. });
  162. // this.$api.get('/user/userInfo', {})
  163. // .then(res => {
  164. // // console.log('88888', res.data.data)
  165. // uni.setStorageSync('getuserInfo', res.data.data);
  166. // })
  167. },
  168. // 密码显示/密码隐藏
  169. showOrHide() {
  170. this.isShowPassword = !this.isShowPassword
  171. },
  172. // 找回密码
  173. forget() {
  174. uni.navigateTo({
  175. url: '/pages/login/forget',
  176. success: res => {},
  177. fail: () => {},
  178. complete: () => {},
  179. })
  180. },
  181. // 注册
  182. register() {
  183. uni.navigateTo({
  184. url: '/pages/login/register',
  185. success: res => {},
  186. fail: () => {},
  187. complete: () => {},
  188. })
  189. }
  190. }
  191. }
  192. </script>
  193. <style lang="scss">
  194. page {
  195. background-color: #0b0c14;
  196. }
  197. .content {
  198. padding: 100rpx 40rpx;
  199. }
  200. .title {
  201. display: flex;
  202. flex-direction: column;
  203. height: 200rpx;
  204. .thing {
  205. height: 8rpx;
  206. background-image: linear-gradient(to right, #3feaea, #0168e6);
  207. }
  208. .name {
  209. font-weight: bold;
  210. font-size: 50rpx;
  211. line-height: 120rpx;
  212. background: linear-gradient(to right, #3feaea, blue);
  213. background-clip: text;
  214. color: transparent;
  215. letter-spacing: 5rpx;
  216. }
  217. }
  218. .form-box {
  219. .rowinputcaptcha {
  220. display: flex;
  221. justify-content: flex-start;
  222. align-items: center;
  223. height: 110rpx;
  224. //background-color: #2b2f41;
  225. border-radius: 8rpx;
  226. margin-bottom: 50rpx;
  227. input {
  228. width: 300rpx;
  229. font-size: 30rpx;
  230. color: #a1a2a3;
  231. }
  232. }
  233. .row-input {
  234. display: flex;
  235. justify-content: flex-start;
  236. align-items: center;
  237. height: 110rpx;
  238. background-color: #2b2f41;
  239. border-radius: 8rpx;
  240. margin-bottom: 50rpx;
  241. image {
  242. margin: 0 30rpx;
  243. flex-shrink: 0;
  244. width: 38rpx;
  245. height: 38rpx;
  246. }
  247. input {
  248. width: 460rpx;
  249. font-size: 30rpx;
  250. color: #a1a2a3;
  251. }
  252. }
  253. .menu-link {
  254. display: flex;
  255. justify-content: flex-end;
  256. align-items: center;
  257. font-size: 28rpx;
  258. color: #676c7f;
  259. }
  260. .login-btn {
  261. margin-top: 60rpx;
  262. display: flex;
  263. justify-content: center;
  264. align-items: center;
  265. font-size: 35rpx;
  266. letter-spacing: 15rpx;
  267. color: #FFFFFF;
  268. height: 110rpx;
  269. border-radius: 8rpx;
  270. background-image: linear-gradient(to right, #3feaea, #0168e6);
  271. }
  272. .tip-link {
  273. position: fixed;
  274. letter-spacing: 4rpx;
  275. bottom: 50rpx;
  276. left: 40rpx;
  277. font-size: 28rpx;
  278. color: #a1a2a3;
  279. text {
  280. padding-left: 10rpx;
  281. color: #226ef0;
  282. }
  283. }
  284. }
  285. .captchainput {
  286. width: 300rpx;
  287. }
  288. </style>