票务排序
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -262,7 +262,7 @@ onMounted(() => { | ... | @@ -262,7 +262,7 @@ onMounted(() => { |
| 262 | getDeskInfo({ | 262 | getDeskInfo({ |
| 263 | atstId: route.params.latstId | 263 | atstId: route.params.latstId |
| 264 | }).then(res => { | 264 | }).then(res => { |
| 265 | deskList.value = res.data.sort((a, b) => a.deskNo - b.deskNo) | 265 | deskList.value = res.data?.sort((a, b) => a.deskNo - b.deskNo) |
| 266 | currDesk.value = res.data[0] | 266 | currDesk.value = res.data[0] |
| 267 | }) | 267 | }) |
| 268 | } else { // 普通票 | 268 | } else { // 普通票 | ... | ... |
-
Please register or sign in to post a comment