旅游
Showing
1 changed file
with
3 additions
and
8 deletions
| ... | @@ -262,12 +262,11 @@ onMounted(() => { | ... | @@ -262,12 +262,11 @@ 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 | 265 | deskList.value = res.data.sort((a, b) => a.deskNo - b.deskNo) |
| 266 | |||
| 266 | currDesk.value = res.data[0] | 267 | currDesk.value = res.data[0] |
| 267 | }) | 268 | }) |
| 268 | } | 269 | } else { // 普通票 |
| 269 | // 普通票 | ||
| 270 | else { | ||
| 271 | getListByAtstId({ | 270 | getListByAtstId({ |
| 272 | atstId: route.params.latstId | 271 | atstId: route.params.latstId |
| 273 | }).then(res => { | 272 | }).then(res => { |
| ... | @@ -420,10 +419,6 @@ function addPeopl() { | ... | @@ -420,10 +419,6 @@ function addPeopl() { |
| 420 | }) | 419 | }) |
| 421 | } | 420 | } |
| 422 | 421 | ||
| 423 | const showImg = () => { | ||
| 424 | |||
| 425 | } | ||
| 426 | |||
| 427 | function handelUp() { | 422 | function handelUp() { |
| 428 | router.go(-1) | 423 | router.go(-1) |
| 429 | } | 424 | } | ... | ... |
-
Please register or sign in to post a comment