index.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. <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"/>
  11. </view>
  12. <view class="inputWrapper">
  13. <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"/>
  14. </view>
  15. </view>
  16. <button form-type="submit" class="loginBtn">登录</button>
  17. </form>
  18. </view>
  19. </template>
  20. <script>
  21. export default {
  22. data() {
  23. return {
  24. title: 'Hello',
  25. yonghuming:"",
  26. mima:"",
  27. }
  28. },
  29. onLoad() {
  30. },
  31. methods: {
  32. /**发布提交 */
  33. formSubmit(e) {
  34. var that = this;
  35. var yonghuming1= e.detail.value.yonghuming;
  36. var mima1= e.detail.value.mima;
  37. uni.request({
  38. url:'https://换成你自己的域名接口',
  39. header: {
  40. 'content-type': 'application/x-www-form-urlencoded'
  41. },
  42. method: 'POST',
  43. data: {
  44. yonghuming:yonghuming1,
  45. mima:mima1,
  46. },
  47. success: (res) => {
  48. if(res.data=="5"){
  49. wx.showToast({
  50. title: '用户名或密码错误',
  51. icon: 'none',
  52. duration: 500
  53. });
  54. }
  55. else{
  56. uni.navigateTo({
  57. url:"/pages/index1/index1",
  58. })
  59. }
  60. }
  61. })
  62. }
  63. }
  64. }
  65. </script>
  66. <style>
  67. .content {
  68. background: #377EB4;
  69. width: 100vw;
  70. height: 100vh;
  71. background: url('../../static/bg.png') no-repeat;
  72. background-size: 100% 100%;
  73. }
  74. .avatorWrapper{
  75. height: 20vh;
  76. width: 100vw;
  77. display: flex;
  78. justify-content: center;
  79. align-items: flex-end;
  80. }
  81. .avator{
  82. width: 200upx;
  83. height: 200upx;
  84. overflow: hidden;
  85. }
  86. .avator .img{
  87. width: 100%
  88. }
  89. .name{
  90. padding: 0 100upx;
  91. color: rgb(255, 255, 255);
  92. font-family: Noto Sans SC;
  93. font-size: 34px;
  94. font-weight: 700;
  95. }
  96. .form{
  97. padding: 0 100upx;
  98. margin-top: 80px;
  99. }
  100. .inputWrapper{
  101. width: 100%;
  102. height: 80upx;
  103. background: rgba(0, 0, 0, 0);
  104. box-sizing: border-box;
  105. padding: 0 20px;
  106. margin-top: 25px;
  107. border-bottom: 1px solid rgb(223, 223, 223);
  108. }
  109. .inputWrapper .input{
  110. width: 100%;
  111. height: 100%;
  112. text-align: center;
  113. color: rgb(223, 223, 223);
  114. font-family: Noto Sans SC;
  115. font-size: .8125rem;
  116. font-weight: 500;
  117. }
  118. .loginBtn{
  119. width: 18.75rem;
  120. height: 2.5rem;
  121. background: linear-gradient(177.56deg, rgba(54.04,157.79,205.96,1) -33.78%,rgba(59.83,102.58,194.93,1) 173%);
  122. border-radius: 2px;
  123. margin-top: 50px;
  124. display: flex;
  125. justify-content: center;
  126. align-items: center;
  127. color: rgb(223, 223, 223);
  128. font-family: Noto Sans SC;
  129. font-size: 15px;
  130. font-weight: 700;
  131. }
  132. .loginBtn .btnValue{
  133. color: white;
  134. }
  135. .forgotBtn{
  136. text-align: center;
  137. color: #EAF6F9;
  138. font-size: 15px;
  139. margin-top: 20px;
  140. }
  141. </style>