Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
梁建民
/
wmsApp
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
8c21b5de
authored
Apr 25, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
js
parent
a1833f02
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
64 additions
and
50 deletions
manifest.json
pages/picking/index.vue
pages/picking/me.vue
pages/picking/sort.vue
util/api.js
manifest.json
View file @
8c21b5de
{
"name"
:
"wmsApp"
,
"appid"
:
"__UNI__655E80D"
,
"description"
:
""
,
"versionName"
:
"1.0.0"
,
"versionCode"
:
"100"
,
"transformPx"
:
false
,
"name"
:
"wmsApp"
,
"appid"
:
"__UNI__655E80D"
,
"description"
:
""
,
"versionName"
:
"1.0.0"
,
"versionCode"
:
"100"
,
"transformPx"
:
false
,
/*
5
+App特有相关
*/
"app-plus"
:
{
"usingComponents"
:
true
,
"nvueStyleCompiler"
:
"uni-app"
,
"compilerVersion"
:
3
,
"splashscreen"
:
{
"alwaysShowBeforeRender"
:
true
,
"waiting"
:
true
,
"autoclose"
:
true
,
"delay"
:
0
"app-plus"
:
{
"usingComponents"
:
true
,
"nvueStyleCompiler"
:
"uni-app"
,
"compilerVersion"
:
3
,
"splashscreen"
:
{
"alwaysShowBeforeRender"
:
true
,
"waiting"
:
true
,
"autoclose"
:
true
,
"delay"
:
0
},
/*
模块配置
*/
"modules"
:
{},
"modules"
:
{},
/*
应用发布信息
*/
"distribute"
:
{
"distribute"
:
{
/*
android打包配置
*/
"android"
:
{
"permissions"
:
[
"android"
:
{
"permissions"
:
[
"<uses-permission android:name=
\"
android.permission.CHANGE_NETWORK_STATE
\"
/>"
,
"<uses-permission android:name=
\"
android.permission.MOUNT_UNMOUNT_FILESYSTEMS
\"
/>"
,
"<uses-permission android:name=
\"
android.permission.VIBRATE
\"
/>"
,
...
...
@@ -41,47 +41,47 @@
]
},
/*
ios打包配置
*/
"ios"
:
{
"dSYMs"
:
false
"ios"
:
{
"dSYMs"
:
false
},
/*
SDK配置
*/
"sdkConfigs"
:
{
"ad"
:
{}
"sdkConfigs"
:
{
"ad"
:
{}
}
},
"nvueLaunchMode"
:
""
"nvueLaunchMode"
:
""
},
/*
快应用特有相关
*/
"quickapp"
:
{},
"quickapp"
:
{},
/*
小程序特有相关
*/
"mp-weixin"
:
{
"appid"
:
"wx61a41a064fa2fb3c"
,
"setting"
:
{
"urlCheck"
:
false
,
"postcss"
:
true
,
"es6"
:
tru
e
,
"minified"
:
true
"mp-weixin"
:
{
"appid"
:
"wx61a41a064fa2fb3c"
,
"setting"
:
{
"urlCheck"
:
false
,
"postcss"
:
true
,
"es6"
:
fals
e
,
"minified"
:
true
},
"usingComponents"
:
true
"usingComponents"
:
true
},
"mp-alipay"
:
{
"usingComponents"
:
true
"mp-alipay"
:
{
"usingComponents"
:
true
},
"mp-baidu"
:
{
"usingComponents"
:
true
"mp-baidu"
:
{
"usingComponents"
:
true
},
"mp-toutiao"
:
{
"usingComponents"
:
true
"mp-toutiao"
:
{
"usingComponents"
:
true
},
"uniStatistics"
:
{
"enable"
:
false
"uniStatistics"
:
{
"enable"
:
false
},
"vueVersion"
:
"2"
,
"quickapp-webview"
:
{
"icon"
:
"wms"
,
"package"
:
"com.liexin.wms"
,
"versionName"
:
"1.0"
,
"minPlatformVersion"
:
"1.0"
"vueVersion"
:
"2"
,
"quickapp-webview"
:
{
"icon"
:
"wms"
,
"package"
:
"com.liexin.wms"
,
"versionName"
:
"1.0"
,
"minPlatformVersion"
:
"1.0"
},
"fallbackLocale"
:
"zh-Hans"
"fallbackLocale"
:
"zh-Hans"
}
\ No newline at end of file
pages/picking/index.vue
View file @
8c21b5de
...
...
@@ -18,7 +18,7 @@
</view>
</view>
<view
class=
"list row bothSide"
v-if=
"list.length > 0"
>
<navigator
class=
"box"
v-for=
"(item, index) in list"
:key=
"index"
:url=
"'/pages/picking/sort?stock_out_id=' + item.stock_out_id"
hover-class=
"none"
>
<navigator
class=
"box"
v-for=
"(item, index) in list"
:key=
"index"
:url=
"'/pages/picking/sort?stock_out_id=' + item.stock_out_id
+ '&stock_out_sn=' + item.stock_out_sn
"
hover-class=
"none"
>
<view
class=
"text-item row verCenter"
>
<text
class=
"label"
>
出库单号:
</text>
<text
class=
"t1"
>
{{
item
.
stock_out_sn
}}
</text>
...
...
pages/picking/me.vue
View file @
8c21b5de
...
...
@@ -59,6 +59,7 @@
<
script
>
import
{
API
}
from
'@/util/api.js'
;
import
debounce
from
'lodash/debounce'
;
export
default
{
data
()
{
return
{
...
...
pages/picking/sort.vue
View file @
8c21b5de
This diff is collapsed.
Click to expand it.
util/api.js
View file @
8c21b5de
...
...
@@ -68,10 +68,22 @@ const API = {
* */
getNoTakeList
:
API_BASE
+
'/api/stockOut/getNoTakeList'
,
/**
* 拣货-
锁库明细
列表
* 拣货-
拣货
列表
* */
getLockedList
:
API_BASE
+
'/api/stockOut/getLockedList'
,
/**
* 拣货-容器列表
* */
getLockedContainerList
:
API_BASE
+
'/api/stockOut/getLockedContainerList'
,
/**
* 拣货-货品拣货
* */
pick
:
API_BASE
+
'/api/stockOut/pick'
,
/**
* 拣货-批量拣货完成
* */
makeMultiPickingFinish
:
API_BASE
+
'/api/stockOut/makeMultiPickingFinish'
,
/**
* 上传文件
* */
upload
:
API_BASE_LIEXIN
+
'/oss/upload'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment