WXL
2 天以前 66b105cc45d8c3eec33954fffe0cd63a29774a13
测试完成
已修改1个文件
88 ■■■■■ 文件已修改
src/views/login.vue 88 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/login.vue
@@ -36,37 +36,7 @@
          />
        </el-input>
      </el-form-item>
      <!-- 丽===================水 -->
      <!-- <el-form-item prop="orgid">
        <el-select style="width: 100%;" v-model="loginForm.orgid"  placeholder="请选择院区">
          <el-option
            v-for="item in options"
            :key="item.value"
            :label="item.label"
            :value="item.value"
          >
          </el-option>
          <i slot="prefix" class="el-icon-mobile"></i>
        </el-select>
      </el-form-item> -->
      <!-- <el-form-item prop="code" v-if="captchaEnabled">
        <el-input
          v-model="loginForm.code"
          auto-complete="off"
          placeholder="验证码"
          style="width: 63%"
          @keyup.enter.native="handleLogin"
        >
          <svg-icon
            slot="prefix"
            icon-class="validCode"
            class="el-input__icon input-icon"
          />
        </el-input>
        <div class="login-code">
          <img :src="codeUrl" @click="getCode" class="login-code-img" />
        </div>
      </el-form-item> -->
      <el-checkbox
        v-model="loginForm.rememberMe"
        style="margin: 0px 0px 25px 0px"
@@ -90,11 +60,15 @@
        </div>
      </el-form-item>
    </el-form>
    <!--  底部  -->
    <!-- <div class="el-login-footer">
      <span style="color: #568FBD; font-size: 25px;">Copyright © 2018-2022 ruoyi.vip All Rights Reserved.</span>
    </div> -->
  </div>
  <!-- <div class="block">
    <div class="smerry">
      <el-image >
        <div slot="error" class="image-slot">无权限访问</div>
      </el-image>
    </div>
  </div> -->
</template>
<script>
@@ -112,12 +86,12 @@
        password: "",
        rememberMe: false,
        code: "",
        orgid:'1',
        orgid: "1",
      },
      options: [
        { value: "1", label: "景宁畲族自治县人民医院" },
        { value: "2", label: "丽水市中医院" },
       ],
      ],
      loginRules: {
        username: [
          { required: true, trigger: "blur", message: "请输入您的账号" },
@@ -190,19 +164,19 @@
            Cookies.remove("password");
            Cookies.remove("rememberMe");
          }
          this.loginForm.orgid = '1',
          this.$store
            .dispatch("Login", this.loginForm)
            .then(() => {
              // this.$router.push({ path: this.redirect || "/" }).catch(() => {});
              this.$router.push({ path:"/patient/patient" }).catch(() => {});
            })
            .catch(() => {
              this.loading = false;
              if (this.captchaEnabled) {
                this.getCode();
              }
            });
          (this.loginForm.orgid = "1"),
            this.$store
              .dispatch("Login", this.loginForm)
              .then(() => {
                // this.$router.push({ path: this.redirect || "/" }).catch(() => {});
                // this.$router.push({ path:"/patient/patient" }).catch(() => {});
              })
              .catch(() => {
                this.loading = false;
                if (this.captchaEnabled) {
                  this.getCode();
                }
              });
        }
      });
    },
@@ -283,4 +257,18 @@
.login-code-img {
  height: 38px;
}
.smerry {
  text-align: center;
  align-items: center;
  .el-image {
    width: 95vw;
    height: 94vh;
    line-height: 94vh;
    font-size: 50px;
    justify-content: center;
    align-items: center;
    color: #c0c4cc;
    vertical-align: middle;
  }
}
</style>