master
吴普建 11 months ago
parent 1aa8938fb8
commit e5f23c2a9e

@ -152,7 +152,7 @@ const searchForm = ref<workOrderArrange.searchForm>({
pageNum: 1,
pageSize: 10,
total: 0,
workOrderType: 0,
workOrderType: 1,
wiredrawingCode: '',
specification: '',
equipmentCode: '',
@ -161,7 +161,7 @@ const searchForm = ref<workOrderArrange.searchForm>({
const isActive = ref<number | undefined>(undefined);
const workOrderTypeValue = ref<number>(0);
const workOrderTypeValue = ref<number>(1);
const range = ref<[number, number] | null>(null);
const showInputDialog = ref<boolean>(false);
@ -657,7 +657,7 @@ function init(): void {
endLoading();
});
} else {
getEnamellingWorkorderList({ ...searchForm.value }).then(res => {
getEnamellingWorkorderList({ ...searchForm.value }).then(res => {
if (res.code === 200) {
searchForm.value.total = res.total;
qbData.value = res.rows;

Loading…
Cancel
Save