login.vue 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. <template>
  2. <div class="page">
  3. <div class="main">
  4. <div class="tit">用户登录</div>
  5. <div class="inp-box">
  6. <input
  7. type="text"
  8. name="userName"
  9. v-model="userName"
  10. placeholder="请输入账号"
  11. />
  12. </div>
  13. <div class="inp-box">
  14. <input
  15. type="password"
  16. name="password"
  17. v-model="password"
  18. placeholder="请输入密码"
  19. />
  20. </div>
  21. <button class="btn" @click="submit">确定</button>
  22. </div>
  23. </div>
  24. </template>
  25. <script>
  26. import MyImage from "../../components/image/index";
  27. export default {
  28. name: "",
  29. components: { MyImage },
  30. // 数据
  31. data() {
  32. return {
  33. userName: "",
  34. password: "",
  35. };
  36. },
  37. onLoad() {
  38. uni.hideLoading();
  39. },
  40. onShow() {},
  41. // 函数
  42. methods: {
  43. submit() {
  44. if (!this.userName) {
  45. this.fn.showToast(`请输入账号`);
  46. return;
  47. }
  48. if (!this.password) {
  49. this.fn.showToast(`请输入密码`);
  50. return;
  51. }
  52. uni.showLoading({
  53. title: "提交中",
  54. });
  55. // uni.login({
  56. // provider: "weixin",
  57. // fail:err=>{
  58. // console.log('err',err)
  59. // },
  60. // success: (result) => {
  61. // console.log('ok',reset)
  62. this.api
  63. .post("/Login/LoginByAccount", {
  64. userName: this.userName,
  65. password: this.password,
  66. // code: result.code,
  67. })
  68. .then((res) => {
  69. uni.hideLoading();
  70. console.log(res);
  71. if (res.success) {
  72. // 判断权限
  73. if (res.data.authStatus === 0) {
  74. // 未注册
  75. this.router.replace({
  76. path: "/pages/manage/mina/register",
  77. });
  78. } else if (res.data.authStatus === 90) {
  79. // 等待注册
  80. this.router.replace({
  81. path: "/pages/manage/mina/query",
  82. });
  83. } else {
  84. // 正常用户
  85. this.$store.commit("user/login", res.data);
  86. this.$store.commit("common/update", {
  87. curShop: {},
  88. });
  89. this.router.replace({
  90. isReLaunch: true,
  91. path: "/pages/index/index",
  92. });
  93. this.fn.roleHandle();
  94. }
  95. } else {
  96. this.fn.showModal({
  97. title: "提交失败",
  98. content: res.message,
  99. showCancel: false,
  100. });
  101. }
  102. });
  103. // },
  104. // });
  105. },
  106. },
  107. // 数据计算
  108. computed: {},
  109. // 数据监听
  110. watch: {},
  111. };
  112. </script>
  113. <style lang="scss" scoped>
  114. .page {
  115. height: 100%;
  116. background-color: #fff;
  117. }
  118. .main {
  119. padding-top: px(120);
  120. padding-left: px(40);
  121. padding-right: px(40);
  122. }
  123. .tit {
  124. font-size: px(50);
  125. padding-bottom: px(100);
  126. text-align: center;
  127. padding-bottom: px(60);
  128. }
  129. .inp-box {
  130. display: flex;
  131. justify-content: space-between;
  132. align-items: center;
  133. border-bottom: 1px solid #c3c1c2;
  134. padding: px(30) 0;
  135. margin-bottom: px(30);
  136. }
  137. .inp-box span {
  138. font-size: px(32);
  139. color: #e92e25;
  140. border-radius: px(15);
  141. border: 1px solid #e92e25;
  142. width: px(230);
  143. height: px(80);
  144. text-align: center;
  145. line-height: px(80);
  146. flex-shrink: 0;
  147. margin-left: px(30);
  148. }
  149. .inp-box input {
  150. width: 100%;
  151. }
  152. .inp-box .dis {
  153. color: #999;
  154. border-color: #999;
  155. pointer-events: none;
  156. }
  157. .btn {
  158. margin-top: px(120);
  159. color: #fff;
  160. background-color: #e92e25;
  161. font-size: px(44);
  162. }
  163. </style>