| | |
| | | @pagination="paginationChange" |
| | | /> |
| | | <!-- 确认收货对话框 --> |
| | | <el-dialog v-model="receiptDialogVisible" title="确认收货" width="70%"> |
| | | <FormDialog v-model="receiptDialogVisible" title="确认收货" :width="'70%'" @close="receiptDialogVisible = false" @confirm="submitReceipt" @cancel="receiptDialogVisible = false"> |
| | | <el-form :model="receiptForm" label-width="120px" ref="formRef"> |
| | | <el-form-item label="采购合同号"> |
| | | <el-input v-model="receiptForm.purchaseContractNumber" disabled /> |
| | |
| | | /> |
| | | </el-table> |
| | | </el-form> |
| | | <template #footer> |
| | | <el-button @click="receiptDialogVisible = false">取消</el-button> |
| | | <el-button type="primary" @click="submitReceipt">确认收货</el-button> |
| | | </template> |
| | | </el-dialog> |
| | | </FormDialog> |
| | | </div> |
| | | </template> |
| | | |
| | | <script setup> |
| | | import FormDialog from '@/components/Dialog/FormDialog.vue'; |
| | | import {ref, onMounted, getCurrentInstance} from 'vue' |
| | | import { |
| | | getPurchaseOrders, |