修改 提示

This commit is contained in:
GGJ
2024-08-01 14:36:54 +08:00
parent 78dfa759ed
commit bd3dbca8e1
2 changed files with 11 additions and 11 deletions

View File

@@ -5,18 +5,18 @@ import { Method } from 'axios'
import { mainHeight } from '@/utils/layout'
interface TableStoreParams {
url: string
url: string // 请求地址
pk?: string
column: TableColumn[]
params?: anyObj
method?: Method
method?: Method // 请求方式
isWebPaging?: boolean // 是否前端分页
showPage?: boolean
paramsPOST?: boolean
publicHeight?: number
resetCallback?: () => void
loadCallback?: () => void
beforeSearchFun?: () => void
showPage?: boolean //是否需要分页
paramsPOST?: boolean // post请求 params传参
publicHeight?: number //计算高度
resetCallback?: () => void // 重置
loadCallback?: () => void // 接口调用后的回调
beforeSearchFun?: () => void // 接口调用前的回调
}
export default class TableStore {

View File

@@ -5,7 +5,7 @@
<el-form-item label="信息查询">
<el-input
style="width: 200px"
placeholder="请输入变电站名称"
placeholder="请输入变电站/监测点名称"
v-model="tableStore.table.params.searchValue"
clearable
></el-input>