fix:禅道232
This commit is contained in:
parent
fd5254aee3
commit
2d4ea7fb1e
|
|
@ -19,7 +19,8 @@
|
|||
<!-- <el-link @click="visitors">{{$t('login.fangke')}}</el-link> -->
|
||||
</el-col>
|
||||
<el-col :span="12" class="login-forgot" >
|
||||
<router-link to="/reset_password">{{ $t("login.forgetPassword") }}?</router-link>
|
||||
<span v-if="project_code=='bxerp'||project_code=='tcerp'"></span>
|
||||
<router-link to="/reset_password" v-else>{{ $t("login.forgetPassword") }}?</router-link>
|
||||
</el-col>
|
||||
</el-form-item>
|
||||
<el-form-item>
|
||||
|
|
@ -64,6 +65,7 @@ export default {
|
|||
return {
|
||||
redirect: undefined,
|
||||
userType: "admin",
|
||||
project_code:"",
|
||||
visitorsdialog: false,
|
||||
visitorform: {},
|
||||
form: {
|
||||
|
|
@ -105,7 +107,10 @@ export default {
|
|||
immediate: true,
|
||||
},
|
||||
},
|
||||
mounted() { },
|
||||
mounted() {
|
||||
this.project_code = this.$TOOL.data.get("BASE_INFO").base.base_code;
|
||||
console.log('this.project_code',this.project_code);
|
||||
},
|
||||
methods: {
|
||||
async login() {
|
||||
let that = this;
|
||||
|
|
|
|||
Loading…
Reference in New Issue