fix bug
This commit is contained in:
parent
3d7c5ccc62
commit
533b0b648f
2 changed files with 3 additions and 3 deletions
|
|
@ -45,14 +45,14 @@ const selectedModal = defineModel<any[]>("selectedModal");
|
||||||
const filter = ref<string>("");
|
const filter = ref<string>("");
|
||||||
const isAll = ref<boolean>(false);
|
const isAll = ref<boolean>(false);
|
||||||
const isBlank = ref<boolean>(false);
|
const isBlank = ref<boolean>(false);
|
||||||
const positionNo = ref<DataPositionNo[]>();
|
const positionNo = ref<DataPositionNo[]>([]);
|
||||||
const itemTaps = ref<string[]>();
|
const itemTaps = ref<string[]>();
|
||||||
const positionId = ref<string>("");
|
const positionId = ref<string>("");
|
||||||
const selectedPos = ref<any[]>([]);
|
const selectedPos = ref<any[]>([]);
|
||||||
const seletcId = ref<string>("");
|
const seletcId = ref<string>("");
|
||||||
const datePos = ref<Date>(new Date());
|
const datePos = ref<Date>(new Date());
|
||||||
const rowsPosition = ref<Positions[]>([]);
|
const rowsPosition = ref<Positions[]>([]);
|
||||||
const positionData = ref<any>();
|
const positionData = ref<any[]>([]);
|
||||||
/** active form */
|
/** active form */
|
||||||
const formActive = reactive<FormActive>({
|
const formActive = reactive<FormActive>({
|
||||||
activeId: "",
|
activeId: "",
|
||||||
|
|
|
||||||
|
|
@ -61,7 +61,7 @@ const expanded = ref<string[]>([]);
|
||||||
|
|
||||||
/** Position*/
|
/** Position*/
|
||||||
const positionUse = ref<string[]>([]);
|
const positionUse = ref<string[]>([]);
|
||||||
const positionNo = ref<DataPositionNo[]>();
|
const positionNo = ref<DataPositionNo[]>([]);
|
||||||
const positionId = ref<string>("");
|
const positionId = ref<string>("");
|
||||||
const seletcId = ref<string>("");
|
const seletcId = ref<string>("");
|
||||||
const selectedPos = ref<any[]>([]);
|
const selectedPos = ref<any[]>([]);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue