spring
18 小时以前 b92d10412fce580b3e1d54fa057b44c68cb6492b
src/pages/inventoryManagement/receiptManagement/components/formDiaManual.vue
@@ -1,4 +1,4 @@
<template>
<template>
  <up-popup :show="dialogFormVisible" mode="bottom" :round="10" closeable @close="closeDia">
    <view class="form-popup">
      <view class="popup-header">
@@ -160,7 +160,7 @@
    supplierName: form.value.supplierName || '',
    itemType: '',
    inboundNum: 0,
    inboundDate: '',
    inboundDate: getCurrentDate(),
    taxRate: null,
    taxInclusiveUnitPrice: 0,
    taxInclusiveTotalPrice: 0,
@@ -195,6 +195,8 @@
const openDatePicker = (index) => {
  currentEditIndex.value = index
  const currentDate = productList.value[index]?.inboundDate
  dateValue.value = currentDate ? new Date(currentDate).getTime() : Date.now()
  showDatePicker.value = true
}