|
|
|
|
@ -16,7 +16,7 @@ import DraggableButton from "@/pages/components/goHome.vue";
|
|
|
|
|
$response
|
|
|
|
|
} from '@/api'
|
|
|
|
|
import {
|
|
|
|
|
onShow,onLoad
|
|
|
|
|
onShow,onLoad,onBackPress
|
|
|
|
|
} from '@dcloudio/uni-app'
|
|
|
|
|
import OrderComponent from './src/order.vue'
|
|
|
|
|
import {
|
|
|
|
|
@ -107,6 +107,13 @@ import DraggableButton from "@/pages/components/goHome.vue";
|
|
|
|
|
getOrderList()
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
onBackPress((options)=> {
|
|
|
|
|
console.log(options)
|
|
|
|
|
uni.reLaunch({
|
|
|
|
|
url: '/pages/main/index/index'
|
|
|
|
|
});
|
|
|
|
|
return true;
|
|
|
|
|
})
|
|
|
|
|
</script>
|
|
|
|
|
<template>
|
|
|
|
|
<DraggableButton />
|
|
|
|
|
|