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'] ElColorPicker: typeof import('element-plus/es')['ElColorPicker']
ElConfigProvider: typeof import('element-plus/es')['ElConfigProvider'] ElConfigProvider: typeof import('element-plus/es')['ElConfigProvider']
ElDatePicker: typeof import('element-plus/es')['ElDatePicker'] 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'] ElDialog: typeof import('element-plus/es')['ElDialog']
ElDivider: typeof import('element-plus/es')['ElDivider'] ElDivider: typeof import('element-plus/es')['ElDivider']
ElDrawer: typeof import('element-plus/es')['ElDrawer'] ElDrawer: typeof import('element-plus/es')['ElDrawer']

View File

@@ -6,10 +6,10 @@
<lang-select /> <lang-select />
</div> --> </div> -->
<el-form-item v-if="tenantEnabled" prop="tenantId"> <el-form-item v-if="tenantEnabled" prop="tenantId">
<!-- <el-select v-model="loginForm.tenantId" filterable :placeholder="proxy.$t('login.selectPlaceholder')" style="width: 100%">--> <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>--> <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>--> <template #prefix><svg-icon icon-class="company" class="el-input__icon input-icon" /></template>
<!-- </el-select>--> </el-select>
</el-form-item> </el-form-item>
<el-form-item prop="username"> <el-form-item prop="username">
<el-input v-model="loginForm.username" type="text" size="large" auto-complete="off" :placeholder="proxy.$t('login.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>({ const loginForm = ref<LoginData>({
tenantId: '111111', tenantId: '111111',
username: 'fishery', username: 'admin',
password: 'fishery@123', password: 'admin123',
rememberMe: false, rememberMe: false,
code: '', code: '',
uuid: '' uuid: ''
@@ -216,7 +216,7 @@ const doSocialLogin = (type: string) => {
onMounted(() => { onMounted(() => {
getCode(); getCode();
// initTenantList(); initTenantList();
getLoginData(); getLoginData();
}); });
</script> </script>
@@ -301,7 +301,7 @@ onMounted(() => {
backdrop-filter: blur(2px); backdrop-filter: blur(2px);
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8); text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
z-index: 2; z-index: 2;
span { span {
padding: 5px 15px; padding: 5px 15px;
border-radius: 15px; border-radius: 15px;
@@ -309,12 +309,12 @@ onMounted(() => {
backdrop-filter: blur(5px); backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.1);
} }
a { a {
color:rgb(255, 255, 255) !important; color:rgb(255, 255, 255) !important;
text-decoration: none; text-decoration: none;
transition: color 0.3s ease; transition: color 0.3s ease;
&:hover { &:hover {
color: #66b1ff !important; color: #66b1ff !important;
text-shadow: 0 0 5px rgba(64, 158, 255, 0.5); text-shadow: 0 0 5px rgba(64, 158, 255, 0.5);