login.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. <template>
  2. <view class="backgroud-plate">
  3. <u-notify ref="uNotify"></u-notify>
  4. <view class="AI">
  5. <image src="../../static/southeast.png"></image>
  6. </view>
  7. <view class="subject">
  8. <view class="User">
  9. <u-input placeholder="请输入账号" v-model="record.User" border="bottom" clearable="true"></u-input>
  10. </view>
  11. <view class="password">
  12. <u-input placeholder="请输入密码" v-model="record.password" border="bottom" password="true"
  13. clearable = "true">
  14. </u-input>
  15. </view>
  16. <view class="verification">
  17. <view class="ver-input">
  18. <u-input placeholder="请输入验证码" v-model="record.code" border="bottom" clearable="true"></u-input>
  19. </view>
  20. <view class="ver-img" @click="prove()">
  21. <image :src="record.img" style="width: 200rpx;height: 70rpx;"></image>
  22. </view>
  23. </view>
  24. <view class="remember">
  25. <checkbox @click="remembers()" :checked="learn">记住账号密码</checkbox>
  26. </view>
  27. <view class="login-button">
  28. <u-button @click="login(record)" type="primary" text="登录" border="bottom"></u-button>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. import md5 from 'js-md5'
  35. export default {
  36. data() {
  37. return {
  38. record:{
  39. User: '', //账号
  40. password: '', //密码
  41. code: '', //验证码
  42. img: '',
  43. key:'',
  44. tenantId:'000000',
  45. type: "account",
  46. },
  47. learn:false
  48. }
  49. },
  50. onLoad() {
  51. this.prove();
  52. this.learns();
  53. this.fill();
  54. //this.getaddress();
  55. },
  56. methods: {
  57. exError(message){
  58. this.$refs.uNotify.show({
  59. top: 10,
  60. type: 'error',
  61. color: '#ffffff',
  62. bgColor: '#f56c6c',
  63. message: message,
  64. duration: 1500,
  65. fontSize: 15,
  66. })
  67. },
  68. // async getaddress(){
  69. // let that = this
  70. // let demit = uni.$http.baseUrl
  71. // const {data:res} = await uni.$http.get('/api/blade-system/tenant/info?domain=' + demit)
  72. // const data = res.data
  73. // if (data.success && data.tenantId) {
  74. // that.record.tenantId = data.tenantId;
  75. // }
  76. // },
  77. login(record) {
  78. var that = this
  79. uni.request({
  80. url:'https://cloud.long-chi.com/api/blade-auth/oauth/token?tenantId='+ record.tenantId + '&username=' +
  81. record.User + '&password=' + md5(record.password) + '&grant_type=captcha&scope=all&type=account',
  82. header:{
  83. 'Tenant-Id': record.tenantId,
  84. 'Captcha-Key': record.key,
  85. 'Captcha-Code': record.code,
  86. },
  87. method:'POST',
  88. success(res) {
  89. let data = res.data
  90. if(data.code != 200 && 'code' in data){
  91. that.exError(data.msg)
  92. }else{
  93. //缓存token,账号密码以及是否记住账号密码
  94. uni.setStorageSync('token',data.access_token)
  95. uni.setStorageSync('User',that.record.User)
  96. uni.setStorageSync('password',that.record.password)
  97. uni.setStorageSync('learn',that.learn)
  98. uni.switchTab({
  99. url:'/pages/lampControls/lampControls'
  100. })
  101. }
  102. }
  103. })
  104. },
  105. async prove(){
  106. var that = this
  107. const {data:res} = await uni.$http.get('/api/blade-auth/oauth/captcha')
  108. that.record.key = res.key
  109. that.record.img = res.image
  110. },
  111. //是否填充账号密码
  112. fill(){
  113. const loginUser = uni.getStorageSync('User')
  114. const loginPassword = uni.getStorageSync('password')
  115. if(loginUser && loginPassword){
  116. this.record.User = loginUser
  117. this.record.password = loginPassword
  118. }else{
  119. this.record.User = ''
  120. this.record.password = ''
  121. }
  122. },
  123. //加载时是否记住了账号密码
  124. learns(){
  125. const learn = uni.getStorageSync('learn')
  126. if(learn == true){
  127. this.learn = true
  128. }else{
  129. this.learn = false
  130. uni.removeStorageSync('User')
  131. uni.removeStorageSync('password')
  132. }
  133. },
  134. //是否记住账号密码
  135. remembers(){
  136. this.learn = !this.learn
  137. uni.setStorageSync('learn',this.learn)
  138. }
  139. },
  140. }
  141. </script>
  142. <style lang="scss">
  143. .backgroud-plate {}
  144. .AI {
  145. width: 750rpx;
  146. height: 400rpx;
  147. display: flex;
  148. justify-content: center;
  149. align-items: center;
  150. image{
  151. width: 300rpx;
  152. height: 300rpx;
  153. }
  154. }
  155. .subject {
  156. display: flex;
  157. align-items: center;
  158. flex-direction: column;
  159. justify-content: space-around;
  160. margin-top: 40rpx;
  161. width: 750rpx;
  162. height: 750rpx;
  163. position: relative;
  164. }
  165. .User,
  166. .password,
  167. .verification {
  168. width: 550rpx;
  169. height: 70rpx;
  170. }
  171. .verification{
  172. display: flex;
  173. }
  174. .ver-input {
  175. width: 350rpx;
  176. height: 70rpx;
  177. }
  178. .ver-img {
  179. width: 200rpx;
  180. height: 70rpx;
  181. }
  182. .login-button {
  183. width: 550rpx;
  184. height: 70rpx;
  185. margin-top: 70rpx;
  186. }
  187. .remember{
  188. width: 500rpx;
  189. height: 40rpx;
  190. display: flex;
  191. align-items: center;
  192. flex-direction:row-reverse;
  193. position: absolute;
  194. top: 520rpx;
  195. }
  196. </style>