companyLogin.vue 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. <template>
  2. <view class="pages">
  3. <image src="../../static/img/logo.png" class="logo" mode="widthFix"></image>
  4. <view class="title">企业用户登陆</view>
  5. <view class="login-form">
  6. <view class="login-form-item">
  7. <view class="login-form-item-til">账号</view>
  8. <view class="login-form-item-con">
  9. <input type="text" value="" v-model="params.loginStr" placeholder="请输入账号" />
  10. </view>
  11. </view>
  12. <view class="login-form-item">
  13. <view class="login-form-item-til">密码</view>
  14. <view class="login-form-item-con">
  15. <input type="password" value="" v-model="params.pwd" placeholder="请输入密码" />
  16. </view>
  17. </view>
  18. </view>
  19. <view class="wrap">
  20. <view class="full-btn" @click="handleLogin">登录</view>
  21. </view>
  22. <view class="bottom-btn-wrap">
  23. <view class="bottom-btn forgetpass">忘记密码</view>
  24. </view>
  25. </view>
  26. </template>
  27. <script>
  28. import { mapState, mapMutations } from 'vuex';
  29. export default {
  30. data() {
  31. return {
  32. params:{
  33. loginStr:'64676376',
  34. pwd:'123456',
  35. },
  36. rules: {
  37. loginStr: {rule: /^[A-Za-z0-9]+$/,msg: "填写用户名"},
  38. pwd: {rule: /\S/,msg: "填写密码"},
  39. },
  40. }
  41. },
  42. onShow() {
  43. },
  44. onLoad() {
  45. },
  46. computed: mapState(['hasLogin', 'userInfo','hPage']),
  47. methods: {
  48. ...mapMutations(['login', 'logout','upInfo']),
  49. handleLogin(){
  50. console.log('params',this.params);
  51. for (let x in this.params) {
  52. // console.log('x',x)
  53. if(!this.validate(x)) return;
  54. }
  55. this.$api.http.post(this.config.apiBaseurl + '/carbon-h5/wap/customer/customerLogin',this.params,{
  56. // header: {
  57. // Accept:'application/json',
  58. // Authorization: 'Bearer '+ this.token, //注意Bearer后面有一空格
  59. // },
  60. }).then(res => {
  61. console.log('res',res)
  62. const token = {accessToken: res.data.retBody.token};
  63. //保存token
  64. // console.log('this.login',this.login);
  65. this.login(token);
  66. //取得用户信息
  67. this.upInfo();
  68. }).catch(err =>{
  69. console.log('err',err)
  70. });
  71. },
  72. //判断验证是否符合要求
  73. validate(key) {
  74. let bool = true;
  75. if (!this.rules[key].rule.test(this.params[key])) {
  76. //提示信息
  77. uni.showToast({
  78. icon:"none",
  79. title: this.rules[key].msg,
  80. })
  81. //取反
  82. bool = false;
  83. return false;
  84. }
  85. return bool;
  86. },
  87. }
  88. }
  89. </script>
  90. <style scoped>
  91. /* @import url("./index.css"); */
  92. .logo{display: block;margin: 128rpx auto 26rpx;width: 99rpx;height: 99rpx;}
  93. .title{margin-bottom: 80rpx;font-size: 36rpx;color: #333;line-height: 50rpx;font-weight: bold;text-align: center;}
  94. .login-form{margin-bottom: 40rpx;border-top: 1px solid #eee;border-bottom: 1px solid #eee;}
  95. .login-form-item{display: flex;position: relative;height: 96rpx;align-items: center;border-bottom: 1px solid #eee;}
  96. .login-form-item::before{content: '';width: 24rpx;height: 1px;background-color: #fff;position: absolute;left: 0;bottom: -1px;}
  97. .login-form .login-form-item:last-of-type{border-bottom: 0;}
  98. .login-form .login-form-item:last-of-type::before{height: 0;}
  99. .login-form-item-til{margin-left: 24rpx;padding-left: 16rpx;}
  100. .login-form-item-con{padding-left: 100rpx;}
  101. .forgetpass{font-size: 30rpx;color: #999;}
  102. </style>