#
whycq
2022-11-01 4ecea7f67f2cf90ddb0b6d9ff3232770951b99d1
#
9个文件已修改
1个文件已添加
4747 ■■■■■ 已修改文件
pages.json 9 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/basics/pakin.vue 16 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/basics/piking.vue 59 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/basics/stockCheck.vue 81 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/index/index.vue 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/index/index2.vue 186 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/login/login.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
unpackage/dist/dev/app-plus/app-config-service.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
unpackage/dist/dev/app-plus/app-service.js 1936 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
unpackage/dist/dev/app-plus/app-view.js 2442 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages.json
@@ -7,11 +7,18 @@
                "navigationBarTextStyle":"black",
                "navigationBarTitleText": "登录"
            }  
        },{
        },
        {
            "path": "pages/index/index",
            "style": {
                "navigationBarTitleText": "PDA首页"
            }
        },
        {
            "path": "pages/index/index2",
            "style": {
                "navigationBarTitleText": "PDA首页"
            }
        },{
            "path": "pages/basics/demo02",
            "style": {
pages/basics/pakin.vue
@@ -18,7 +18,7 @@
                <view class="square-title">
                    <view class="title-sign"><view class="sign"></view></view>
                    <view class="title-text"><text>是否冻结</text></view>
                    <radio-group @change="cRadio">
                    <radio-group @change="isFrozen">
                        <label>
                            <radio :checked="ck1" style="margin-left: 100rpx;"/><text>是</text>
                        </label>
@@ -160,7 +160,7 @@
                memo: '',
                ck1: false,
                ck2: true,
                yess: false,
                frozen: 0,
            }
        },
        onShow() {
@@ -183,12 +183,17 @@
            getUrl() {
                this.commonUrl = this.baseHttp + this.baseIP + ':' +this.basePORT + "/" +this.baseUrl
            },
            cRadio() {
            // 冻结
            isFrozen() {
                var temp = this.ck1
                this.ck1 = this.ck2
                this.ck2 = temp
                this.yess = this.ck1
                console.log(this.matList);
                this.frozen = this.ck1
                if (this.frozen == true) {
                    this.frozen = 1
                } else {
                    this.frozen = 0
                }
            },
            // barcode input 事件
            barcodeInput() {
@@ -272,6 +277,7 @@
                uni.request({
                    url: that.commonUrl + '/mobile/comb/auth',
                    data: JSON.stringify({
                        frozen: that.frozen,
                        barcode: that.barcode,
                        combMats: that.matList
                    }),
pages/basics/piking.vue
@@ -1,7 +1,7 @@
<template>
    <view>
        <scroll-view scroll-y>
            <view class="pak-seach-box">
            <!-- <view class="pak-seach-box">
                <view class="box-top">
                    <view class="color-block-blue"></view>
                    <text class="title">选择站台</text>
@@ -12,7 +12,7 @@
                        <uni-combox @input="getCheckDetl" emptyTips="暂无数据" :candidates="staNoList" v-model="staNo" placeholder="请选择"></uni-combox>
                    </view>
                </view>
            </view>
            </view> -->
            
            <view class="square-2">
                <view class="square-title">
@@ -21,7 +21,7 @@
                </view>
                <view class="square-content">
                    <view class="content-input">
                        <input v-model="barcode" type="text" placeholder="扫码 / 输入" maxlength="8"placeholder-style="line-height:  85rpx;">
                        <input v-model="barcode" @input="search" type="text" placeholder="扫码 / 输入" maxlength="8"placeholder-style="line-height:  85rpx;">
                        <uni-icons type="closeempty" size="20" color="#dadada" @click="removeBarcode" ></uni-icons>
                    </view>
                </view>
@@ -57,7 +57,7 @@
                    <button class="cu-btn lg" @click="resst()">重置</button>
                </view>
                <view>
                    <button class="cu-btn lg pakin-btn bg-blue" @click="adjust()">转全板出库</button>
                    <button class="cu-btn lg pakin-btn bg-blue" @click="pickingToFull()">转全板出库</button>
                </view>
            </view>
        </scroll-view>
@@ -97,7 +97,7 @@
        data() {
            return {
                commonUrl:null,
                matList:[{}],
                matList:[],
                staNoList:[],
                barcode: '',
                staNo:'',
@@ -124,6 +124,55 @@
            getUrl() {
                this.commonUrl = this.baseHttp + this.baseIP + ':' +this.basePORT + "/" +this.baseUrl
            },
            // 根据托盘码搜索
            search() {
                let that = this
                uni.request({
                    url: that.commonUrl + '/mobile/piking/auth',
                    header: {
                        'token':uni.getStorageSync('token')
                    },
                    data: {barcode: that.barcode},
                    method:'GET',
                    success(result) {
                        let res = result.data
                        if(res.code === 200){
                            for(var i = 0; i < res.data.length;i++){
                                that.matList.push(res.data[i])
                            }
                        }
                    }
                })
            },
            // 转全板出库
            pickingToFull() {
                console.log(this.barcode);
                let that = this
                uni.request({
                    url: that.commonUrl + '/mobile/piking/to/full',
                    header: {
                        'token':uni.getStorageSync('token')
                    },
                    data: {barcode: that.barcode},
                    method: 'GET',
                    success(result){
                        let res = result.data
                        if (res.code === 200) {
                            uni.showToast({title: res.msg, icon: "none", position: 'top'})
                        } else if (res.code == 403) {
                            uni.showToast({title: res.msg, icon: "none", position: 'top'})
                            setTimeout(() => {
                                uni.reLaunch({
                                    url: '../login/login'
                                });
                            }, 1000);
                        } else {
                            uni.showToast({title: res.msg, icon: "none",position: 'top'})
                        }
                    }
                })
            },
            getOutBound() {         // 获取出库口
                let that = this
                uni.request({
pages/basics/stockCheck.vue
@@ -1,7 +1,7 @@
<template>
    <view>
        <scroll-view scroll-y>
            <view class="pak-seach-box">
            <!-- <view class="pak-seach-box">
                <view class="box-top">
                    <view class="color-block-blue"></view>
                    <text class="title">选择站台</text>
@@ -12,7 +12,7 @@
                        <uni-combox @input="getCheckDetl" emptyTips="暂无数据" :candidates="staNoList" v-model="staNo" placeholder="请选择"></uni-combox>
                    </view>
                </view>
            </view>
            </view> -->
            
            <view class="square-2">
                <view class="square-title">
@@ -136,83 +136,30 @@
            const PROJ = uni.getStorageSync('UPROJ');
            this.baseUrl = PROJ
            this.getUrl()
            this.getOutBound();
        },
        methods: {
            // 获取url
            getUrl() {
                this.commonUrl = this.baseHttp + this.baseIP + ':' +this.basePORT + "/" +this.baseUrl
            },
            getOutBound() {         // 获取出库口
                let that = this
                uni.request({
                    url: that.commonUrl + '/available/take/check/site',
                    method: 'POST',
                    header: {
                        'token':uni.getStorageSync('token')
                    },
                    success(result) {
                        var res = result.data
                        if (res.code === 200) {
                            that.staNoList = res.data
                        } else if (res.code == 403) {
                            uni.showToast({title: res.msg, icon: "none", position: 'top'})
                            setTimeout(() => {
                                uni.reLaunch({
                                    url: '../login/login'
                                });
                            }, 1000);
                        } else {
                            uni.showToast({title: res.msg, icon: "none",position: 'top'})
                        }
                    },
                });
            }, // getOutBound
            getCheckDetl() {   // 获取出库口货物信息
                let that = this
                uni.request({
                    url: that.commonUrl + '/mobile/checkDetl/auth',
                    method: 'POST',
                    data: {
                        staNo:that.staNo
                    },
                    header: {
                        'token':uni.getStorageSync('token')
                    },
                    success(result) {
                        var res = result.data
                        console.log(result)
                        if (res.code === 200) {
                            console.log(res.data)
                        } else if (res.code == 403) {
                            uni.showToast({title: res.msg, icon: "none", position: 'top'})
                            setTimeout(() => {
                                uni.reLaunch({
                                    url: '../login/login'
                                });
                            }, 1000);
                        } else {
                            uni.showToast({title: res.msg, icon: "none",position: 'top'})
                        }
                    },
                });
            }, // getCheckDetl
            selectMat() {  // 选择商品
                let that = this
                uni.vibrateShort();
                uni.navigateTo({
                    url: "matSelect",
                    events: {
                        // 为指定事件添加一个监听器,获取被打开页面传送到当前页面的数据
                        // 为指定事件添加一个监听器,获取被打开页面传送到当前页面的数据  另外一个页面传过来的
                        acceptDataFromOpenedPage: function(data) {
                            that.matnr = data.data
                            that.findMat(that.matnr)
                        },
                      },
                      success: function(res) {
                        // 通过eventChannel向被打开页面传送数据
                        res.eventChannel.emit('acceptDataFromOpenerPage', {baseIP:that.baseIP, basePORT:that.basePORT })
                      }
                        // 通过eventChannel向被打开页面传送数据   向另外一个页面传递值的
                        res.eventChannel.emit('commonUrl', {commonUrl:that.commonUrl })
                    },
                });
                that.matnr = ''
            }, // selectMat
@@ -249,6 +196,14 @@
                    }
                });
            }, // findMat
            removeMatnr() {
                this.matnr = ''
                uni.vibrateShort();
                this.focus = false;
                this.$nextTick(function() {
                    this.focus = true;
                });
            },
            revise(item,index) {
                var maxCount = this.matList[index].maxCount
                if (maxCount == undefined ) {
@@ -262,8 +217,9 @@
                // this.show = true
            }, 
            remove(item,index) {
                this.matList.splice(index,1)
                this.matList[index].anfme = 0
                uni.vibrateShort();
                this.$forceUpdate() // 强制刷新
            },
            eject(type) {
                this.type = type
@@ -279,6 +235,7 @@
            confirm() {
                this.matList[this.rowNum].anfme = this.count
                this.$refs.revise.close()
                this.$forceUpdate() // 强制刷新
            },
            resst() {
                this.matList = []
pages/index/index.vue
@@ -47,12 +47,12 @@
                    //     color: 'blue',
                    //     cuIcon: 'goods'
                    // },
                    // {
                    //     title: '库存查询',
                    //     name: 'stockQuery',
                    //     color: 'blue',
                    //     cuIcon: 'searchlist'
                    // },
                    {
                        title: '库存查询',
                        name: 'stockQuery',
                        color: 'blue',
                        cuIcon: 'searchlist'
                    },
                    
                    // {
                    //     title: '单据出库',
pages/index/index2.vue
New file
@@ -0,0 +1,186 @@
<template>
    <view>
        <scroll-view scroll-y>
            <view class="flex justify-end custom-position">
                <view>
                    <image class="img-logo flex solid-bottom " src="../../static/zoneyung.png" mode="widthFix"></image>
                </view>
            </view>
            <view class="nav-list" >
                <navigator hover-class="none" :url="'/pages/basics/' + item.name" class="nav-li" navigateTo :class="'bg-'+item.color"
                 :style="[{animation: 'show ' + ((index+1)*0.2+1) + 's 1'}]" v-for="(item,index) in elements" :key="index" @click="checked()">
                <view class="nav-title">{{item.title}}</view>
                <view class="nav-name">{{item.name}}</view>
                <text :class="'cuIcon-' + item.cuIcon"></text>
                </navigator>
            </view>
        </scroll-view>
    </view>
</template>
<script>
    export default {
        data() {
            return {
                commonUrl:null,
                elements:[
                    // {
                    //     title: '上架管理',
                    //     name: 'putOnSale',
                    //     color: 'blue',
                    //     cuIcon: 'video'
                    // },
                    // {
                    //     title: '下架管理',
                    //     name: 'offLines',
                    //     color: 'blue',
                    //     cuIcon: 'copy'
                    // },
                    {
                        title: '组托入库',
                        name: 'pakin',
                        color: 'blue',
                        cuIcon: 'copy'
                    },
                    // {
                    //     title: '订单组托',
                    //     name: 'order',
                    //     color: 'blue',
                    //     cuIcon: 'goods'
                    // },
                    {
                        title: '库存查询',
                        name: 'stockQuery',
                        color: 'blue',
                        cuIcon: 'searchlist'
                    },
                    // {
                    //     title: '单据出库',
                    //     name: 'orderOut',
                    //     color: 'blue',
                    //     cuIcon: 'video'
                    // },
                    // {
                    //     title: '库位出库',
                    //     name: 'stoOut',
                    //     color: 'blue',
                    //     cuIcon: 'video'
                    // },
                    // {
                    //     title: '商品入库',
                    //     name: 'pakStore',
                    //     color: 'blue',
                    //     cuIcon: 'video'
                    // },
                    {
                        title: '库存盘点',
                        name: 'stockCheck',
                        color: 'blue',
                        cuIcon: 'safe'
                    },
                    {
                        title: '拣料出库',
                        name: 'piking',
                        color: 'blue',
                        cuIcon: 'safe'
                    },
                    // {
                    //     title: '平仓库存盘点',
                    //     name: 'manStoCheck',
                    //     color: 'blue',
                    //     cuIcon: 'safe'
                    // },
                    // {
                    //     title: '平仓库存盘点',
                    //     name: 'manStoCheck',
                    //     color: 'blue',
                    //     cuIcon: 'safe'
                    // },
                    {
                        title: '退出登录',
                        name: 'logOut',
                        color: 'grey',
                        cuIcon: 'exit'
                    },
                    ]
            }
        },
        mounted(){
            const UIP = uni.getStorageSync('UIP');
            this.baseIP = UIP;
            const UPORT = uni.getStorageSync('UPORT');
            this.basePORT = UPORT
            const PROJ = uni.getStorageSync('UPROJ');
            this.baseUrl = PROJ
            this.getUrl()
            this.rq()
        },
        onLoad() {
        },
        methods: {
            // 获取url
            getUrl() {
                this.commonUrl = this.baseHttp + this.baseIP + ':' +this.basePORT + "/" +this.baseUrl
            },
            rq() {
                let that = this
                uni.request({
                    url: that.commonUrl + '/menu/pda/auth',
                    data: {},
                    header: {
                        'token':uni.getStorageSync('token')
                    },
                    method:'POST',
                    success(result) {
                        let res = result.data
                        console.log(res);
                        that.elements = []
                        if (res.code === 200) {
                            if (res.data == undefined || res.data == null || res.data == "") {
                                that.elements.push({title:'退出登录',name:'logOut',color:'grey',cuIcon:'exit'})
                                return
                            }
                            for (var i = 0; i < res.data.length;i ++){
                                if (res.data.length < 0) {
                                    break;
                                }
                                that.elements.unshift({title:res.data[i].name,name:res.data[i].action,color:'blue',cuIcon:'safe'})
                            }
                            that.elements.push({title:'退出登录',name:'logOut',color:'grey',cuIcon:'exit'})
                        } else if (res.code === 403) {
                            uni.showToast({title: res.msg, icon: "none", position: 'top'})
                                setTimeout(() => {
                                    uni.reLaunch({
                                        url: '../login/login'
                                    });
                                }, 1000);
                        } else {
                            uni.showToast({title: res.msg, icon: "none",position: 'top'})
                        }
                    }
                })
            },
            changeImg(){
                console.log(1)
            },
            checked() {
                uni.vibrateShort();
            }
        }
    }
</script>
<style>
    @import "../../colorui/main.css";
    @import "../../colorui/icon.css";
    .custom-position {
        margin: 10rpx 10rpx 50rpx 0rpx;
    }
    .img-logo {
        width: 150rpx;
    }
</style>
pages/login/login.vue
@@ -296,7 +296,7 @@
                            setTimeout(() => {
                                // uni.navigateBack();        //   小程序用这个  把首页路由放第一个
                                uni.reLaunch({
                                    url: '../index/index'
                                    url: '../index/index2'
                                });
                            }, 1000);
                        } else {
unpackage/dist/dev/app-plus/app-config-service.js
@@ -1,8 +1,8 @@
var isReady=false;var onReadyCallbacks=[];
var isServiceReady=false;var onServiceReadyCallbacks=[];
var __uniConfig = {"pages":["pages/login/login","pages/index/index","pages/basics/demo02","pages/basics/demo","pages/demo/index","pages/demo/login","pages/basics/stockCheck","pages/basics/outPakin","pages/basics/offline","pages/basics/checkout","pages/basics/pakin","pages/basics/order","pages/basics/logOut","pages/basics/matQuery","pages/basics/matSelect","pages/basics/stockQuery","pages/basics/saless","pages/basics/putOnSale","pages/basics/offLines","pages/basics/orderOut","pages/basics/stoOut","pages/basics/pakStore","pages/basics/manStoCheck","pages/basics/matSelect2","pages/basics/matSelect3","pages/basics/piking"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"PDA终端","navigationBarBackgroundColor":"#FFFFFF"},"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"中扬WMS","compilerVersion":"3.6.3","entryPagePath":"pages/login/login","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
var __uniRoutes = [{"path":"/pages/login/login","meta":{"isQuit":true},"window":{"navigationBarBackgroundColor":"#FFF","navigationBarTextStyle":"black","navigationBarTitleText":"登录"}},{"path":"/pages/index/index","meta":{},"window":{"navigationBarTitleText":"PDA首页"}},{"path":"/pages/basics/demo02","meta":{},"window":{"navigationBarTitleText":"demo02","navigationBarBackgroundColor":"#409EFF","navigationBarTextStyle":"white"}},{"path":"/pages/basics/demo","meta":{},"window":{"navigationBarTitleText":"模板"}},{"path":"/pages/demo/index","meta":{},"window":{"navigationBarTitleText":"主页","navigationBarBackgroundColor":"#409EFF","navigationBarTextStyle":"white"}},{"path":"/pages/demo/login","meta":{},"window":{"navigationBarTitleText":"登录页"}},{"path":"/pages/basics/stockCheck","meta":{},"window":{"navigationBarTitleText":"库位盘点","enablePullDownRefresh":false}},{"path":"/pages/basics/outPakin","meta":{},"window":{"navigationBarTitleText":"委外入库","enablePullDownRefresh":false}},{"path":"/pages/basics/offline","meta":{},"window":{"navigationBarTitleText":"下线打包","enablePullDownRefresh":false}},{"path":"/pages/basics/checkout","meta":{},"window":{"navigationBarTitleText":"出库确认","enablePullDownRefresh":false}},{"path":"/pages/basics/pakin","meta":{},"window":{"navigationBarTitleText":"组托入库","enablePullDownRefresh":false}},{"path":"/pages/basics/order","meta":{},"window":{"navigationBarTitleText":"订单组托","enablePullDownRefresh":false}},{"path":"/pages/basics/logOut","meta":{},"window":{"navigationBarTitleText":"退出登录","enablePullDownRefresh":false}},{"path":"/pages/basics/matQuery","meta":{},"window":{"navigationBarTitleText":"检索商品","enablePullDownRefresh":false}},{"path":"/pages/basics/matSelect","meta":{},"window":{"navigationBarTitleText":"选择商品","enablePullDownRefresh":false}},{"path":"/pages/basics/stockQuery","meta":{},"window":{"navigationBarTitleText":"库存查询","enablePullDownRefresh":false}},{"path":"/pages/basics/saless","meta":{},"window":{"navigationBarTitleText":"上架管理","enablePullDownRefresh":false}},{"path":"/pages/basics/putOnSale","meta":{},"window":{"navigationBarTitleText":"上架管理","enablePullDownRefresh":false}},{"path":"/pages/basics/offLines","meta":{},"window":{"navigationBarTitleText":"下架管理","enablePullDownRefresh":false}},{"path":"/pages/basics/orderOut","meta":{},"window":{"navigationBarTitleText":"单据出库","enablePullDownRefresh":false}},{"path":"/pages/basics/stoOut","meta":{},"window":{"navigationBarTitleText":"库位出库","enablePullDownRefresh":false}},{"path":"/pages/basics/pakStore","meta":{},"window":{"navigationBarTitleText":"商品入库","enablePullDownRefresh":false}},{"path":"/pages/basics/manStoCheck","meta":{},"window":{"navigationBarTitleText":"平库库位盘点","enablePullDownRefresh":false}},{"path":"/pages/basics/matSelect2","meta":{},"window":{"navigationBarTitleText":"选择商品","enablePullDownRefresh":false}},{"path":"/pages/basics/matSelect3","meta":{},"window":{"navigationBarTitleText":"选择商品","enablePullDownRefresh":false}},{"path":"/pages/basics/piking","meta":{},"window":{"navigationBarTitleText":"拣料出库","enablePullDownRefresh":false}}];
var __uniConfig = {"pages":["pages/login/login","pages/index/index","pages/index/index2","pages/basics/demo02","pages/basics/demo","pages/demo/index","pages/demo/login","pages/basics/stockCheck","pages/basics/outPakin","pages/basics/offline","pages/basics/checkout","pages/basics/pakin","pages/basics/order","pages/basics/logOut","pages/basics/matQuery","pages/basics/matSelect","pages/basics/stockQuery","pages/basics/saless","pages/basics/putOnSale","pages/basics/offLines","pages/basics/orderOut","pages/basics/stoOut","pages/basics/pakStore","pages/basics/manStoCheck","pages/basics/matSelect2","pages/basics/matSelect3","pages/basics/piking"],"window":{"navigationBarTextStyle":"black","navigationBarTitleText":"PDA终端","navigationBarBackgroundColor":"#FFFFFF"},"nvueCompiler":"uni-app","nvueStyleCompiler":"uni-app","renderer":"auto","splashscreen":{"alwaysShowBeforeRender":true,"autoclose":false},"appname":"中扬WMS","compilerVersion":"3.6.3","entryPagePath":"pages/login/login","networkTimeout":{"request":60000,"connectSocket":60000,"uploadFile":60000,"downloadFile":60000}};
var __uniRoutes = [{"path":"/pages/login/login","meta":{"isQuit":true},"window":{"navigationBarBackgroundColor":"#FFF","navigationBarTextStyle":"black","navigationBarTitleText":"登录"}},{"path":"/pages/index/index","meta":{},"window":{"navigationBarTitleText":"PDA首页"}},{"path":"/pages/index/index2","meta":{},"window":{"navigationBarTitleText":"PDA首页"}},{"path":"/pages/basics/demo02","meta":{},"window":{"navigationBarTitleText":"demo02","navigationBarBackgroundColor":"#409EFF","navigationBarTextStyle":"white"}},{"path":"/pages/basics/demo","meta":{},"window":{"navigationBarTitleText":"模板"}},{"path":"/pages/demo/index","meta":{},"window":{"navigationBarTitleText":"主页","navigationBarBackgroundColor":"#409EFF","navigationBarTextStyle":"white"}},{"path":"/pages/demo/login","meta":{},"window":{"navigationBarTitleText":"登录页"}},{"path":"/pages/basics/stockCheck","meta":{},"window":{"navigationBarTitleText":"库位盘点","enablePullDownRefresh":false}},{"path":"/pages/basics/outPakin","meta":{},"window":{"navigationBarTitleText":"委外入库","enablePullDownRefresh":false}},{"path":"/pages/basics/offline","meta":{},"window":{"navigationBarTitleText":"下线打包","enablePullDownRefresh":false}},{"path":"/pages/basics/checkout","meta":{},"window":{"navigationBarTitleText":"出库确认","enablePullDownRefresh":false}},{"path":"/pages/basics/pakin","meta":{},"window":{"navigationBarTitleText":"组托入库","enablePullDownRefresh":false}},{"path":"/pages/basics/order","meta":{},"window":{"navigationBarTitleText":"订单组托","enablePullDownRefresh":false}},{"path":"/pages/basics/logOut","meta":{},"window":{"navigationBarTitleText":"退出登录","enablePullDownRefresh":false}},{"path":"/pages/basics/matQuery","meta":{},"window":{"navigationBarTitleText":"检索商品","enablePullDownRefresh":false}},{"path":"/pages/basics/matSelect","meta":{},"window":{"navigationBarTitleText":"选择商品","enablePullDownRefresh":false}},{"path":"/pages/basics/stockQuery","meta":{},"window":{"navigationBarTitleText":"库存查询","enablePullDownRefresh":false}},{"path":"/pages/basics/saless","meta":{},"window":{"navigationBarTitleText":"上架管理","enablePullDownRefresh":false}},{"path":"/pages/basics/putOnSale","meta":{},"window":{"navigationBarTitleText":"上架管理","enablePullDownRefresh":false}},{"path":"/pages/basics/offLines","meta":{},"window":{"navigationBarTitleText":"下架管理","enablePullDownRefresh":false}},{"path":"/pages/basics/orderOut","meta":{},"window":{"navigationBarTitleText":"单据出库","enablePullDownRefresh":false}},{"path":"/pages/basics/stoOut","meta":{},"window":{"navigationBarTitleText":"库位出库","enablePullDownRefresh":false}},{"path":"/pages/basics/pakStore","meta":{},"window":{"navigationBarTitleText":"商品入库","enablePullDownRefresh":false}},{"path":"/pages/basics/manStoCheck","meta":{},"window":{"navigationBarTitleText":"平库库位盘点","enablePullDownRefresh":false}},{"path":"/pages/basics/matSelect2","meta":{},"window":{"navigationBarTitleText":"选择商品","enablePullDownRefresh":false}},{"path":"/pages/basics/matSelect3","meta":{},"window":{"navigationBarTitleText":"选择商品","enablePullDownRefresh":false}},{"path":"/pages/basics/piking","meta":{},"window":{"navigationBarTitleText":"拣料出库","enablePullDownRefresh":false}}];
__uniConfig.onReady=function(callback){if(__uniConfig.ready){callback()}else{onReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"ready",{get:function(){return isReady},set:function(val){isReady=val;if(!isReady){return}const callbacks=onReadyCallbacks.slice(0);onReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
__uniConfig.onServiceReady=function(callback){if(__uniConfig.serviceReady){callback()}else{onServiceReadyCallbacks.push(callback)}};Object.defineProperty(__uniConfig,"serviceReady",{get:function(){return isServiceReady},set:function(val){isServiceReady=val;if(!isServiceReady){return}const callbacks=onServiceReadyCallbacks.slice(0);onServiceReadyCallbacks.length=0;callbacks.forEach(function(callback){callback()})}});
service.register("uni-app-config",{create(a,b,c){if(!__uniConfig.viewport){var d=b.weex.config.env.scale,e=b.weex.config.env.deviceWidth,f=Math.ceil(e/d);Object.assign(__uniConfig,{viewport:f,defaultFontSize:Math.round(f/20)})}return{instance:{__uniConfig:__uniConfig,__uniRoutes:__uniRoutes,global:void 0,window:void 0,document:void 0,frames:void 0,self:void 0,location:void 0,navigator:void 0,localStorage:void 0,history:void 0,Caches:void 0,screen:void 0,alert:void 0,confirm:void 0,prompt:void 0,fetch:void 0,XMLHttpRequest:void 0,WebSocket:void 0,webkit:void 0,print:void 0}}}});
unpackage/dist/dev/app-plus/app-service.js
Diff too large
unpackage/dist/dev/app-plus/app-view.js
Diff too large