ec15c642 by zhangmeng

旅游

1 parent 7a7eddcf
...@@ -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 }
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!