123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537 |
- <template>
- <view class="container cart clearfix">
- <view class="record-content-empty" v-if="isEmpty" :style="{'height': windowHeight ? windowHeight - CustomBar+'px' : 'auto'}">
- <view class="record-container clearfix">
- <image class="club-empty-image" src="https://img.caimei365.com/group1/M00/03/B7/Cmis2178OfaAEjhLAABqsz9OXM0847.png" mode="aspectFit"></image>
- <view class="txt">未发货商品已全部取消,无需再发货~</view>
- </view>
- </view>
- <view class="container-cart-main" v-else>
- <view class="container-cart">
- <view class="cart-content" :style="{paddingBottom :isIphoneX ? '130rpx' : '100rpx'}">
- <view class="goods-title">请选择合适的商品数量进行发货</view>
- <view class="goods-list">
- <view class="goods-pros" v-for="(pros,idx) in productsList" :key="idx" >
- <view class="goods-pros-t" @click.stop="ischeck(pros)">
- <!--选择商品-->
- <view class="checkbox-box">
- <button class="checkbox iconfont" :class="[pros.checked ?'icon-gouxuanl':'icon-weigouxuan']"></button>
- </view>
- <view class="pros-img"><image :src="pros.productImage ? pros.productImage:''" alt="" /></view>
- <view class="pros-product">
- <view class="producttitle">{{pros.name}}</view>
- <view class="productspec">规格:{{pros.productUnit ? pros.productUnit : ''}}</view>
- <view class="productspec">商品编码:{{pros.productNo ? pros.productNo : ''}}</view>
- <view class="product-view">
- <view class="view-num">数量:{{pros.num+pros.presentNum}}</view>
- </view>
- <view class="product-view">
- <view class="view-num">已发货:{{pros.shipmentsNum}}</view>
- <view class="view-num">未发货:{{pros.notOutStore-pros.actualCancelNum}}</view>
- </view>
- <view class="product-view">
- <view class="view-num">已退货:{{pros.returnedNum}}</view>
- <view class="view-num">已取消:{{pros.actualCancelNum}}</view>
- </view>
- </view>
- </view>
- <view class="goods-pros-b">
- <view class="productprice">
- <view class="text">本次发货</view>
- <view class="count">
- <view class="number-box">
- <view class="iconfont icon-jianhao" :class="[pros.isReduceNum ? 'disabled':'']" @click="changeCountSub(pros)"></view>
- <input class="btn-input" type="number" maxlength='4' v-model="pros.shipmentCount" @blur="changeNnmber($event,pros)">
- <view class="iconfont icon-jiahao" :class="[pros.isPlusNum ?'disabled':'']" @click="changeCountAdd(pros)"></view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </view>
- <!-- 脚部菜单 -->
- <view class="footer" :style="{paddingBottom :isIphoneX ? '68rpx' : '0rpx'}">
- <view class="footer-le">
- <view class="foot-check checkbox-box" @tap.stop="checkAll()">
- <button class="checkbox iconfont" :class="[isCheckAll?'icon-gouxuan':'icon-weigouxuan']"></button>
- <view class="text">全选</view>
- </view>
- </view>
- <view class="footer-ri" >
- <view class="btn" @tap="toConfirmDeliver">去发货</view>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import authorize from '@/common/config/authorize.js'
- import { mapState,mapMutations } from 'vuex';
-
- export default{
- data(){
- return{
- isEmpty:false,
- CustomBar:this.CustomBar,// 顶部导航栏高度
- isIphoneX:this.$store.state.isIphoneX,
- shopOrderId:'',
- productsList:[],//发货的商品
- isCheckAll:false,//是否全选
- scrollHeight: '',
- windowHeight: '',
- }
- },
- onLoad(option){
- this.shopOrderId = option.shopOrderId
- this.setScrollHeight()
- this.initShopOrderShipmentsInfo();
- },
- computed: {
- ...mapState(['hasLogin','userInfo'])
- },
- methods:{
- initShopOrderShipmentsInfo(){//初始化
- this.ShopService.ShopOrderShipmentsInfo({ shopOrderId : this.shopOrderId }).then(response =>{
- if( response.data.orderProductList.length>0){
- let orderProductList = response.data.orderProductList
- let elObject = {}
- let isReduceNum = false
- let creatProductList = []
- this.isEmpty = false
- orderProductList.forEach(el =>{
- let uninNum = el.notOutStore - el.actualCancelNum//未发货数量
- if(uninNum == 1){
- isReduceNum = true
- }else{
- isReduceNum = false
- }
- elObject = {
- shipmentCount:uninNum,
- isReduceNum:isReduceNum,
- checked:false
- }
- creatProductList.push(Object.assign({},el,elObject))
- })
- this.productsList = creatProductList
- console.log(this.productsList)
- }else{
- this.isEmpty = true
- }
- }).catch(error =>{
- this.$util.msg(error.msg,2000);
- })
-
- },
- setScrollHeight() {
- const {windowHeight, pixelRatio} = wx.getSystemInfoSync();
- this.windowHeight = windowHeight - 1;
- this.scrollHeight = windowHeight - 1;
- },
- ischeck(pro){//为未选中的时候改变为true,反之为true
- pro.checked = !pro.checked;
- this.updateCheckAllBtn();
- },
- updateCheckAllBtn() {// 全选勾选判断
- let goodsCheckedLength = 0,
- productsList = this.productsList;
- productsList.forEach(item => {
- if(item.checked) { goodsCheckedLength++; }
- })
- this.isCheckAll = goodsCheckedLength === productsList.length;
- },
- updateBothCheckBtn() {//
- this.productsList.forEach((item)=>{
- item.checked = this.isCheckAll ;
- })
- },
- checkAll(){//全选方法内调用方法
- this.isCheckAll = !this.isCheckAll;
- this.updateBothCheckBtn();
- },
- changeCountAdd(pros){//商品数量加加
- let uninNum = pros.notOutStore-pros.actualCancelNum//未发货数量
- if(pros.shipmentCount == uninNum){
- this.isNoneNum =true
- return
- }else{
- pros.shipmentCount++
- this.isNoneNum =false
- }
- },
- changeCountSub(pros){//商品数量减减
- let uninNum = pros.notOutStore-pros.actualCancelNum//未发货数量
- if(pros.shipmentCount == 1){
- pros.shipmentCount = pros.shipmentCount
- return
- }else{
- pros.shipmentCount--
- }
- },
- changeNnmber(e,pros){//输入商品数量更新
- let uninNum = pros.notOutStore-pros.actualCancelNum//未发货数量
- let _value = e.detail.value;
- if(!this.$api.isNumber(_value) || uninNum == 1){
- pros.shipmentCount = uninNum
- }else if(_value > uninNum){
- pros.shipmentCount = uninNum
- }else{
- pros.shipmentCount = e.detail.value
- }
- },
- toConfirmDeliver(){//添加物流页面
- let setProductList=[];
- this.productsList.forEach(el=>{
- if(el.checked){
- let elObject = {
- orderProductId:el.orderProductID.toString(),
- num:el.shipmentCount.toString()
- }
- setProductList.push(elObject)
- }
- })
- if(setProductList == ''){
- this.$util.msg("请先选择商品~",2000);
- return
- }else{
- this.$api.navigateTo(`/supplier/pages/deliver/add-logistics?type=add&shopOrderId=${this.shopOrderId}&data=${JSON.stringify(setProductList)}`)
- }
- },
- },
- onPullDownRefresh() {//下拉刷新
- this.initShopOrderShipmentsInfo()
- uni.stopPullDownRefresh()
- },
- onShow(){
-
- },
- }
- </script>
- <style lang="scss">
- page{
- background: #f7f7f7;
- height: auto;
- }
- .record-content-empty{
- width: 100%;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- .record-container{
- width: 465rpx;
- height: auto;
- image{
- width: 400rpx;
- height: 400rpx;
- display: block;
- margin: 0 auto;
- }
- .txt{
- font-size: $font-size-28;
- text-align: center;
- color: #333;
- line-height: 30rpx;
- margin-bottom: 20rpx;
- }
- .btn{
- width: 400rpx;
- height: 80rpx;
- background: $btn-confirm;
- border-radius: 10rpx;
- line-height: 80rpx;
- font-size: $font-size-28;
- text-align: center;
- color: #FFFFFF;
- }
- }
- }
- .cart-content{
- position: relative;
- }
- .goods-title{
- width: 702rpx;
- padding: 0 24rpx;
- height: 80rpx;
- line-height: 80rpx;
- text-align: left;
- font-size: $font-size-28;
- color: $color-system;
- background-color: rgba(225, 86, 22, 0.17);
- }
- .checkbox-box{
- display: flex;
- align-items: center;
- .checkbox{
- display: flex;
- margin: 0;
- padding: 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- box-sizing: border-box;
- text-align: center;
- text-decoration: none;
- border-radius: 0;
- -webkit-tap-highlight-color: transparent;
- overflow: hidden;
- background-color:#FFFFFF;
- font-size: 36rpx;
- color:$color-system;
- }
- &.disabled{
- .checkbox{
- color:#999999
- }
- }
- .text{
- font-size: $font-size-24;
- margin-left: 10rpx;
- }
- }
- .goods-list{
- width: 100%;
- height: auto;
- background-color: #F7F7F7;
- margin-top: 24rpx;
- .goods-item{
- width: 702rpx;
- padding: 0 24rpx;
- background: #FFFFFF;
- margin-bottom: 24rpx;
- }
- .goods-pros{
- width: 702rpx;
- padding: 0 24rpx;
- background: #FFFFFF;
- margin-bottom: 24rpx;
- }
- .goods-pros-t{
- display: flex;
- width: 100%;
- height: auto;
- padding:20rpx 0;
- .checkbox-box{
- padding: 10rpx;
- }
- .pros-img{
- width: 210rpx;
- height: 210rpx;
- border-radius: 10rpx;
- margin:0 20rpx;
- border:1px solid #f3f3f3;
- image{
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- }
- }
- }
- .goods-pros-b{
- width:622rpx;
- height: 80rpx;
- margin-left: 84rpx;
- border-top: 1px solid #F7F7F7;
- position: relative;
- .productprice{
- height: 48rpx;
- width: 100%;
- margin-top: 15rpx;
- .text{
- line-height: 48rpx;
- float: left;
- color: $text-color;
- font-size: $font-size-28;
- }
- .count{
- height: 100%;
- float: right;
- position: relative;
- &.show{
- display: block;
- }
- &.none{
- display: none;
- }
- .number-box{
- display: flex;
- justify-content: center;
- align-items: center;
- .iconfont{
- font-size: $font-size-24;
- padding:0 18rpx;
- color: $text-color;
- text-align: center;
- line-height: 48rpx;
- font-weight: bold;
- background-color: #ffe6dc;
- &.disabled{
- color: #999999;
- }
- }
- .btn-input{
- width: 62rpx;
- height: 48rpx;
- line-height: 48rpx;
- background: #F8F8F8;
- border-radius: 4rpx;
- text-align: center;
- font-size: $font-size-24;
- }
- }
- .uni-numbox{
- position: absolute;
- left: 45rpx;
- bottom: 0;
- .uni-numbox-minus, .uni-numbox-plus{
- width: 50rpx;
- line-height: 40rpx;
- }
- .uni-numbox-value {
- font-size: $font-size-28;
- width: 60rpx;
- }
- }
- }
- }
- }
- .pros-product{
- width: 402rpx;
- height: 100%;
- line-height: 36rpx;
- font-size: $font-size-28;
- position: relative;
- .producttitle{
- width: 100%;
- display: inline-block;
- height: auto;
- text-overflow:ellipsis;
- display: -webkit-box;
- word-break: break-all;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- margin-bottom: 8rpx;
- }
- .productspec{
- height: 44rpx;
- color: #999999;
- line-height: 44rpx;
- font-size: $font-size-26;
- }
- .product-view{
- width: 100%;
- height: auto;
- display: flex;
- .view-num{
- flex: 1;
- text-align: left;
- font-size: $font-size-26;
- color: #666666;
- line-height: 44rpx;
- }
- }
- }
- }
- .footer{
- width: 100%;
- background-color: #FFFFFF;
- height: 110rpx;
- position: fixed;
- bottom: 0rpx;
- z-index: 100;
- .footer-le{
- width: 450rpx;
- height: 100%;
- padding:0 30rpx;
- float: left;
- .text{
- font-weight: bold;
- }
- .foot-check{
- width: 100rpx;
- float: left;
- line-height: 110rpx;
- font-size: $font-size-24;
- .checkbox{
- width: 40rpx;
- text-align: center;
- }
- .text{
- width: 60rpx;
- float: right;
- }
- }
- .foot-check-delbtn{
- float: left;
- .delBtn{
- margin: 0;
- padding: 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- box-sizing: border-box;
- font-size: $font-size-24;
- text-align: center;
- text-decoration: none;
- border-radius: 0;
- -webkit-tap-highlight-color: transparent;
- overflow: hidden;
- background-color:#FFFFFF;
- color: #FF2A2A;
- padding: 0 24rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- line-height: 110rpx;
- font-weight: bold;
- &.none{
- display: none;
- }
- }
- }
- .sum{
- font-size: $font-size-28;
- line-height: 110rpx;
- color: $text-color;
- display: flex;
- justify-content: flex-end;
- .money{
- color: #FF2A2A;
- }
- .money-sign{
- font-size: $font-size-24;
- color: #FF2A2A;
- }
- }
- }
- .footer-ri{
- width: 200rpx;
- height: 64rpx;
- background:linear-gradient(135deg,rgba(242,143,49,1) 0%,rgba(225,86,22,1) 100%);
- float: right;
- display: flex;
- justify-content: space-between;
- align-items: center;
- z-index: 999;
- margin-top: 20rpx;
- margin-right: 24rpx;
- border-radius: 32rpx;
- &.none{
- display: none;
- }
- .btn{
- width: 200rpx;
- height: 64rpx;
- font-size: $font-size-28;
- line-height: 64rpx;
- color: #FFFFFF;
- display: flex;
- justify-content: center;
- align-items: center;
- }
- }
- }
- </style>
|