| | |
| | | <view style="height: 160rpx;text-align: center;color: #b9b9b9;"> |
| | | - 已经到底了 - |
| | | </view> |
| | | <!-- 选择楼层弹窗 --> |
| | | <view> |
| | | <uni-popup ref="filter" type="dialog"> |
| | | <view class="filter-popup"> |
| | | <!-- 标题 --> |
| | | <view class="title">筛选</view> |
| | | <view class="popup-item" style="background-color: #dfdfdf;"> |
| | | <view class="item-cl"> |
| | | <view>销售订单:</view> |
| | | <input type="text" v-model="searchValue"> |
| | | </view> |
| | | </view> |
| | | <view class="btn filter-btn"> |
| | | <view class="btn-right" @click="filterConfirm()">开始调拨</view> |
| | | </view> |
| | | </view> |
| | | </uni-popup> |
| | | </view> |
| | | <!-- 底部操作按钮 --> |
| | | <view class="buttom"> |
| | | <button size="mini" @click="unAuto('warn')">手动</button> |
| | | <button size="mini" type="primary" @click="auto('warn')">自动</button> |
| | | <button size="mini" @click="isAuto('unAuto')">手动</button> |
| | | <button size="mini" type="primary" @click="isAuto('auto')">自动</button> |
| | | </view> |
| | | </view> |
| | | </template> |
| | |
| | | } |
| | | this.upDateCount() |
| | | }, |
| | | isAuto(type) { |
| | | this.$refs.filter.open('bottom') |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | |
| | | font-size: 22px; |
| | | color: #3a3a3a; |
| | | } |
| | | .filter-popup { |
| | | width: 100%; |
| | | height: 80vh; |
| | | background-color: #FFF; |
| | | position: relative; |
| | | border-radius: 30rpx 30rpx 0rpx 0rpx; |
| | | } |
| | | .filter-popup-item { |
| | | height: 100%; |
| | | width: 100%; |
| | | background-color: #c9cdd5; |
| | | } |
| | | .filter-popup-item-left { |
| | | width: 30%; |
| | | height: 100%; |
| | | background-color: #DCDFE6; |
| | | |
| | | } |
| | | .filter-btn { |
| | | position: absolute; |
| | | left: 0; |
| | | bottom: 0; |
| | | width: 100%; |
| | | background-color: #FFF; |
| | | } |
| | | |
| | | |
| | | </style> |