123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- <template>
- <view class="groundtials-wrap">
- <view class="inventory-wrap">
- <view class="inner-item" v-for="(item,index) in listData" :key="index">
- <view class="inventory-item">
- <view class="shuo-item shuo-once-cont">
- <view class="shuo-label">
- 品名:
- </view>
- <view class="shuo-cont">
- {{item.name_material}}
- </view>
- </view>
- </view>
- <view class="inventory-item">
- <view class="shuo-item">
- <view class="shuo-label">
- 规格:
- </view>
- <view class="shuo-cont">
- {{item.spec}}
- </view>
- </view>
- </view>
- <view class="inventory-item">
- <view class="shuo-item">
- <view class="shuo-label">
- 型号:
- </view>
- <view class="shuo-cont">
- {{item.model}}
- </view>
- </view>
- </view>
- <view class="inventory-item">
- <view class="shuo-item">
- <view class="shuo-label">
- 申请数量:
- </view>
- <view class="shuo-await">
- {{item.yansliang}}
- </view>
- </view>
- <view class="shuo-item">
- <view class="shuo-label">
- 已拣数量:
- </view>
- <view class="shuo-ready">
- {{item.qty}}
- </view>
- </view>
- </view>
- </view>
- <view class="inner-item detais-item" v-for="(item,index) in pinData" :key="index">
- <liu-swipe-action :index="index" @clickItem="clickItem">
- <view class="inventory-item ">
- <view class="shuo-item">
- <view class="shuo-label">
- S N 码:
- </view>
- <view class="shuo-cont">
- {{item.id_lot}}
- </view>
- </view>
- <view class="shuo-item">
- <view class="shuo-label">
- RFID码:
- </view>
- <view class="shuo-cont">
- {{item.rfcode}}
- </view>
- </view>
- </view>
- <view class="inventory-item">
- <view class="shuo-item">
- <view class="shuo-label">
- 批次:
- </view>
- <view class="shuo-cont">
- {{item.lot}}
- </view>
- </view>
- <view class="shuo-item">
- <view class="shuo-label">
- 包装单位:
- </view>
- <view class="shuo-cont">
- {{item.unit}}
- </view>
- </view>
- </view>
- <view class="inventory-item">
- <view class="shuo-item shuo-once-cont">
- <view class="shuo-label">
- 有效期至:
- </view>
- <view class="shuo-cont">
- {{item.date_expire}}
- </view>
- </view>
- </view>
- </liu-swipe-action>
- <view class="index-text">
- {{index+1}}
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {
- listData,
- pinData
- } from './list.js';
- export default {
- data() {
- return {
- data: [],
- listData: [],
- pinData: []
- }
- },
- onLoad() {
- },
- mounted() {
- let dataCont = uni.getStorageSync('BoundetailsCont');
- let data = uni.getStorageSync('outBounddetails');
- this.listData = dataCont;
- this.reqListData({
- id_bill: data[0].id_bill,
- id_material: dataCont[0].id_material
- })
- },
- methods: {
- reqListData(data) {
- this.$http('outbound.detailsContData', data, '加载中').then((res) => {
- if (res.success == "true") {
- if (res.data && res.data.length > 0) {
- this.pinData = res.data;
- }
- }
- })
- },
- //跳转上架详情
- itemDetails(item) {
- uni.navigateTo({
- url: '/pages/groundetials/groundetials',
- success: function(res) {}
- });
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- uni-page-body {
- width: 100%;
- height: 100%;
- }
- .groundtials-wrap {
- width: 100%;
- height: 100%;
- padding: 20rpx;
- box-sizing: border-box;
- background-color: #F1F1F1;
- .inventory-wrap {
- width: 100%;
- border: 2rpx solid #BDBDBD;
- margin-top: 10rpx;
- border-radius: 20rpx;
- .inner-item {
- width: 100%;
- height: 260rpx;
- border-bottom: 2rpx solid #BDBDBD;
- padding: 20rpx 20rpx 20rpx 60rpx;
- box-sizing: border-box;
- position: relative;
- background-color: #fff;
- border-radius: 20rpx;
- position: relative;
- .all-text {
- width: 150rpx;
- height: 40rpx;
- position: absolute;
- right: 20rpx;
- bottom: 25rpx;
- font-family: PingFangSC-regular;
- font-size: 28rpx;
- color: rgba(52, 124, 175, 0.6);
- }
- .inventory-item {
- width: 100%;
- height: 40rpx;
- color: rgba(16, 16, 16, 1);
- font-size: 28rpx;
- text-align: left;
- font-family: PingFangSC-semiBold;
- margin-top: 10rpx;
- display: flex;
- align-items: center;
- .shuo-label {
- color: rgba(16, 16, 16, 1);
- font-size: 28rpx;
- text-align: left;
- font-family: PingFangSC-regular;
- }
- .shuo-cont {
- color: rgba(16, 16, 16, 1);
- font-size: 28rpx;
- text-align: left;
- font-family: PingFangSC-regular;
- margin-left: 10rpx;
- }
- .shuo-item {
- width: 50%;
- height: 100%;
- line-height: 20rpx;
- display: flex;
- align-items: center;
- .shuo-label {
- color: rgba(16, 16, 16, 1);
- font-size: 28rpx;
- text-align: left;
- font-family: PingFangSC-regular;
- }
- .shuo-cont {
- color: rgba(16, 16, 16, 1);
- font-size: 28rpx;
- text-align: left;
- font-family: PingFangSC-regular;
- margin-left: 10rpx;
- }
- .shuo-await {
- color: rgba(255, 191, 107, 1);
- font-size: 28rpx;
- text-align: left;
- font-family: PingFangSC-regular;
- margin-left: 20rpx;
- }
- .shuo-ready {
- color: rgba(162, 239, 77, 1);
- font-size: 28rpx;
- text-align: left;
- font-family: PingFangSC-regular;
- margin-left: 20rpx;
- }
- }
- .shuo-once-cont {
- width: 70%;
- }
- }
- }
- .detais-item {
- height: 200rpx !important;
- position: relative;
- z-index: 10;
- overflow: hidden;
- margin-top: 10rpx;
- .ready-text {
- z-index: 1;
- position: absolute;
- right: -40rpx;
- top: 20rpx;
- width: 150rpx;
- height: 30rpx;
- color: #fff;
- background-color: #3789EA;
- text-align: center;
- line-height: 30rpx;
- font-size: 20rpx;
- font-family: PingFangSC-regular;
- transform: rotate(45deg);
- }
- .index-text {
- z-index: 1;
- width: 40rpx;
- height: 20rpx;
- position: absolute;
- left: 10rpx;
- top: 50%;
- margin-top: -10rpx;
- text-align: center;
- line-height: 20rpx;
- font-size: 30rpx;
- font-family: PingFangSC-regular;
- }
- }
- }
- }
- </style>
|