| | |
| | | <template> |
| | | <view> |
| | | <view> |
| | | <uni-table border emptyText="没有更多数据"> |
| | | <uni-table border stripe type="selection" emptyText="没有更多数据"> |
| | | <uni-tr> |
| | | <uni-th>数量</uni-th> |
| | | <uni-th>批号</uni-th> |
| | |
| | | <!-- 普通弹窗 --> |
| | | <uni-popup ref="popup" background-color="#fff" style="position: fixed; border-radius: 5px;" > |
| | | <view class="popup-content " :class="{ 'popup-height': type === 'left' || type === 'right' }"> |
| | | <view style="width: 700rpx;"></view> |
| | | <view style="height: 800rpx;"> |
| | | <uni-table border stripe type="selection" emptyText="没有更多数据"> |
| | | <uni-tr> |
| | | <uni-th>1</uni-th> |
| | | </uni-tr> |
| | | </uni-table> |
| | | </view> |
| | | </view> |
| | | </uni-popup> |
| | | </view> |
| | |
| | | this.$refs.popup.open(type) |
| | | }, |
| | | getMat() { |
| | | this.toggle('left') |
| | | this.toggle('top') |
| | | } |
| | | } |
| | | } |