|
@ -1,18 +1,20 @@ |
|
|
<template> |
|
|
<template> |
|
|
<uni-popup ref="popupItems"> |
|
|
<uni-popup ref="popupItems"> |
|
|
<com-popup @onClose="closePopup"> |
|
|
<com-popup @onClose="closePopup"> |
|
|
<view class=""> |
|
|
<view class="uni-center" style="position: relative;height:900rpx ;"> |
|
|
<view class="uni-center" style="font-size: 40rpx;margin-top: 10rpx;margin-bottom: 10rpx;"> |
|
|
<view class="" style="position: absolute;font-size: 38rpx;height: 50rpx; margin-top: 10rpx;margin-bottom: 10rpx;left: 0;top: 0;right: 0;"> |
|
|
选择物料 |
|
|
选择物料 |
|
|
</view> |
|
|
</view> |
|
|
<u-line/> |
|
|
<u-line/> |
|
|
<view style="margin: 20rpx;" v-for="(item, index) in showList" :key="index" > |
|
|
<view class="" style="position: absolute;height: 720rpx; font-size: 40rpx;top: 70rpx;bottom: 80rpx;left: 0;right: 0;"> |
|
|
<view class="" style="padding: 10rpx;" @click="selectItem(item)"> |
|
|
<view style="margin: 15rpx;text-align: left;" v-for="(item, index) in showList" :key="index" > |
|
|
物料: {{item.itemCode}} |
|
|
<view class="" style="padding: 10rpx;font-size: 30rpx; " @click="selectItem(item)"> |
|
|
|
|
|
({{index+1}}) 物料: {{item.itemCode}} |
|
|
</view> |
|
|
</view> |
|
|
<u-line/> |
|
|
<u-line/> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
<view class="" style="position: absolute; height:80rpx ;left: 0;bottom: 0;right: 0;"> |
|
|
<view class="flex uni-center" style="width: 100%;justify-content: center;margin-top: 10rpx;margin-bottom: 10rpx;" > |
|
|
<view class="flex uni-center" style="width: 100%;justify-content: center;margin-top: 10rpx;margin-bottom: 10rpx;" > |
|
|
<view class=""> |
|
|
<view class=""> |
|
|
当前页:{{ pageCurrent }},数据总量:{{ total }}条,每页数据:{{ pageSize }} |
|
|
当前页:{{ pageCurrent }},数据总量:{{ total }}条,每页数据:{{ pageSize }} |
|
@ -22,6 +24,8 @@ |
|
|
<view class=""> |
|
|
<view class=""> |
|
|
<uni-pagination :page-size="pageSize" :current="pageCurrent" :total="total" @change="change" /> |
|
|
<uni-pagination :page-size="pageSize" :current="pageCurrent" :total="total" @change="change" /> |
|
|
</view> |
|
|
</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
</view> |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</com-popup> |
|
|
</com-popup> |
|
|