| | |
| | | "enablePullDownRefresh": false |
| | | |
| | | } |
| | | } |
| | | }, |
| | | { |
| | | "path" : "pages/basics/stoCheck", |
| | | "style" : |
| | | { |
| | | "navigationBarTitleText": "库存盘点", |
| | | "enablePullDownRefresh": false |
| | | |
| | | } |
| | | } |
| | | |
| | | |
| | | |
New file |
| | |
| | | <template> |
| | | <view class=""> |
| | | <!-- 库位号输入框 --> |
| | | <view class="square-2"> |
| | | <view class="square-title"> |
| | | <view class="title-sign"><view class="sign"></view></view> |
| | | <view class="title-text"><text>库位号</text></view> |
| | | </view> |
| | | <view class="square-content"> |
| | | <view class="content-input"> |
| | | <input type="text" v-model="locno" placeholder="扫码 / 输入" :focus="locnoFocus"> |
| | | <uni-icons v-show="locno" type="closeempty" size="20" color="#dadada" @click="remove('locno')"></uni-icons> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | <!-- 商品码输入框 --> |
| | | <view class="square-2"> |
| | | <view class="square-title"> |
| | | <view class="title-sign"><view class="sign"></view></view> |
| | | <view class="title-text"><text>检索商品</text></view> |
| | | </view> |
| | | <view class="square-content"> |
| | | <view class="content-input-btn"> |
| | | <input v-model="matnr" type="text" placeholder="扫码 / 输入" @input="findMat()" |
| | | :focus="matnrFocus" placeholder-style="line-height: 85rpx;"> |
| | | <uni-icons v-show="matnr" type="closeempty" size="20" color="#dadada" @click="remove('matnr')"></uni-icons> |
| | | </view> |
| | | <view class="content-btn"> |
| | | <button class="cu-btn bg-blue pda-btn" @click="selectMat()">+提取</button> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | |
| | | <!-- 商品列表表头 --> |
| | | <view class="square-1"> |
| | | <view class="square-title"> |
| | | <view class="title-sign"><view class="sign"></view></view> |
| | | <view class="title-text"><text>商品列表</text></view> |
| | | </view> |
| | | </view> |
| | | |
| | | <view class="square-none" v-show="matList.length == 0"> |
| | | <view class="v-show">暂无更多数据...</view> |
| | | </view> |
| | | </view> |
| | | </template> |
| | | |
| | | <script> |
| | | export default { |
| | | data() { |
| | | return { |
| | | locno: '', |
| | | locnoFocus: true, |
| | | matnr: '', |
| | | matnrFocus: true, |
| | | matList: [], |
| | | |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | | |
| | | <style> |
| | | </style> |
| | |
| | | data() { |
| | | return { |
| | | elements:[ |
| | | |
| | | { |
| | | title: '上架管理', |
| | | name: 'putOnSale', |
| | | color: 'blue', |
| | | cuIcon: 'video' |
| | | }, |
| | | { |
| | | title: '下架管理', |
| | | name: 'offLines', |
| | | color: 'blue', |
| | | cuIcon: 'copy' |
| | | }, |
| | | { |
| | | title: '组托入库', |
| | | name: 'pakin', |
| | | color: 'blue', |
| | | cuIcon: 'copy' |
| | | }, |
| | | // { |
| | | // title: '组托入库', |
| | | // name: 'pakin', |
| | | // color: 'blue', |
| | | // cuIcon: 'copy' |
| | | // }, |
| | | // { |
| | | // title: '订单组托', |
| | | // name: 'order', |
| | | // color: 'blue', |
| | | // cuIcon: 'goods' |
| | | // }, |
| | | { |
| | | title: '库存查询', |
| | | name: 'stockQuery', |
| | | color: 'blue', |
| | | cuIcon: 'searchlist' |
| | | }, |
| | | { |
| | | title: '上架', |
| | | name: 'putOnSale', |
| | | color: 'blue', |
| | | cuIcon: 'video' |
| | | }, |
| | | { |
| | | title: '单据出库', |
| | | name: 'orderOut', |
| | | color: 'blue', |
| | | cuIcon: 'video' |
| | | }, |
| | | // { |
| | | // title: '库存查询', |
| | | // name: 'stockQuery', |
| | | // color: 'blue', |
| | | // cuIcon: 'searchlist' |
| | | // }, |
| | | |
| | | // { |
| | | // title: '单据出库', |
| | | // name: 'orderOut', |
| | | // color: 'blue', |
| | | // cuIcon: 'video' |
| | | // }, |
| | | // { |
| | | // title: '库位出库', |
| | | // name: 'stoOut', |
| | |
| | | // cuIcon: 'safe' |
| | | // }, |
| | | { |
| | | title: '库存盘点', |
| | | name: 'stoCheck', |
| | | color: 'blue', |
| | | cuIcon: 'safe' |
| | | }, |
| | | { |
| | | title: '退出登录', |
| | | name: 'logOut', |
| | | color: 'grey', |