Commit a230234f authored by 刘用法's avatar 刘用法

暂无订单页面

parent bfb65886
...@@ -73,7 +73,8 @@ ...@@ -73,7 +73,8 @@
auditDatetime: '2021.04.19 12:45:09', // 审核时间 auditDatetime: '2021.04.19 12:45:09', // 审核时间
submissionTime: '2021.04.19 16:24:48', // 提交时间 submissionTime: '2021.04.19 16:24:48', // 提交时间
auditResults: {}, // 审核结果 auditResults: {}, // 审核结果
orderBusinessType: 'R', // 业务类型 R 为抢单 orderBusinessType: 'R', // 业务类型 R 为抢单
orderId: '0', // 订单id
} }
} }
}, },
......
<template> <template>
<view class="no-order-view"> <view class="no-order-view" :style="customStyle">
<image class="no-order-image" :src="wudingdanImage"></image> <image class="no-order-image" :src="wudingdanImage"></image>
<text>当前暂无订单</text> <text>当前暂无订单</text>
</view> </view>
</template> </template>
<script> <script>
export default { export default {
props: {
customStyle: {
type: String,
default: 'background-color: #FFFFFF'
}
},
computed: { computed: {
wudingdanImage() { wudingdanImage() {
return process.uniEnv.qn_base_url + 'wudingdan.png' return process.uniEnv.qn_base_url + 'wudingdan.png'
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
bar-width="44" :offset="[0,0]" :list="list" count="total" :current="current" @change="change" bar-width="44" :offset="[0,0]" :list="list" count="total" :current="current" @change="change"
:is-scroll="false" font-size="28" bold></u-tabs> :is-scroll="false" font-size="28" bold></u-tabs>
</view> </view>
<NoOrder v-if="noMore" style="margin-top: 100rpx;" /> <NoOrder v-if="noMore" customStyle="margin-top: 100rpx;background-color: #F4F5F7" />
<view v-else class="tab-view"> <view v-else class="tab-view">
<!-- <swiper-item class="swiper-item" v-for="(res, ind) in orderList" :key="ind"> --> <!-- <swiper-item class="swiper-item" v-for="(res, ind) in orderList" :key="ind"> -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment