抱杆配套管理

This commit is contained in:
binbin_pan 2024-04-19 11:08:25 +08:00
parent bcf6710e01
commit c2dc2a5d40
1 changed files with 11 additions and 1 deletions

View File

@ -1,13 +1,22 @@
<template> <template>
<div class="app-container"> <div class="app-container">
<!-- 首页搜索 --> <!-- 首页搜索 -->
<el-form :model="formData" ref="formData" size="small" :inline="true" v-show="showSearch" @submit.native.prevent> <el-form
:model="formData"
ref="formData"
size="small"
:inline="true"
v-show="showSearch"
label-width="100px"
@submit.native.prevent
>
<el-form-item label="关键字" prop="keyWord"> <el-form-item label="关键字" prop="keyWord">
<el-input <el-input
v-model="formData.keyWord" v-model="formData.keyWord"
placeholder="请输入关键字" placeholder="请输入关键字"
clearable clearable
maxlength="50" maxlength="50"
style="width: 240px"
@keyup.enter.native="handleQuery" @keyup.enter.native="handleQuery"
/> />
</el-form-item> </el-form-item>
@ -108,6 +117,7 @@
placeholder="请输入关键字" placeholder="请输入关键字"
clearable clearable
maxlength="50" maxlength="50"
style="width: 240px"
@keyup.enter.native="handleSearch" @keyup.enter.native="handleSearch"
/> />
</el-form-item> </el-form-item>