diff --git a/src/views/stock/component/apply-form.vue b/src/views/stock/component/apply-form.vue index 99b9073..aec0f7c 100644 --- a/src/views/stock/component/apply-form.vue +++ b/src/views/stock/component/apply-form.vue @@ -11,8 +11,12 @@ 采购入库 归还入库 出库外借 + 报废出库 + + + @@ -128,12 +132,25 @@ applyDate: Dayjs // 申请日期 applyType: string // 申请类型 slectedList: number[] // 入库物料 + viewer: string // 审核人 } const formData = ref({ applicant: '', applyDate: dayjs(), applyType: props.applyType, slectedList: [], + viewer: '', + }) + + // 审核人 + const personList = ref>([]) + api.aclApi.user.all((data) => { + personList.value = data.map((item) => { + return { + value: item?.name, + label: item?.fullName, + } + }) }) // 物料类型树