pang.jiabao
21 小时以前 c92e539cd1ceeecc851bddf9c7468081c16dd45e
pda功能初始化
5个文件已修改
37 ■■■■■ 已修改文件
pages/home/home.vue 16 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/mat/matQuery.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/order/orderComb.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/pakin/pakin.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/warehouse/orderList.vue 8 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/home/home.vue
@@ -48,6 +48,13 @@
                        cuIcon: 'pullup',
                        url: '/pakin/pakin'
                    },                    
                    {
                    title: '订单组托',
                    name: 'orderComb',
                    color: 'olive',
                    cuIcon: 'pulldown',
                    url: '/order/orderComb'
                    },
                    // {
                    //     title: '平库组托',
                    //     name: 'putOn',
@@ -69,13 +76,6 @@
                        cuIcon: 'pullup',
                        url: '/warehouse/orderList'
                    },
                    // {
                    //     title: '订单组托',
                    //     name: 'orderComb',
                    //     color: 'olive',
                    //     cuIcon: 'pulldown',
                    //     url: '/order/orderComb'
                    // }
                    // ,
                    // {
                    //     title: '并板入库',
@@ -183,7 +183,7 @@
            if (this.storeId == 2) {
                this.store = '新昌仓'
            }
            this.getAuth()
            // this.getAuth()
        },
        methods: {
            back() { uni.navigateBack({}) },
pages/mat/matQuery.vue
@@ -51,7 +51,7 @@
                    contentnomore: '没有更多'
                },
                // 当前tagId
                tagIdNow: 108
                tagIdNow: 5
            }
        },
        onReachBottom() {
@@ -170,12 +170,12 @@
                        that.tagList = null
                        var res = result.data
                        if (res.code === 200) {
                            if (res.data.records != null && res.data.records.length > 0) {
                                let list = res.data.records
                            if (res.data != null && res.data.length > 0) {
                                let list = res.data
                                that.matList = that.reload ? list : that.matList.concat(list);
                                that.curr = that.curr + 1
                            }
                            if (res.data.records.length == 0) {
                            if (res.data.length == 0) {
                                that.status = 'noMore'
                            }
                            that.baColor = "background-color: #1cbbb4;"
pages/order/orderComb.vue
@@ -401,6 +401,7 @@
                        return;
                    }
                }
                console.log(that.dataList)
                uni.request({
                    url: that.baseUrl + '/mobile/comb/auth',
                    data: JSON.stringify({
pages/pakin/pakin.vue
@@ -34,7 +34,7 @@
                    <uni-icons type="right" color="#c1c1c1"></uni-icons>
                </view>
            </view>
            <view class="item">
<!--             <view class="item">
                <view class="code-decs" style="width: 25vw;">是否满板:</view>
                <radio-group @change="isFullPlt">
                    <label>
@@ -44,7 +44,7 @@
                        <radio :checked="ck2" style="margin-left: 50rpx;"/><text>否</text>
                    </label>
                </radio-group>
            </view>
            </view> -->
        </view>
        <!-- ----------------------------------------------  输入框  ----------------------------------------------------------- -->
        <view class="mat-list-title">
pages/warehouse/orderList.vue
@@ -63,7 +63,15 @@
                    method: 'POST',
                    success(res) {
                        res = res.data
                        if (res.code === 200) {
                        that.menuList = res.data
                        } else if (res.code == 403) {
                            uni.showToast({ title: res.msg, icon: "error", position: 'top' });
                            setTimeout(() => {
                                uni.reLaunch({ url: '../login/login' });
                            }, 1000);
                        }
                    }
                })
            },