index.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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="yonghuming" type="text" value="" 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="mima" type="password" value="" 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: 'Hello',
  27. yonghuming:"",
  28. mima:"",
  29. }
  30. },
  31. onLoad() {
  32. },
  33. methods: {
  34. login () {
  35. uni.switchTab({
  36. url: "/pages/index/index"
  37. })
  38. },
  39. /**发布提交 */
  40. formSubmit(e) {
  41. var that = this;
  42. var yonghuming1= e.detail.value.yonghuming;
  43. var mima1= e.detail.value.mima;
  44. uni.request({
  45. url:'https://换成你自己的域名接口',
  46. header: {
  47. 'content-type': 'application/x-www-form-urlencoded'
  48. },
  49. method: 'POST',
  50. data: {
  51. yonghuming:yonghuming1,
  52. mima:mima1,
  53. },
  54. success: (res) => {
  55. if(res.data=="5"){
  56. wx.showToast({
  57. title: '用户名或密码错误',
  58. icon: 'none',
  59. duration: 500
  60. });
  61. }
  62. else{
  63. uni.navigateTo({
  64. url:"/pages/index1/index1",
  65. })
  66. }
  67. }
  68. })
  69. }
  70. }
  71. }
  72. </script>
  73. <style scoped>
  74. .content {
  75. background: #377EB4;
  76. width: 100vw;
  77. height: 100vh;
  78. background: url('../../static/bg.png') no-repeat;
  79. background-size: 100% 100%;
  80. }
  81. .avatorWrapper{
  82. height: 15vh;
  83. width: 100vw;
  84. display: flex;
  85. justify-content: center;
  86. align-items: flex-end;
  87. }
  88. .avator{
  89. width: 200upx;
  90. height: 200upx;
  91. overflow: hidden;
  92. }
  93. .avator .img{
  94. width: 100%
  95. }
  96. .name{
  97. /* padding: 0 90upx 50upx 90upx; */
  98. padding-left: 90upx;
  99. color: rgb(255, 255, 255);
  100. font-family: Noto Sans SC;
  101. font-size: 24px;
  102. font-weight: 700;
  103. }
  104. .form{
  105. padding: 0 100upx;
  106. margin-top: .625rem;
  107. }
  108. .inputWrapper{
  109. width: 100%;
  110. height: 80upx;
  111. background: rgba(0, 0, 0, 0);
  112. box-sizing: border-box;
  113. /* padding: 0 20px; */
  114. margin-top: 25px;
  115. border-bottom: 1px solid rgb(223, 223, 223);
  116. display: flex;
  117. align-items: center;
  118. }
  119. .log{
  120. width: .875rem;
  121. height: .875rem;
  122. background: url('../../static/login.png') no-repeat;
  123. background-size: 100% 100%;
  124. margin-right: .75rem;
  125. }
  126. .pass{
  127. width: .875rem;
  128. height: .875rem;
  129. background: url('../../static/mima.png') no-repeat;
  130. background-size: 100% 100%;
  131. margin-right: .75rem;
  132. }
  133. .inputWrapper .input{
  134. width: 100%;
  135. height: 100%;
  136. /* text-align: center; */
  137. color: rgb(223, 223, 223);
  138. font-family: Noto Sans SC;
  139. font-size: .8125rem;
  140. font-weight: 500;
  141. }
  142. .loginBtn{
  143. width: 16.8rem;
  144. /* padding: 0 23px 0 23px; */
  145. height: 2.5rem;
  146. 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%);
  147. border-radius: 2px;
  148. margin-top: 50px;
  149. display: flex;
  150. justify-content: center;
  151. align-items: center;
  152. color: rgb(223, 223, 223);
  153. font-family: Noto Sans SC;
  154. font-size: 15px;
  155. font-weight: 700;
  156. }
  157. .loginBtn .btnValue{
  158. color: white;
  159. }
  160. .forgotBtn{
  161. text-align: center;
  162. color: #EAF6F9;
  163. font-size: 15px;
  164. margin-top: 20px;
  165. }
  166. </style>