123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <view>
- <scroll-view scroll-y="true">
- <view v-for="item in riderData" :key="item.id" style="margin: 10rpx 0;">
- <rider-order :orderInfo="item"></rider-order>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- import {
- registerVerify,
- } from '@/api/api.js';
- import {
- Debounce
- } from '@/utils/validate.js'
- import riderOrder from "@/components/riderOrder/index.vue";
- var statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
- let app = getApp();
- export default {
- name: 'riderShipping',
- components: {
- riderOrder,
- },
- data() {
- return {
- statusBarHeight: app.globalData.statusBarHeight,
- navigationBarHeight: 112,
- riderData: [{
- cost: '2.00',
- time: '12:00',
- shopName: '吉啊婆麻辣烫',
- shopDistance: 500,
- shopAddress: '梨园2楼7号橱窗',
- userAddress: '雅苑3栋209b1001室',
- userDistance: 0,
- userRemarks: '老板,多放点辣椒!辣死我',
- },
- {
- cost: '2.00',
- time: '12:00',
- shopName: '吉啊婆麻辣烫',
- shopDistance: 500,
- shopAddress: '梨园2楼7号橱窗',
- userAddress: '雅苑3栋209b1001室',
- userDistance: 0,
- userRemarks: '老板,多放点辣椒!辣死我',
- },
- {
- cost: '2.00',
- time: '12:00',
- shopName: '吉啊婆麻辣烫',
- shopDistance: 500,
- shopAddress: '梨园2楼7号橱窗',
- userAddress: '雅苑3栋209b1001室',
- userDistance: 0,
- userRemarks: '老板,多放点辣椒!辣死我',
- },
- {
- cost: '2.00',
- time: '12:00',
- shopName: '吉啊婆麻辣烫',
- shopDistance: 500,
- shopAddress: '梨园2楼7号橱窗',
- userAddress: '雅苑3栋209b1001室',
- userDistance: 0,
- userRemarks: '老板,多放点辣椒!辣死我',
- }
- ]
- }
- },
- methods: {
- },
- onLoad(options) {},
- mounted() {
- },
- }
- </script>
- <style scoped lang="scss">
- </style>
|