123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <template>
- <!-- 扫码出库确认页面 -->
- <view class="">
- <view class="header">
- </view>
- <view class="content">
- <view class="content-one">
- <view>胎号</view>
- <view>物料</view>
- <view>预计奖励</view>
- </view>
- <view v-for="(item,index) in datalist" :key="index">
- <view class="content-two">
- <view>{{item.title}}</view>
- <view>{{item.type}}</view>
- <view>{{item.money}}元</view>
- </view>
- </view>
-
- <view class="content-three">
- <view>
- 合计:21元
- </view>
- </view>
- <view class="content-four">
- 注:请完善请完善请完善请完善请完善请完善请完善
- </view>
- </view>
-
- <view class="tail">
- 扫码确认
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- datalist: [
- {
- title: '202134103765',
- type: '165/60r1475hb h15bgbl',
- money: '3'
- },
- {
- title: '202134103765',
- type: '165/60r1475hb h15bgbl',
- money: '3'
- },
- {
- title: '202134103765',
- type: '165/60r1475hb h15bgbl',
- money: '3'
- },
- {
- title: '202134103765',
- type: '165/60r1475hb h15bgbl',
- money: '3'
- },
- {
- title: '202134103765',
- type: '165/60r1475hb h15bgbl',
- money: '3'
- },
- {
- title: '202134103765',
- type: '165/60r1475hb h15bgbl',
- money: '3'
- },
-
- ]
- }
- },
-
- onLoad() {
-
- },
-
- methods: {
-
- },
- }
- </script>
- <style lang="scss" scoped>
- .header {
- width: 100%;
- height: 280rpx;
- background-color: #0094FE;
- }
- .content {
- width: 711rpx;
- // height: 852rpx;
- 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: 50rpx;
- 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;
- }
- .content-two>view:nth-child(2) {
- width: 240rpx;
- line-height: 53rpx;
- text-align: center;
- margin-right: 100rpx;
- }
- .content-two>view:nth-child(3) {
- color: #149EE2;
- margin-right: 50rpx;
- }
- .tail {
- width: 678rpx;
- line-height: 83rpx;
- background: #0095FF;
- border-radius: 10rpx;
- position: fixed;
- top: 1100rpx;
- left: 36rpx;
- color: #fff;
- text-align: center;
- }
-
- .content-three>view:nth-child(1) {
- margin-left: 500rpx;
- line-height: 80rpx;
- font-weight: bolder;
- }
- .content-four {
- color: #acacac;
- font-size: 24rpx;
- margin-top: 30rpx;
- margin-left: 20rpx;
- margin-bottom: 50rpx;
- }
-
- </style>
|