123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <template>
- <view class="replenishment-detail-wrap" :style="`backgroundImage:linear-gradient(180deg, ${$config('primaryColor')}, #F5F6F7 12%)`">
- <view class="replenishment-detail-body">
- <view class="head-info" v-if="basicInfoData">
- <view class="states">
- <view>
- <u-icon :name="pageType=='success'?'icon_complete':'icon_cancel'" custom-prefix="iscm-icon" size="48"></u-icon>
- <text>{{pageType=='success'?'已完成':'已取消'}}</text>
- </view>
- </view>
- <view>
- <view class="label"><u-icon name="icon_order" custom-prefix="iscm-icon" size="32"></u-icon><text>补货单号</text></view>
- <view class="info-txt">{{basicInfoData.replenishBillNo || '--'}}</view>
- </view>
- <view>
- <view class="label"><u-icon name="ison_shelf" custom-prefix="iscm-icon" size="32"></u-icon><text>货架名称</text></view>
- <view class="info-txt">{{basicInfoData.shelfInfo&&basicInfoData.shelfInfo.shelfName || '--'}}</view>
- </view>
- <view v-if="pageType=='success'">
- <view class="label"><u-icon name="icon_delivery" custom-prefix="iscm-icon" size="32"></u-icon><text>配送方式</text></view>
- <view class="info-txt">{{basicInfoData.dispatchTypeDictValue || '--'}}</view>
- </view>
- <view v-if="pageType=='success'">
- <view class="label"><u-icon name="icon_remark" custom-prefix="iscm-icon" size="32"></u-icon><text>出库备注</text></view>
- <view class="info-txt">{{basicInfoData.remarks || '--'}}</view>
- </view>
- </view>
- <view class="part-list">
- <!-- 补货产品 -->
- <partList :list="partList" title="补货产品" model="view" :fromPage="pageType=='success'?'replenishmentDetail':'replenishmentDetailc'" ref="partList" noDataText="暂无产品"></partList>
- </view>
- </view>
- </view>
- </template>
- <script>
- import { shelfReplenishDetail, shelfReplenishDetailList, shelfReplenishPutStock } from '@/api/shelfReplenish'
- import partList from '@/pages/common/partList.vue'
- export default {
- components: { partList },
- data() {
- return {
- replenishBillSn: '',
- basicInfoData:null,
- partList: [],
- customStyle: {
- borderRadius:'100rpx',
- fontSize:'30rpx',
- background: this.$config('primaryColor')
- },
- pageType: ''
- }
- },
- onReady() {
- uni.setNavigationBarColor({
- frontColor: '#ffffff',
- backgroundColor: this.$config('primaryColor')
- })
- },
- onLoad(option) {
- this.replenishBillSn = option.sn
- this.pageType = option.type
- this.getDetail()
- this.getPartList()
- },
- methods: {
- // 查询详情
- getDetail(){
- shelfReplenishDetail({ sn: this.replenishBillSn }).then(res => {
- if(res.status == 200){
- this.basicInfoData = res.data || null
- }else{
- this.basicInfoData = null
- }
- })
- },
- // 查询列表
- getPartList(){
- const _this = this
- shelfReplenishDetailList({ replenishBillSn: this.replenishBillSn }).then(res => {
- if(res.status == 200 && res.data){
- res.data.map(item =>{
- item.confirmQty = item.confirmQty ? Number(item.confirmQty) : 0
- item.putQty = item.confirmQty ? Number(item.confirmQty) : 0
- })
- this.partList = res.data || []
- }else{
- this.partList = []
- }
- })
- }
- }
- }
- </script>
- <style lang="less">
- .replenishment-detail-wrap{
- position: relative;
- width: 100%;
- height: 100%;
- overflow: hidden;
- .replenishment-detail-body{
- padding: 0 30rpx;
- height: 100%;
- overflow: auto;
- > view{
- padding: 10rpx 25rpx;
- background-color: #fff;
- margin-bottom: 20rpx;
- border-radius: 25rpx;
- box-shadow: 2rpx 3rpx 5rpx #eee;
- }
- .head-info{
- .states{
- border: 0;
- padding: 20rpx 0;
- > view{
- color: #191919;
- text-align: center;
- font-size: 40rpx;
- text{
- margin-left: 20rpx;
- }
- }
- }
- .info-txt{
- word-break: break-word;
- }
- font-size: 30rpx;
- > view{
- display: flex;
- border-bottom: 2rpx solid #f5f5f5;
- padding: 20rpx 0;
- > view:last-child{
- flex-grow: 1;
- width: 80%;
- }
- &:last-child{
- border:0;
- }
- }
- .label{
- display: flex;
- align-items: center;
- width: 220rpx;
- height: 44rpx;
- color: #7C7D7E;
- text{
- margin-left: 10rpx;
- }
- }
- }
- }
- .replenishment-detail-footer{
- padding: 26upx 32upx 30upx;
- background-color: #fff;
- position: fixed;
- left: 0;
- bottom: 0;
- width: 100%;
- box-shadow: 3px 1px 7px #eee;
- }
- }
- </style>
|