<template> <view class="scan">扫描</view> </template> <script> import { API } from '@/util/api.js'; export default { data() { return {}; }, onLoad() { }, onShow() { this.getData();
}, methods: { getData() { this.request(API.OrderList, 'GET', { limit: this.limit }, this.loading).then(res => {}); } } }; </script> <style scoped lang="scss"> @import '../../assets/css/scan/index.scss'; </style>