index.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. <template>
  2. <view class="content">
  3. <!-- <img src="../../static/bei.png" alt="" class="tubei"> -->
  4. <form @submit="formSubmit">
  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="请输入登录账号" @blur="spggBlur"/>
  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="请输入密码" @blur="spggBlur1"/>
  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.redirectTo({
  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>
  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: 20vh;
  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 100upx;
  98. color: rgb(255, 255, 255);
  99. font-family: Noto Sans SC;
  100. font-size: 34px;
  101. font-weight: 700;
  102. }
  103. .form{
  104. padding: 0 100upx;
  105. margin-top: 80px;
  106. }
  107. .inputWrapper{
  108. width: 100%;
  109. height: 80upx;
  110. background: rgba(0, 0, 0, 0);
  111. box-sizing: border-box;
  112. /* padding: 0 20px; */
  113. margin-top: 25px;
  114. border-bottom: 1px solid rgb(223, 223, 223);
  115. display: flex;
  116. align-items: center;
  117. }
  118. .log{
  119. width: .875rem;
  120. height: .875rem;
  121. background: url('../../static/login.png') no-repeat;
  122. background-size: 100% 100%;
  123. margin-right: .75rem;
  124. }
  125. .pass{
  126. width: .875rem;
  127. height: .875rem;
  128. background: url('../../static/mima.png') no-repeat;
  129. background-size: 100% 100%;
  130. margin-right: .75rem;
  131. }
  132. .inputWrapper .input{
  133. width: 100%;
  134. height: 100%;
  135. text-align: center;
  136. color: rgb(223, 223, 223);
  137. font-family: Noto Sans SC;
  138. font-size: .8125rem;
  139. font-weight: 500;
  140. }
  141. .loginBtn{
  142. width: 18.75rem;
  143. height: 2.5rem;
  144. background: linear-gradient(177.56deg, rgba(54.04,157.79,205.96,1) -33.78%,rgba(59.83,102.58,194.93,1) 173%);
  145. border-radius: 2px;
  146. margin-top: 50px;
  147. display: flex;
  148. justify-content: center;
  149. align-items: center;
  150. color: rgb(223, 223, 223);
  151. font-family: Noto Sans SC;
  152. font-size: 15px;
  153. font-weight: 700;
  154. }
  155. .loginBtn .btnValue{
  156. color: white;
  157. }
  158. .forgotBtn{
  159. text-align: center;
  160. color: #EAF6F9;
  161. font-size: 15px;
  162. margin-top: 20px;
  163. }
  164. </style>