index.vue 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <template>
  2. <view class="content">
  3. <!-- <img src="../../static/bei.png" alt="" class="tubei"> -->
  4. <form>
  5. <view class="avatorWrapper">
  6. </view>
  7. <view class="name">中小型机场手持终端</view>
  8. <view class="form">
  9. <view class="inputWrapper">
  10. <view class="log"></view>
  11. <input class="input" name="username" type="text" v-model="username" placeholder-style="font-size:.8125rem;color:rgb(223, 223, 223);display:flex;justify-content: start;" placeholder="请输入登录账号"/>
  12. </view>
  13. <view class="inputWrapper">
  14. <view class="pass"></view>
  15. <input class="input" name="password" type="password" v-model="password" placeholder-style="font-size:.8125rem;color:rgb(223, 223, 223);display:flex;justify-content: start;" placeholder="请输入密码"/>
  16. </view>
  17. </view>
  18. <button form-type="submit" class="loginBtn" @tap="login">登录</button>
  19. </form>
  20. </view>
  21. </template>
  22. <script>
  23. export default {
  24. data() {
  25. return {
  26. title: '',
  27. username:"",
  28. password:"",
  29. }
  30. },
  31. created() {
  32. this.getToken()
  33. },
  34. onLoad() {
  35. },
  36. methods: {
  37. async getToken(){
  38. let that = this;
  39. let data = {
  40. "appid": "appdjmmaf0kerwpf",
  41. "appSecret": "appu7zpllz1folzsljm498dcpi0lsog1"
  42. }
  43. await that.$http.httpPost('/foxlibc/getToken',data).then(res => {
  44. if(res.code == "0"){
  45. that.$storage.setJson('apps',res.returnData);
  46. }
  47. })
  48. },
  49. async login () {
  50. const apps = this.$storage.getJson("apps")
  51. let that = this;
  52. let passWordMD5 = this.$md5(that.password)
  53. let data = {
  54. "app_token": apps.app_token,
  55. "username": that.username,
  56. "password": passWordMD5
  57. }
  58. if(data.username==""||data.password==""){
  59. uni.showToast({
  60. title: '请输入正确账号密码',
  61. icon: 'none',
  62. duration: 500
  63. });
  64. return;
  65. }
  66. await that.$http.httpPost('/foxlibc/sign-in',data).then(res => {
  67. if(res.code=="-1"){
  68. uni.showToast({
  69. title: '用户名或密码错误',
  70. icon: 'none',
  71. duration: 500
  72. });
  73. }
  74. else if(res.code=="0"){
  75. that.$storage.setJson('users',res.returnData);
  76. this.getAuth(res.returnData.user_id);
  77. }
  78. else{
  79. uni.showToast({
  80. title: '登录失败请联系管理员',
  81. icon: 'none',
  82. duration: 5000
  83. });
  84. }
  85. })
  86. },
  87. async getAuth(user_id){
  88. let data = {"serviceId":2,"dataContent":[{"user_id":user_id}],"page":1,"pageSize":999,"event":"0"}
  89. await this.$http.httpPost('/openApi/query',data).then(res => {
  90. if(res.code=="0"){
  91. let isAPP = res.returnData.filter(function(item){
  92. return item.auth_ident==="APP_auth"
  93. })
  94. if(isAPP.length>0){
  95. this.$storage.setJson("authList",res.returnData)
  96. uni.switchTab({
  97. url: "/pages/index/index"
  98. });
  99. }
  100. else{
  101. this.$storage.remove('users');
  102. uni.showToast({
  103. title: '该账户没有APP登录权限',
  104. icon: 'none',
  105. duration: 5000
  106. });
  107. }
  108. }
  109. })
  110. }
  111. }
  112. }
  113. </script>
  114. <style scoped>
  115. .content {
  116. background: #377EB4;
  117. width: 100vw;
  118. height: 100vh;
  119. background: url('../../static/bg.png') no-repeat;
  120. background-size: 100% 100%;
  121. }
  122. .avatorWrapper{
  123. height: 15vh;
  124. width: 100vw;
  125. display: flex;
  126. justify-content: center;
  127. align-items: flex-end;
  128. }
  129. .avator{
  130. width: 200upx;
  131. height: 200upx;
  132. overflow: hidden;
  133. }
  134. .avator .img{
  135. width: 100%
  136. }
  137. .name{
  138. /* padding: 0 90upx 50upx 90upx; */
  139. padding-left: 90upx;
  140. color: rgb(255, 255, 255);
  141. font-family: Noto Sans SC;
  142. font-size: 24px;
  143. font-weight: 700;
  144. }
  145. .form{
  146. padding: 0 100upx;
  147. margin-top: .625rem;
  148. }
  149. .inputWrapper{
  150. width: 100%;
  151. height: 80upx;
  152. background: rgba(0, 0, 0, 0);
  153. box-sizing: border-box;
  154. /* padding: 0 20px; */
  155. margin-top: 25px;
  156. border-bottom: 1px solid rgb(223, 223, 223);
  157. display: flex;
  158. align-items: center;
  159. }
  160. .log{
  161. width: .875rem;
  162. height: .875rem;
  163. background: url('../../static/login.png') no-repeat;
  164. background-size: 100% 100%;
  165. margin-right: .75rem;
  166. }
  167. .pass{
  168. width: .875rem;
  169. height: .875rem;
  170. background: url('../../static/mima.png') no-repeat;
  171. background-size: 100% 100%;
  172. margin-right: .75rem;
  173. }
  174. .inputWrapper .input{
  175. width: 100%;
  176. height: 100%;
  177. /* text-align: center; */
  178. color: rgb(223, 223, 223);
  179. font-family: Noto Sans SC;
  180. font-size: .8125rem;
  181. font-weight: 500;
  182. }
  183. .loginBtn{
  184. width: 16.8rem;
  185. /* padding: 0 23px 0 23px; */
  186. height: 2.5rem;
  187. background: linear-gradient(179.11deg, rgba(51,161,165,1.00) 11.422%,rgba(59,111,142,1.00) 118.849%,rgba(59,111,142,1.00) 118.849%,rgba(59,111,142,1.00) 118.849%);
  188. border-radius: 2px;
  189. margin-top: 50px;
  190. display: flex;
  191. justify-content: center;
  192. align-items: center;
  193. color: rgb(223, 223, 223);
  194. font-family: Noto Sans SC;
  195. font-size: 15px;
  196. font-weight: 700;
  197. }
  198. .loginBtn .btnValue{
  199. color: white;
  200. }
  201. .forgotBtn{
  202. text-align: center;
  203. color: #EAF6F9;
  204. font-size: 15px;
  205. margin-top: 20px;
  206. }
  207. </style>