|
@@ -80,7 +80,7 @@
|
|
<script>
|
|
<script>
|
|
import BScroll from 'better-scroll'
|
|
import BScroll from 'better-scroll'
|
|
import { Toast, Loading } from 'vant'
|
|
import { Toast, Loading } from 'vant'
|
|
-import { apiOrderList, apiOrderDetail } from '../../../order/api/api'
|
|
|
|
|
|
+import { apiOrderList } from '../../../order/api/api'
|
|
|
|
|
|
export default {
|
|
export default {
|
|
components: {
|
|
components: {
|
|
@@ -123,7 +123,6 @@ export default {
|
|
this.$route.meta.isUseCache = false
|
|
this.$route.meta.isUseCache = false
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
- goDetail (id) {},
|
|
|
|
onRefresh () {
|
|
onRefresh () {
|
|
this.pagenum = 0
|
|
this.pagenum = 0
|
|
this.pagesize = 20
|
|
this.pagesize = 20
|
|
@@ -207,14 +206,7 @@ export default {
|
|
}
|
|
}
|
|
},
|
|
},
|
|
async getOrderDetail (id) {
|
|
async getOrderDetail (id) {
|
|
- try {
|
|
|
|
- const { status, data, msg } = await apiOrderDetail(id)
|
|
|
|
- if (status) {
|
|
|
|
- this.$emit('setOrderDetail', data)
|
|
|
|
- } else {
|
|
|
|
- Toast(msg)
|
|
|
|
- }
|
|
|
|
- } catch (err) {}
|
|
|
|
|
|
+ this.$router.push({ name: 'CategoryDetail' })
|
|
}
|
|
}
|
|
},
|
|
},
|
|
beforeDestroy () {
|
|
beforeDestroy () {
|