库存
This commit is contained in:
parent
6a1f773bf0
commit
dfc383f6e4
@ -34,7 +34,7 @@
|
|||||||
" placeholder="请输入药品备注" @press-enter="handleQuery" />
|
" placeholder="请输入药品备注" @press-enter="handleQuery" />
|
||||||
</a-form-item>
|
</a-form-item>
|
||||||
<a-form-item field="order.stock" label="库存排序">
|
<a-form-item field="order.stock" label="库存排序">
|
||||||
<a-select v-model="queryForm.order.stock" placeholder="库存排序" :style="{ width: '182px' }">
|
<a-select v-model="queryForm.order.stock" placeholder="请选择库存排序" :style="{ width: '182px' }">
|
||||||
<a-option value="asc">正序</a-option>
|
<a-option value="asc">正序</a-option>
|
||||||
<a-option value="desc">倒序</a-option>
|
<a-option value="desc">倒序</a-option>
|
||||||
</a-select>
|
</a-select>
|
||||||
@ -142,7 +142,9 @@
|
|||||||
};
|
};
|
||||||
// form
|
// form
|
||||||
const queryForm = reactive({
|
const queryForm = reactive({
|
||||||
order:{}
|
order:{
|
||||||
|
stock:''
|
||||||
|
}
|
||||||
});
|
});
|
||||||
const modalForm = reactive({
|
const modalForm = reactive({
|
||||||
user:{},
|
user:{},
|
||||||
@ -294,6 +296,7 @@
|
|||||||
// 重置搜索
|
// 重置搜索
|
||||||
const handleResetQuery = () => {
|
const handleResetQuery = () => {
|
||||||
proxy.$refs.queryFormRef.resetFields();
|
proxy.$refs.queryFormRef.resetFields();
|
||||||
|
queryForm.order.stock='';
|
||||||
getMedinceInfo(queryForm);
|
getMedinceInfo(queryForm);
|
||||||
}
|
}
|
||||||
const familyVisibleChange=(data)=>{
|
const familyVisibleChange=(data)=>{
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user