|
@@ -135,7 +135,7 @@
|
|
|
<el-dialog :title="'高级检索'" v-model="queryDialogVisible" width="500px" destroy-on-close>
|
|
|
<el-form :model="sourceList.pagination" label-width="100px" label-position="top">
|
|
|
<el-form-item label="退货单号">
|
|
|
- <el-input v-model="sourceList.pagination.returnId" placeholder="请输入退货单号" />
|
|
|
+ <el-input v-model="sourceList.pagination.returnId" placeholder="请输入退货单号" oninput="value=value.replace(/[^\d.]/g,'')"/>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<template #footer>
|
|
@@ -175,7 +175,7 @@ const selectConfig = computed(() => {
|
|
|
return [
|
|
|
{
|
|
|
label: "退货单状态",
|
|
|
- prop: "returnStateName",
|
|
|
+ prop: "returnState",
|
|
|
data: returnStates.value,
|
|
|
},
|
|
|
];
|