feat:完成job后端接口

This commit is contained in:
橙子
2023-04-23 23:46:20 +08:00
parent 6977e233bb
commit 7d5a7e0fe8
7 changed files with 57 additions and 14 deletions

View File

@@ -346,8 +346,8 @@ const { queryParams, form, rules } = toRefs(data);
function getList() {
loading.value = true;
listJob(queryParams.value).then(response => {
jobList.value = response.rows;
total.value = response.total;
jobList.value = response.data.items;
total.value = response.data.total;
loading.value = false;
});
}