|
@@ -5,10 +5,9 @@
|
|
<text :class='turnoverClass' @click='selectTurnover'>{{turnoverTitle}}</text>
|
|
<text :class='turnoverClass' @click='selectTurnover'>{{turnoverTitle}}</text>
|
|
<image class='img' src="../../static/screen.png"></image>
|
|
<image class='img' src="../../static/screen.png"></image>
|
|
</view>
|
|
</view>
|
|
-
|
|
|
|
<!-- 待周转页面 -->
|
|
<!-- 待周转页面 -->
|
|
<view class="padding-container" v-if='pendingShow'>
|
|
<view class="padding-container" v-if='pendingShow'>
|
|
- <scroll-view class="scroll-container" scroll-y>
|
|
|
|
|
|
+ <view class="scroll-container" scroll-y>
|
|
<view v-for="(item, index) in listData" :key="index"
|
|
<view v-for="(item, index) in listData" :key="index"
|
|
:class="{'list-item':true,'selected':isSelected(item)}">
|
|
:class="{'list-item':true,'selected':isSelected(item)}">
|
|
<!-- @click="handleSelection(item)" -->
|
|
<!-- @click="handleSelection(item)" -->
|
|
@@ -48,14 +47,14 @@
|
|
<text class="label right">{{ item['nickName']}}</text>
|
|
<text class="label right">{{ item['nickName']}}</text>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- </scroll-view>
|
|
|
|
|
|
+ </view>
|
|
<view class="bottom-btn-container uni-row">
|
|
<view class="bottom-btn-container uni-row">
|
|
<button class="bottom-btn" @click="handleStartTurn">开始周转</button>
|
|
<button class="bottom-btn" @click="handleStartTurn">开始周转</button>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
<!-- 周转中页面 -->
|
|
<!-- 周转中页面 -->
|
|
<view class='turnover-container' v-if='turnoverShow'>
|
|
<view class='turnover-container' v-if='turnoverShow'>
|
|
- <scroll-view class="scroll-container" scroll-y>
|
|
|
|
|
|
+ <view class="scroll-container" scroll-y>
|
|
<!-- 循环周转中的数据 -->
|
|
<!-- 循环周转中的数据 -->
|
|
<view class='item-container'>
|
|
<view class='item-container'>
|
|
<view v-if="products.length > 0" class="turnover-title uni-row">
|
|
<view v-if="products.length > 0" class="turnover-title uni-row">
|
|
@@ -86,7 +85,7 @@
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
</view>
|
|
- </scroll-view>
|
|
|
|
|
|
+ </view>
|
|
<view class='bottom-btn-container uni-row'>
|
|
<view class='bottom-btn-container uni-row'>
|
|
<button type='primary' class='bottom-btn' @click="handleConfirmDelivery">确认送达</button>
|
|
<button type='primary' class='bottom-btn' @click="handleConfirmDelivery">确认送达</button>
|
|
</view>
|
|
</view>
|
|
@@ -259,7 +258,9 @@
|
|
|
|
|
|
/* 导航栏样式 */
|
|
/* 导航栏样式 */
|
|
.container {
|
|
.container {
|
|
- height: 1600rpx;
|
|
|
|
|
|
+ height: calc(100% - $navHeight);
|
|
|
|
+ position: relative;
|
|
|
|
+ top: $navHeight;
|
|
background-color: #f5f5f5;
|
|
background-color: #f5f5f5;
|
|
}
|
|
}
|
|
|
|
|
|
@@ -269,6 +270,8 @@
|
|
|
|
|
|
.nav {
|
|
.nav {
|
|
justify-content: space-around;
|
|
justify-content: space-around;
|
|
|
|
+ position: fixed;
|
|
|
|
+ top:0;
|
|
width: 100%;
|
|
width: 100%;
|
|
height: $navHeight;
|
|
height: $navHeight;
|
|
border-bottom: 3rpx solid rgba(228, 231, 237, 1);
|
|
border-bottom: 3rpx solid rgba(228, 231, 237, 1);
|