| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <template>
- <el-form class="login-form"
- status-icon
- :rules="loginRules"
- ref="loginForm"
- :model="loginForm"
- label-width="0">
- <el-form-item v-if="tenantMode" prop="tenantId">
- <el-input size="small"
- @keyup.enter.native="handleLogin"
- v-model="loginForm.tenantId"
- auto-complete="off"
- :placeholder="$t('login.tenantId')">
- <i slot="prefix" class="icon-quanxian"/>
- </el-input>
- </el-form-item>
- <el-form-item prop="username">
- <el-input size="small"
- @keyup.enter.native="handleLogin"
- v-model="loginForm.username"
- auto-complete="off"
- :placeholder="$t('login.username')">
- <i slot="prefix" class="icon-yonghu"/>
- </el-input>
- </el-form-item>
- <el-form-item prop="password">
- <el-input size="small"
- @keyup.enter.native="handleLogin"
- :type="passwordType"
- v-model="loginForm.password"
- auto-complete="off"
- :placeholder="$t('login.password')">
- <i class="el-icon-view el-input__icon" slot="suffix" @click="showPassword"/>
- <i slot="prefix" class="icon-mima"/>
- </el-input>
- </el-form-item>
- <el-form-item v-if="this.website.captchaMode" prop="code">
- <el-row :span="24">
- <el-col :span="16">
- <el-input size="small"
- @keyup.enter.native="handleLogin"
- v-model="loginForm.code"
- auto-complete="off"
- :placeholder="$t('login.code')">
- <i slot="prefix" class="icon-yanzhengma"/>
- </el-input>
- </el-col>
- <el-col :span="8">
- <div class="login-code">
- <img :src="loginForm.image" class="login-code-img" @click="refreshCode"
- />
- </div>
- </el-col>
- </el-row>
- </el-form-item>
- <el-form-item>
- <el-button id="submit" type="primary"
- size="small"
- @click.native.prevent="handleLogin"
- class="login-submit">{{$t('login.submit')}}
- </el-button>
- </el-form-item>
- </el-form>
- </template>
- <script>
- import {mapGetters} from "vuex";
- import {info} from "@/api/system/tenant";
- import {getCaptcha} from "@/api/user";
- import {getTopUrl} from "@/util/util";
- import {getDetail, getList} from "../../api/grid/grid";
- import {Message} from "element-ui";
- export default {
- name: "userlogin",
- data() {
- return {
- tenantMode: this.website.tenantMode,
- loginForm: {
- //租户ID
- tenantId: "000000",
- //用户名
- username: "admin",
- //密码
- password: "admin",
- //账号类型
- type: "account",
- //验证码的值
- code: "",
- //验证码的索引
- key: "",
- //预加载白色背景
- image: "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7",
- },
- loginRules: {
- tenantId: [
- {required: false, message: "请输入租户ID", trigger: "blur"}
- ],
- username: [
- {required: true, message: "请输入用户名", trigger: "blur"}
- ],
- password: [
- {required: true, message: "请输入密码", trigger: "blur"},
- {min: 1, message: "密码长度最少为6位", trigger: "blur"}
- ]
- },
- passwordType: "password"
- };
- },
- created() {
- this.getTenant();
- this.refreshCode();
- },
- mounted() {
- },
- computed: {
- ...mapGetters(["tagWel"])
- },
- props: [],
- methods: {
- refreshCode() {
- getCaptcha().then(res => {
- const data = res.data;
- this.loginForm.key = data.key;
- this.loginForm.image = data.image;
- })
- },
- showPassword() {
- this.passwordType === ""
- ? (this.passwordType = "password")
- : (this.passwordType = "");
- },
- async initMenu(){
- let menu = await this.$store.dispatch("GetMenu");
- this.$store.commit("SET_STATIC_ALL_MENU",menu);
- if (menu.length !== 0) {
- this.$router.$avueRouter.formatRoutes(menu,true);
- }
- },
- handleLogin() {
- this.$animateCss('#submit','animate__rotateIn')
- this.$refs.loginForm.validate(valid => {
- if (valid) {
- this.$store.dispatch("LoginByUsername", this.loginForm).then(() => {
- getList(1,100,{
- userCode: this.$store.state.user.userInfo['user_id']
- }).then( (res)=>{
- if(res.data.data.records.length==0){
- this.$store.dispatch("logOut");
- Message({
- message: "该账号暂未绑定相关网格区域,请绑定后登录!",
- type: 'error'
- })
- }else{
- this.$store.commit('SET_TAG_INDEX',0);
- this.$router.push({path: "/"});
- this.initMenu();
- }
- });
- }).catch((e) => {
- loading.close();
- Message({
- message: e,
- type: 'error'
- })
- this.refreshCode();
- });
- }
- });
- },
- getTenant() {
- let domain = getTopUrl();
- // 临时指定域名,方便测试
- //domain = "https://bladex.vip";
- info(domain).then(res => {
- const data = res.data;
- if (data.success && data.data.tenantId) {
- this.tenantMode = false;
- this.loginForm.tenantId = data.data.tenantId;
- this.$parent.$refs.login.style.backgroundImage = `url(${data.data.backgroundUrl})`;
- }
- })
- }
- }
- };
- </script>
- <style>
- </style>
|