login.vue 7.3 KB

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