优化
This commit is contained in:
parent
af9d488a4a
commit
ed859652c1
|
|
@ -75,7 +75,7 @@ export interface Report {
|
|||
}
|
||||
|
||||
export interface ReportForm {
|
||||
customerId: number
|
||||
customerId: number | null
|
||||
description?: string
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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 = []
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user