| | |
| | | } |
| | | |
| | | } |
| | | ,{ |
| | | "path" : "pages/tzsk/pakin/locPick", |
| | | "style" : |
| | | { |
| | | "navigationBarTitleText": "平库拣货", |
| | | "enablePullDownRefresh": false |
| | | } |
| | | |
| | | } |
| | | ], |
| | | "globalStyle": { |
| | | "navigationBarTextStyle": "black", |
| | |
| | | url: '/tzsk/pakin/untie' |
| | | }, |
| | | { |
| | | title: '平仓移库', |
| | | title: '平库移库', |
| | | name: 'locChange', |
| | | color: 'cyan', |
| | | // cuIcon: 'pullup', |
| | | url: '/tzsk/pakin/locChage' |
| | | }, |
| | | { |
| | | title: '平库拣货', |
| | | name: 'locChange', |
| | | color: 'cyan', |
| | | // cuIcon: 'pullup', |
| | | url: '/tzsk/pakin/locPick' |
| | | }, |
| | | { |
| | | title: '临时入库', |
| | | name: 'pakin', |
| | | color: 'cyan', |
New file |
| | |
| | | <template> |
| | | <view> |
| | | <view class="box" v-for="item in 10"> |
| | | <view class="box-left"> |
| | | <text class="text"> 库区 </text> |
| | | </view> |
| | | <view class="box-right"> |
| | | <text class="text"> {{item}} </text> |
| | | </view> |
| | | </view> |
| | | </view> |
| | | </template> |
| | | |
| | | <script> |
| | | export default { |
| | | data() { |
| | | return { |
| | | |
| | | } |
| | | }, |
| | | methods: { |
| | | |
| | | } |
| | | } |
| | | </script> |
| | | |
| | | <style> |
| | | .box { |
| | | margin: 16rpx; |
| | | display: flex; |
| | | align-items: stretch; |
| | | |
| | | } |
| | | .box-left { |
| | | height: 80rpx; |
| | | line-height: 80rpx; |
| | | background-color: #499bff; |
| | | background-color: #26edcf; |
| | | color: #F7F6F9; |
| | | } |
| | | .box-right { |
| | | flex: 1; |
| | | display: flex; |
| | | align-items: center; |
| | | background-color: #fff; |
| | | color: #808080; |
| | | } |
| | | .text { |
| | | padding: 10rpx 20rpx; |
| | | } |
| | | </style> |