123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <template>
- <!-- 扫码出库确认页面 -->
- <view class="">
- <view class="header">
- </view>
- <view class="content" style="margin-bottom: 50rpx;">
- <view class="content-one">
- <view>胎号</view>
- <view>物料</view>
- </view>
- <view v-for="(item,index) in datalist" :key="index">
- <view class="content-two">
- <view>{{item.order}}</view>
- <view>{{item.size}}</view>
- </view>
- </view>
- </view>
- <view class="tail">
- 扫码确认
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- datalist: [
- {
- order: '202134103765',
- size: 'SAILUN 185/6R14 SA10',
- sum: '100'
- },
- {
- order: '202134103765',
- size: 'SAILUN 185/6R14 SA10',
- sum: '100'
- },
- {
- order: '202134103765',
- size: 'SAILUN 185/6R14 SA10',
- sum: '100'
- },
- {
- order: '202134103765',
- size: 'SAILUN 185/6R14 SA10',
- sum: '100'
- },
- {
- order: '202134103765',
- size: 'SAILUN 185/6R14 SA10',
- sum: '100'
- },
- {
- order: '202134103765',
- size: 'SAILUN 185/6R14 SA10',
- sum: '100'
- },
- ]
- }
- },
-
- onLoad() {
-
- },
-
- methods: {
-
- },
- }
- </script>
- <style lang="scss" scoped>
- .header {
- width: 100%;
- height: 280rpx;
- background-color: #0094FE;
- }
- .content {
- width: 711rpx;
- // height: 792rpx;
- position: absolute;
- top: 40rpx;
- left: 20rpx;
- background: #FFFFFF;
- box-shadow: 0px 0px 24px 0px rgba(101, 176, 249, 0.41);
- border-radius: 20px;
- }
- .content-one {
- display: flex;
- justify-content: space-between;
- }
- .content-one:nth-child(1) {
- margin-left: 90rpx;
- margin-right: 180rpx;
- font-weight: bold;
- margin-top: 30rpx;
- }
- .content-two {
- display: flex;
- justify-content: space-between;
- margin-top: 30rpx;
- line-height: 115rpx;
- width: 666rpx;
- margin: 0 auto;
- color: #9c9c9c;
- font-size: 28rpx;
- border-bottom: 1rpx solid #E8E8E8;
- }
- .tail {
- width: 678rpx;
- line-height: 83rpx;
- background: #0095FF;
- border-radius: 10rpx;
- position: fixed;
- top: 1100rpx;
- left: 36rpx;
- color: #fff;
- text-align: center;
- }
-
- </style>
|