|
|
@@ -1,24 +1,21 @@
|
|
|
<template>
|
|
|
<view class="order-page">
|
|
|
<app-tabs :tabs="tabs" :isFixed="true" :currentTab="tabIndex" @change="changeTab" itemWidth="20%"/>
|
|
|
-
|
|
|
- <view style="margin-left:60upx;margin-top:110upx;padding-bottom:30upx;position: relative;">
|
|
|
- <DateSelect @selectDateFn="selectDateFn" defaultShowName='时间' />
|
|
|
- <button class="admin-button-com mini-btn blue" style="position: absolute;right:300upx;top:-8upx;" @click="selGhs()">{{ ghsName==''?'选花店':ghsName }}</button>
|
|
|
- <button class="admin-button-com mini-btn blue" style="position: absolute;right:80upx;top:-8upx;" @click="resetSearch()">重置搜索</button>
|
|
|
- </view>
|
|
|
-
|
|
|
- <block v-if="!$util.isEmpty(list.data)">
|
|
|
- <view class="pay_list">
|
|
|
- <OrderItem v-for="(item, index) in list.data" :key="index" :info="item" @click="goToDetail"></OrderItem>
|
|
|
+ <view style="margin-left:60upx;margin-top:110upx;padding-bottom:30upx;position: relative;">
|
|
|
+ <DateSelect @selectDateFn="selectDateFn" defaultShowName='时间' />
|
|
|
+ <button class="admin-button-com mini-btn blue" style="position: absolute;right:300upx;top:-8upx;" @click="selGhs()">{{ ghsName==''?'选花店':ghsName }}</button>
|
|
|
+ <button class="admin-button-com mini-btn blue" style="position: absolute;right:80upx;top:-8upx;" @click="resetSearch()">重置搜索</button>
|
|
|
</view>
|
|
|
+ <block v-if="!$util.isEmpty(list.data)">
|
|
|
+ <view class="pay_list">
|
|
|
+ <OrderItem v-for="(item, index) in list.data" :key="index" :info="item" @click="goToDetail"></OrderItem>
|
|
|
+ </view>
|
|
|
</block>
|
|
|
<block v-else>
|
|
|
- <view>
|
|
|
- <AppWrapperEmpty title="暂无数据" :is-empty="$util.isEmpty(list.data)"/>
|
|
|
- </view>
|
|
|
+ <view>
|
|
|
+ <AppWrapperEmpty title="暂无数据" :is-empty="$util.isEmpty(list.data)"/>
|
|
|
+ </view>
|
|
|
</block>
|
|
|
-
|
|
|
</view>
|
|
|
</template>
|
|
|
<script>
|