| | |
| | | "navigationBarTextStyle":"black", |
| | | "navigationBarTitleText": "登录" |
| | | } |
| | | },{ |
| | | }, |
| | | { |
| | | "path": "pages/index/index", |
| | | "style": { |
| | | "navigationBarTitleText": "PDA首页" |
| | | } |
| | | }, |
| | | { |
| | | "path": "pages/index/index2", |
| | | "style": { |
| | | "navigationBarTitleText": "PDA首页" |
| | | } |
| | | },{ |
| | | "path": "pages/basics/demo02", |
| | | "style": { |
| | |
| | | <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> |
| | |
| | | memo: '', |
| | | ck1: false, |
| | | ck2: true, |
| | | yess: false, |
| | | frozen: 0, |
| | | } |
| | | }, |
| | | onShow() { |
| | |
| | | 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() { |
| | |
| | | uni.request({ |
| | | url: that.commonUrl + '/mobile/comb/auth', |
| | | data: JSON.stringify({ |
| | | frozen: that.frozen, |
| | | barcode: that.barcode, |
| | | combMats: that.matList |
| | | }), |
| | |
| | | <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> |
| | |
| | | <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"> |
| | |
| | | </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> |
| | |
| | | <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> |
| | |
| | | data() { |
| | | return { |
| | | commonUrl:null, |
| | | matList:[{}], |
| | | matList:[], |
| | | staNoList:[], |
| | | barcode: '', |
| | | staNo:'', |
| | |
| | | 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({ |
| | |
| | | <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> |
| | |
| | | <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"> |
| | |
| | | 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 }) |
| | | } |
| | | }, |
| | | success: function(res) { |
| | | // 通过eventChannel向被打开页面传送数据 向另外一个页面传递值的 |
| | | res.eventChannel.emit('commonUrl', {commonUrl:that.commonUrl }) |
| | | }, |
| | | |
| | | }); |
| | | that.matnr = '' |
| | | }, // selectMat |
| | |
| | | } |
| | | }); |
| | | }, // 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 ) { |
| | |
| | | // 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 |
| | |
| | | confirm() { |
| | | this.matList[this.rowNum].anfme = this.count |
| | | this.$refs.revise.close() |
| | | this.$forceUpdate() // 强制刷新 |
| | | }, |
| | | resst() { |
| | | this.matList = [] |
| | |
| | | // color: 'blue', |
| | | // cuIcon: 'goods' |
| | | // }, |
| | | // { |
| | | // title: '库存查询', |
| | | // name: 'stockQuery', |
| | | // color: 'blue', |
| | | // cuIcon: 'searchlist' |
| | | // }, |
| | | { |
| | | title: '库存查询', |
| | | name: 'stockQuery', |
| | | color: 'blue', |
| | | cuIcon: 'searchlist' |
| | | }, |
| | | |
| | | // { |
| | | // title: '单据出库', |
New file |
| | |
| | | <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> |
| | |
| | | setTimeout(() => { |
| | | // uni.navigateBack(); // 小程序用这个 把首页路由放第一个 |
| | | uni.reLaunch({ |
| | | url: '../index/index' |
| | | url: '../index/index2' |
| | | }); |
| | | }, 1000); |
| | | } else { |
| | |
| | | |
| | | 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}}}}); |