4 Commits
test ... dev

Author SHA1 Message Date
tianyongbao
1fdbc95b49 fix: 监测曲线功能优化。 2026-01-11 16:22:55 +08:00
tianyongbao
e0a52e4430 fix:功能进一步优化-1。 2026-01-10 02:01:09 +08:00
tianyongbao
48981e0cca fix:功能进一步优化。 2026-01-10 01:59:53 +08:00
tianyongbao
6b878e49ff fix: 功能完善。 2026-01-10 01:42:39 +08:00
2 changed files with 10 additions and 12 deletions

View File

@@ -23,8 +23,6 @@ declare module 'vue' {
ElColorPicker: typeof import('element-plus/es')['ElColorPicker']
ElConfigProvider: typeof import('element-plus/es')['ElConfigProvider']
ElDatePicker: typeof import('element-plus/es')['ElDatePicker']
ElDescriptions: typeof import('element-plus/es')['ElDescriptions']
ElDescriptionsItem: typeof import('element-plus/es')['ElDescriptionsItem']
ElDialog: typeof import('element-plus/es')['ElDialog']
ElDivider: typeof import('element-plus/es')['ElDivider']
ElDrawer: typeof import('element-plus/es')['ElDrawer']

View File

@@ -6,10 +6,10 @@
<lang-select />
</div> -->
<el-form-item v-if="tenantEnabled" prop="tenantId">
<!-- <el-select v-model="loginForm.tenantId" filterable :placeholder="proxy.$t('login.selectPlaceholder')" style="width: 100%">-->
<!-- <el-option v-for="item in tenantList" :key="item.tenantId" :label="item.companyName" :value="item.tenantId"></el-option>-->
<!-- <template #prefix><svg-icon icon-class="company" class="el-input__icon input-icon" /></template>-->
<!-- </el-select>-->
<el-select v-model="loginForm.tenantId" filterable :placeholder="proxy.$t('login.selectPlaceholder')" style="width: 100%">
<el-option v-for="item in tenantList" :key="item.tenantId" :label="item.companyName" :value="item.tenantId"></el-option>
<template #prefix><svg-icon icon-class="company" class="el-input__icon input-icon" /></template>
</el-select>
</el-form-item>
<el-form-item prop="username">
<el-input v-model="loginForm.username" type="text" size="large" auto-complete="off" :placeholder="proxy.$t('login.username')">
@@ -87,8 +87,8 @@ const { t } = useI18n();
const loginForm = ref<LoginData>({
tenantId: '111111',
username: 'fishery',
password: 'fishery@123',
username: 'admin',
password: 'admin123',
rememberMe: false,
code: '',
uuid: ''
@@ -216,7 +216,7 @@ const doSocialLogin = (type: string) => {
onMounted(() => {
getCode();
// initTenantList();
initTenantList();
getLoginData();
});
</script>