Commit 96e46dfd0d1c5d897b86ebf577e5a4253ef94204
Merge remote-tracking branch 'origin/develop' into develop
Showing
1 changed file
with
42 additions
and
0 deletions
src/views/makeInventory/MakeInventoryList.vue
... | ... | @@ -4,6 +4,48 @@ |
4 | 4 | <div class="table-page-search-wrapper"> |
5 | 5 | <a-form layout="inline" @keyup.enter.native="searchQuery"> |
6 | 6 | <a-row :gutter="24"> |
7 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
8 | + <a-form-item label="名称"> | |
9 | + <a-input placeholder="请输入名称" v-model="queryParam.name"></a-input> | |
10 | + </a-form-item> | |
11 | + </a-col> | |
12 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
13 | + <a-form-item label="图号"> | |
14 | + <a-input placeholder="请输入图号" v-model="queryParam.drawNo"></a-input> | |
15 | + </a-form-item> | |
16 | + </a-col> | |
17 | + <template v-if="toggleSearchStatus"> | |
18 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
19 | + <a-form-item label="料号"> | |
20 | + <a-input placeholder="请输入料号" v-model="queryParam.no"></a-input> | |
21 | + </a-form-item> | |
22 | + </a-col> | |
23 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
24 | + <a-form-item label="库存"> | |
25 | + <a-input placeholder="请输入库存" v-model="queryParam.qty"></a-input> | |
26 | + </a-form-item> | |
27 | + </a-col> | |
28 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
29 | + <a-form-item label="生产计划头表id"> | |
30 | + <a-input placeholder="请输入生产计划头表id" v-model="queryParam.schdulerHeadId"></a-input> | |
31 | + </a-form-item> | |
32 | + </a-col> | |
33 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
34 | + <a-form-item label="工作令"> | |
35 | + <a-input placeholder="请输入工作令" v-model="queryParam.workno"></a-input> | |
36 | + </a-form-item> | |
37 | + </a-col> | |
38 | + </template> | |
39 | + <a-col :xl="6" :lg="7" :md="8" :sm="24"> | |
40 | + <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons"> | |
41 | + <a-button type="primary" @click="searchQuery" icon="search">查询</a-button> | |
42 | + <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button> | |
43 | + <a @click="handleToggleSearch" style="margin-left: 8px"> | |
44 | + {{ toggleSearchStatus ? '收起' : '展开' }} | |
45 | + <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/> | |
46 | + </a> | |
47 | + </span> | |
48 | + </a-col> | |
7 | 49 | </a-row> |
8 | 50 | </a-form> |
9 | 51 | </div> |
... | ... |