123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278 |
- <template>
- <view class="login">
- <view class="title">GoEasy IM</view>
- <view class="user-selector">
- <view class="selected-area" @click="switchSelectorVisible">
- <view class="selected-content" v-if="userSelector.selectedUser">
- <image :src="userSelector.selectedUser.avatar"></image>
- <text>{{ userSelector.selectedUser.name }}</text>
- </view>
- <view class="selected-content" v-else>
- <text>请选择用户</text>
- </view>
- <image class="selected-icon rotate" src="/static/images/up.png"></image>
- </view>
- <view v-if="userSelector.visible" class="dialog-area">
- <view class="dialog-list">
- <view class="dialog-list-item" v-for="(user, index) in userSelector.users" :key="index" @click="selectUser(user)">
- <image class="dialog-list-item-avatar" :src="user.avatar"></image>
- <text>{{ user.name }}</text>
- </view>
- </view>
- </view>
- </view>
- <view class="password-box">
- <input v-model="form.phone" class="password-input" placeholder="请输入账号" type="text">
-
- </view>
- <view class="password-box">
- <input v-model="form.password" class="password-input" placeholder="请输入密码" :password="!password.visible" type="text">
- <image class="password-image" @click="switchPasswordVisible" src="/static/images/visible.png"></image>
- </view>
- <view v-show="errorVisible" class="alert-box">
- <image src="/static/images/login-alert-icon.png"></image>
- <span>请输入正确的用户名和密码</span>
- </view>
- <button class="login-btn" @click="login">登录</button>
- <view class="version">{{ versionName }}</view>
- </view>
- </template>
- <script>
- import restApi from '../lib/restapi';
- const {versionName} = require('../manifest.json');
- export default {
- name: 'Login',
- data() {
- return {
- versionName: versionName,
- userSelector: {
- users: [],
- visible: false,
- selectedUser: null
- },
- username: '',
- password: {
- visible: false,
- value: '123'
- },
- form:{
- password:'',
- phone:'',
- },
- errorVisible: false
- }
- },
- onLoad() {
- this.userSelector.users = restApi.findUsers();
- },
- methods: {
- switchSelectorVisible() {
- this.userSelector.visible = !this.userSelector.visible;
- },
- selectUser(user) {
- this.userSelector.visible = false;
- this.userSelector.selectedUser = user;
- this.username = user.name;
- },
- switchPasswordVisible() {
- this.password.visible = !this.password.visible;
- },
- login() {
- var that=this;
- var obj={
- name:'',
- id:'',
- email:'',
- avatar:'',
- password:'',
- phone:'',
- }
- this.$http('imSys/imLoginTmp', {
- userCode:this.form.phone,
- userPwd:this.form.password,
-
- },'POST').then(res => {
- console.log(res)
- obj.name=res.data.supplierName
- obj.id=res.data.userId
- obj.password=this.form.password
- obj.phone=this.form.phone
- uni.setStorageSync('currentUser', obj);
- uni.setStorageSync('imAccessToken', res.data.imAccessToken);
- uni.switchTab({url: './conversations'});
- })
- /* if (this.username.trim() !== '' && this.password.value.trim() !== '') {
- let user = restApi.findUser(this.username, this.password.value);
- if (user) {
- uni.setStorageSync('currentUser', user);
- uni.switchTab({url: './conversations'});
- return
- }
- } */
- // this.errorVisible = true;
- }
- }
- }
- </script>
- <style>
- .login {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .title {
- padding-top: 160rpx;
- height: 100rpx;
- font-size: 60rpx;
- text-align: center;
- font-style: normal;
- font-weight: normal;
- color: #d02129;
- margin-bottom: 80rpx;
- }
- .alert-box {
- width: 640rpx;
- height: 60rpx;
- margin-bottom: 60rpx;
- padding: 0rpx 20rpx;
- font-size: 34rpx;
- line-height: 48rpx;
- display: flex;
- align-content: center;
- overflow: hidden;
- color: #EE593C;
- align-items: center;
- }
- .alert-box image {
- width: 30rpx;
- height: 30rpx;
- margin-right: 20rpx;
- }
- .login-btn {
- width: 680rpx;
- height: 100rpx;
- line-height: 100rpx;
- font-size: 36rpx;
- text-align: center;
- color: #ffffff;
- background: #d02129;
- outline: none;
- border: 0;
- }
- .password-box {
- position: relative;
- }
- .password-input {
- width: 620rpx;
- padding: 28rpx;
- border: 1px solid #cccccc;
- margin-bottom: 40rpx;
- font-size: 34rpx;
- }
- .password-image {
- width: 50rpx;
- height: 50rpx;
- position: absolute;
- top: 28rpx;
- right: 28rpx;
- }
- .user-selector {
- width: 700rpx;
- margin-bottom: 40rpx;
- }
- .selected-area {
- display: flex;
- flex-direction: row;
- align-items: center;
- width: 620rpx;
- height: 100rpx;
- border: 1px solid #cccccc;
- margin: 0 auto;
- padding: 0 28rpx;
- }
- .selected-content {
- display: flex;
- align-items: center;
- flex-grow: 1;
- }
- .selected-content image {
- width: 80rpx;
- height: 80rpx;
- margin-right: 30rpx;
- border-radius: 50%;
- }
- .selected-icon {
- width: 40rpx;
- height: 40rpx;
- margin-right: 10rpx;
- }
- .selected-icon.rotate {
- transform-origin: center;
- transform: rotate(180deg);
- }
- .dialog-area {
- position: absolute;
- width: 100%;
- background: #E5E5E5;
- }
- .dialog-list {
- position: absolute;
- left: 10rpx;
- top: 8rpx;
- width: 674rpx;
- border: 1px solid #cccccc;
- background: #ffffff;
- box-shadow: 8rpx 8rpx 10rpx #e1e1e1;
- padding: 30rpx 0;
- z-index: 99;
- }
- .dialog-list-item {
- width: 100%;
- margin: 25rpx 0;
- padding-left: 40rpx;
- display: flex;
- align-items: center;
- }
- .dialog-list-item-avatar {
- width: 80rpx;
- height: 80rpx;
- margin-right: 30rpx;
- border-radius: 50%;
- }
- .version {
- color: #ffffff;
- font-size: 40rpx;
- margin-top: 60rpx;
- }
- view {
- user-select: text;
- }
- </style>
|