保安服务企业管理项目备份
guoshilong
2023-12-29 69370e2873a525c53e8d1d8655c3172624aa8733
智能分析跳转逻辑修改
1 files modified
280 ■■■■ changed files
src/page/login/userlogin.vue 280 ●●●● patch | view | raw | blame | history
src/page/login/userlogin.vue
@@ -1,155 +1,163 @@
<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-form-item v-if="false" prop="tenantId">
            <el-input size="small" @keyup.enter.native="handleLogin" v-model="loginForm.tenantId" auto-complete="off"
  <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-form-item v-if="false" 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"
        <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"
        <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 type="primary" size="small" @click.native.prevent="handleLogin" class="login-submit">{{
                $t("login.submit") }}
            </el-button>
        </el-form-item>
    </el-form>
        <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 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 {mapGetters} from "vuex"
import {info} from "@/api/system/tenant"
import {getCaptcha} from "@/api/user"
import {getTopUrl} from "@/util/util"
export default {
    name: "userlogin",
    data () {
        return {
            tenantMode: this.website.tenantMode,
            loginForm: {
                //保安单位ID
                tenantId: "000000",
                //用户名
                username: "",
                //密码
                password: "",
                //账号类型
                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",
        }
  name: "userlogin",
  data() {
    return {
      tenantMode: this.website.tenantMode,
      loginForm: {
        //保安单位ID
        tenantId: "000000",
        //用户名
        username: "",
        //密码
        password: "",
        //账号类型
        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", "userInfo"]),
  },
  props: [],
  methods: {
    refreshCode() {
      getCaptcha().then((res) => {
        const data = res.data
        this.loginForm.key = data.key
        this.loginForm.image = data.image
      })
    },
    created () {
        this.getTenant()
        this.refreshCode()
    showPassword() {
      this.passwordType === ""
        ? (this.passwordType = "password")
        : (this.passwordType = "")
    },
    mounted () { },
    computed: {
        ...mapGetters(["tagWel", "userInfo"]),
    },
    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 = "")
        },
        handleLogin () {
            this.$refs.loginForm.validate((valid) => {
                if (valid) {
                    const loading = this.$loading({
                        lock: true,
                        text: "登录中,请稍后。。。",
                        spinner: "el-icon-loading",
                    })
                    this.$store
                        .dispatch("LoginByUsername", this.loginForm)
                        .then(() => {
    handleLogin() {
      this.$refs.loginForm.validate((valid) => {
        if (valid) {
          const loading = this.$loading({
            lock: true,
            text: "登录中,请稍后。。。",
            spinner: "el-icon-loading",
          })
          this.$store
            .dispatch("LoginByUsername", this.loginForm)
            .then(() => {
              console.log("userInfo",this.userInfo)
              this.$store.dispatch("GetMenu", [this.userInfo, ""]).then((data) => {
                //登录跳转首页改完跳转保安单位情况智能分析
                let path = this.tagWel.value
                            console.log(this.userInfo)
                            // let path = this.tagWel.value登录跳转首页改完跳转保安单位情况智能分析
                            let path = '/securityAnalysis'
                            if (this.userInfo.role_name.indexOf("考勤管理员") > -1) {
                                path = "check/record"
                            }
                            this.$router.push({ path: path })
                            loading.close()
                        })
                        .catch(() => {
                            loading.close()
                            this.refreshCode()
                        })
                let menu = data.filter(e => e.path == "/securityAnalysis/index")
                if (menu.length > 0) {
                  path = '/securityAnalysis'
                }
            })
        },
        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})`
                if (this.userInfo.role_name.indexOf("考勤管理员") > -1) {
                  path = "check/record"
                }
                this.$router.push({path: path})
                loading.close()
              });
            })
        },
            .catch(() => {
              loading.close()
              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>