| | |
| | | <div> |
| | | <span class="search_title">采购合同号:</span> |
| | | <el-input |
| | | v-model="searchForm.searchText" |
| | | v-model="searchForm.purchaseContractNo" |
| | | style="width: 240px" |
| | | placeholder="请输入" |
| | | @change="handleQuery" |
| | | clearable |
| | | :prefix-icon="Search" |
| | | /> |
| | | <span class="search_title" style="margin-left: 10px">供应商:</span> |
| | | <el-input |
| | | v-model="searchForm.supplierName" |
| | | style="width: 240px" |
| | | placeholder="请输入" |
| | | @change="handleQuery" |
| | |
| | | <span class="search_title" style="margin-left: 10px">来票日期:</span> |
| | | <el-date-picker |
| | | style="width: 240px" |
| | | v-model="form.issueDate" |
| | | v-model="searchForm.issueDate" |
| | | value-format="YYYY-MM-DD" |
| | | format="YYYY-MM-DD" |
| | | type="date" |
| | |
| | | const dialogFormVisible = ref(false) |
| | | const data = reactive({ |
| | | searchForm: { |
| | | searchText: '', |
| | | purchaseContractNo: '', |
| | | supplierName: '', |
| | | issueDate:'' |
| | | }, |
| | | form: { |