配件领用接口未对接

This commit is contained in:
zzyuan 2025-01-08 16:37:02 +08:00
parent 9107897db6
commit 22a890a385
2 changed files with 29 additions and 29 deletions

View File

@ -257,13 +257,13 @@ export default {
},
//-
getTaskInfo() {
this.loading = true;
getAuditInfo({ taskId: this.taskId }).then((response) => {
this.maForm = this.paramTemp;
this.equipmentList = response.rows;
this.total = response.total;
// this.loading = true;
// getAuditInfo({ taskId: this.taskId }).then((response) => {
// this.maForm = this.paramTemp;
// this.equipmentList = response.rows;
// this.total = response.total;
this.loading = false;
});
// });
},
//
handlePass(row) {

View File

@ -317,21 +317,21 @@ export default {
}
},
getList() {
this.loading = true;
const params = {
keyword: this.queryParams.keyword,
startTime: this.queryParams.time && this.queryParams.time[0],
endTime: this.queryParams.time && this.queryParams.time[1],
pageSize: this.queryParams.pageSize,
pageNum: this.queryParams.pageNum,
taskStatus: this.queryParams.taskStatus,
taskType:5,
};
getListTestExamineApply(this.addDateRange(params)).then((response) => {
this.typeList = response.rows;
this.total = response.total;
// this.loading = true;
// const params = {
// keyword: this.queryParams.keyword,
// startTime: this.queryParams.time && this.queryParams.time[0],
// endTime: this.queryParams.time && this.queryParams.time[1],
// pageSize: this.queryParams.pageSize,
// pageNum: this.queryParams.pageNum,
// taskStatus: this.queryParams.taskStatus,
// taskType:5,
// };
// getListTestExamineApply(this.addDateRange(params)).then((response) => {
// this.typeList = response.rows;
// this.total = response.total;
this.loading = false;
});
// });
},
/** 搜索按钮操作 */
handleQuery() {
@ -468,15 +468,15 @@ export default {
/** 导出按钮操作 */
handleExport() {
this.download(
"/material/repair_audit_details/export",
{
...this.queryParams,
startTime: this.queryParams.time && this.queryParams.time[0],
endTime: this.queryParams.time && this.queryParams.time[1],
},
`修试审核_${new Date().getTime()}.xlsx`
);
// this.download(
// "/material/repair_audit_details/export",
// {
// ...this.queryParams,
// startTime: this.queryParams.time && this.queryParams.time[0],
// endTime: this.queryParams.time && this.queryParams.time[1],
// },
// `_${new Date().getTime()}.xlsx`
// );
},
//