Commit 0c2156fe295f49a760ef9f7a2c6fb89a3426308a
1 parent
3799eae2
快速入库页面,入库口改成下拉框选择
Showing
1 changed file
with
16 additions
and
2 deletions
ant-design-vue-jeecg/src/views/system/task/modules/MaterialTaskModal.vue
... | ... | @@ -14,13 +14,27 @@ |
14 | 14 | <a-row class="form-row" :gutter="0"> |
15 | 15 | <a-col :lg="8"> |
16 | 16 | <a-form-model-item label="托盘号" :rules="[{ required: true, message: '请输入托盘号!' }]"> |
17 | - <a-input placeholder="请输入托盘号" v-model="quickMainModel.containerCode"/> | |
17 | +<!-- <a-input placeholder="请输入托盘号" v-model="quickMainModel.containerCode"/>--> | |
18 | + <j-search-select-tag | |
19 | + placeholder="请输入托盘号" | |
20 | + v-model="quickMainModel.containerCode" | |
21 | + dict="container,code,code,status='empty'" | |
22 | + :pageSize="10" | |
23 | + :async="true"> | |
24 | + </j-search-select-tag> | |
18 | 25 | </a-form-model-item> |
19 | 26 | </a-col> |
20 | 27 | |
21 | 28 | <a-col :lg="8"> |
22 | 29 | <a-form-model-item label="入库口"> |
23 | - <a-input placeholder="请输入入库口" v-model="quickMainModel.toPort"/> | |
30 | +<!-- <a-input placeholder="请输入入库口" v-model="quickMainModel.toPort"/>--> | |
31 | + <j-search-select-tag | |
32 | + placeholder="请选择入库口" | |
33 | + v-model="quickMainModel.toPort" | |
34 | + dict="port,name,code,type!='2'" | |
35 | + :pageSize="5" | |
36 | + :async="true"> | |
37 | + </j-search-select-tag> | |
24 | 38 | </a-form-model-item> |
25 | 39 | </a-col> |
26 | 40 | </a-row> |
... | ... |