This commit is contained in:
wanglongjie 2026-01-27 18:28:27 +08:00
parent af9d488a4a
commit ed859652c1
4 changed files with 5 additions and 5 deletions

View File

@ -75,7 +75,7 @@ export interface Report {
}
export interface ReportForm {
customerId: number
customerId: number | null
description?: string
}

View File

@ -1,7 +1,7 @@
<template>
<el-container class="layout-container">
<el-aside width="200px">
<div class="logo">经销商管理系统</div>
<div class="logo">泊云经销商管理系统</div>
<el-menu
:default-active="activeMenu"
router

View File

@ -1,7 +1,7 @@
<template>
<div class="login-container">
<div class="login-box">
<h2 class="login-title">经销商管理系统</h2>
<h2 class="login-title">泊云经销商管理系统</h2>
<el-form ref="loginFormRef" :model="loginForm" :rules="rules" class="login-form">
<el-form-item prop="username">
<el-input

View File

@ -192,7 +192,7 @@ const queryForm = reactive({
})
const formData = reactive<ReportForm>({
customerId: 0,
customerId: null,
description: ''
})
@ -346,7 +346,7 @@ const handleAuditSubmit = async () => {
const handleDialogClose = () => {
formRef.value?.resetFields()
Object.assign(formData, {
customerId: 0,
customerId: null,
description: ''
})
customerOptions.value = []