| | |
| | | <view> |
| | | <scroll-view scroll-y> |
| | | <view class="vve"> |
| | | |
| | | <image src="../../static/zoneyung.png" @click="changeImg" mode="aspectFit" :style="[{animation: 'show ' + ((0+1)*0.2+1) + 's 1'}]"></image> |
| | | </view> |
| | | <view class="content"> |
| | | <navigator hover-class="none" :url="'/pages/basics/' + item.name" class="nav-li" navigateTo :class="'bg-'+item.color" |
| | |
| | | export default { |
| | | data() { |
| | | return { |
| | | elements:[{ |
| | | title: '组托', |
| | | name: 'comb', |
| | | color: 'yellow', |
| | | cuIcon: 'goodsnew' |
| | | }, |
| | | elements:[ |
| | | { |
| | | title: '入库单组托', |
| | | name: 'combPro', |
| | | color: 'olive', |
| | | cuIcon: 'goods' |
| | | }, |
| | | // { |
| | | // title: '出库启动', |
| | | // name: 'matOut', |
| | | // color: 'green', |
| | | // cuIcon: 'video' |
| | | // }, |
| | | { |
| | | title: '库存盘点', |
| | | name: 'stockCheck', |
| | |
| | | cuIcon: 'squarecheck' |
| | | }, |
| | | { |
| | | title: '库存查询', |
| | | name: 'stockQuery', |
| | | color: 'blue', |
| | | cuIcon: 'searchlist' |
| | | title: '拣料途中并板', |
| | | name: 'orderListPickBoard', |
| | | color: 'green', |
| | | cuIcon: 'video' |
| | | }, |
| | | // { |
| | | // title: '库存查询', |
| | | // name: 'stockQuery', |
| | | // color: 'blue', |
| | | // cuIcon: 'searchlist' |
| | | // }, |
| | | { |
| | | title: '退出登录', |
| | | name: 'logOut', |
| | | color: 'grey', |
| | | cuIcon: 'exit' |
| | | }] |
| | | } |
| | | }, |
| | |
| | | |
| | | }, |
| | | methods: { |
| | | |
| | | changeImg(){ |
| | | console.log(1) |
| | | } |
| | | } |
| | | } |
| | | </script> |
| | |
| | | flex-direction: column; |
| | | align-items: center; |
| | | justify-content: center; |
| | | margin-top: -100rpx; |
| | | } |
| | | .vve { |
| | | margin-top: 300rpx; |
| | | display: flex; |
| | | justify-content: center; |
| | | margin-top: -100rpx; |
| | | } |
| | | |
| | | |