配件领用接口未对接
This commit is contained in:
parent
9107897db6
commit
22a890a385
|
|
@ -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) {
|
||||
|
|
|
|||
|
|
@ -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`
|
||||
// );
|
||||
},
|
||||
|
||||
//发布按钮
|
||||
|
|
|
|||
Loading…
Reference in New Issue