1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <view class="content">
- sdfdf
- </view>
- </template>
- <script>
- import {
- checkLogin
- } from '@/api/login.js'
- import {
- getMapStoreList
- } from '@/api/store.js'
- import {
- getLookUpDatas
- } from '@/api/data.js'
- import {
- getUnFinishedOrder
- } from '@/api/order.js'
- export default {
- components: {
- },
- data() {
- return {
- }
- },
- onReady() {
- },
- onShow() {
- },
- onLoad() {
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- .content {
- }
- </style>
|