Commit 99f03ee2 by wangyalan-git

bug修改

parent 150a5216
......@@ -3,9 +3,31 @@
<!-- 表格栏 -->
<el-card class="filter-container mt15"
shadow="never">
<el-row type="flex" class="btn-groups">
<el-form :inline="true"
:model="listQuery"
size="small">
<el-form-item label="库房名称:">
<el-input v-model="listQuery.name"
class="input-width"
placeholder="请输入库房名称"></el-input>
</el-form-item>
<el-form-item>
<el-button type="primary"
@click="handleSearchList"
icon="el-icon-search"
size="small">搜索
</el-button>
<el-button @click="handleResetSearch"
icon="el-icon-refresh"
size="small">重置
</el-button>
</el-form-item>
<el-button type="primary" @click="handleAdd" class="btn-add">新增</el-button>
</el-form>
<!-- <el-row type="flex" class="btn-groups">
<el-button type="primary" @click="handleAdd">新增</el-button>
</el-row>
</el-row> -->
<div class="table-container">
<el-table :data="list"
v-loading="listLoading"
......@@ -58,6 +80,7 @@ import { getDepartmentList, editDepart } from '@/api/inventory'
import AddDepartmentModal from './modules/addDepartmentModal'
// 列表查询参数默认值
const defaultListQuery = {
name: '',
pageNum: 1,
pageSize: 10
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment