Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
梁建民
/
wmsMin
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
83fc417e
authored
Dec 08, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
css
parent
5473a441
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
56 additions
and
8 deletions
.gitignore
assets/css/font.css
pages.json
pages/home/index.vue
static/iconfont.ttf
util/api.js
.gitignore
View file @
83fc417e
...
...
@@ -3,3 +3,4 @@
/unpackage
/*.hbuilderx
/.DS_Store
/node_modules
\ No newline at end of file
assets/css/font.css
View file @
83fc417e
...
...
@@ -11,6 +11,10 @@
-moz-osx-font-smoothing
:
grayscale
;
}
.icon-a-10cangkucangchu3
:before
{
content
:
"\e7a0"
;
}
.icon-a-10cangkucangchu1
:before
{
content
:
"\e79e"
;
}
...
...
pages.json
View file @
83fc417e
...
...
@@ -5,6 +5,26 @@
"navigationBarTitleText"
:
"供应链WMS系统"
}
},
{
"path"
:
"pages/tallyGoods/exception"
,
"style"
:
{
"navigationBarTitleText"
:
"异常理货"
}
},
{
"path"
:
"pages/tallyGoods/addException"
,
"style"
:
{
"navigationBarTitleText"
:
"新增异常"
}
},
{
"path"
:
"pages/tallyGoods/exceptionSelect"
,
"style"
:
{
"navigationBarTitleText"
:
"选择异常类型"
}
},
{
"path"
:
"pages/tallyGoods/exceptionDetail"
,
"style"
:
{
"navigationBarTitleText"
:
"异常详情"
}
},
{
"path"
:
"pages/scan/index"
,
"style"
:
{
"navigationBarTitleText"
:
"扫描"
...
...
@@ -178,6 +198,11 @@
"text"
:
"首页"
},
{
"pagePath"
:
"pages/tallyGoods/exception"
,
"iconPath"
:
"static/4.png"
,
"selectedIconPath"
:
"static/4s.png"
,
"text"
:
"异常"
},
{
"pagePath"
:
"pages/mine/index"
,
"iconPath"
:
"static/3.png"
,
"selectedIconPath"
:
"static/3s.png"
,
...
...
pages/home/index.vue
View file @
83fc417e
...
...
@@ -49,17 +49,16 @@
</template>
<
script
>
import
{
API
}
from
'@/util/api.js'
;
import
zyGrid
from
'../../components/zy-grid/zy-grid.vue'
;
import
{
API
}
from
'@/util/api.js'
;
import
zyGrid
from
'../../components/zy-grid/zy-grid.vue'
;
export
default
{
export
default
{
data
()
{
return
{
is_login
:
false
,
userInfo
:
{},
rawData
:
''
,
gridList
:
[
{
gridList
:
[{
name
:
'快递回单上传'
,
iconfont
:
'icon-a-juxing1'
,
tips
:
''
...
...
@@ -128,6 +127,11 @@ export default {
name
:
'理货确认'
,
iconfont
:
'icon-a-10cangkucangchu2'
,
tips
:
''
},
{
name
:
'新增异常'
,
iconfont
:
'icon-a-10cangkucangchu2'
,
tips
:
''
}
]
};
...
...
@@ -241,6 +245,10 @@ export default {
uni
.
navigateTo
({
url
:
'/pages/tallyGoods/confirm'
});
}
else
if
(
item
.
name
==
'新增异常'
)
{
uni
.
navigateTo
({
url
:
'/pages/tallyGoods/addException'
});
}
else
{
uni
.
showModal
({
title
:
'提示'
,
...
...
@@ -261,9 +269,9 @@ export default {
components
:
{
zyGrid
}
};
};
</
script
>
<
style
scoped
lang=
"scss"
>
@import
'../../assets/css/home/index.scss'
;
@import
'../../assets/css/home/index.scss'
;
</
style
>
\ No newline at end of file
static/iconfont.ttf
View file @
83fc417e
No preview for this file type
util/api.js
View file @
83fc417e
...
...
@@ -208,7 +208,15 @@ const API = {
/**
* 修改是否查看
*/
changeWatch
:
API_BASE
+
'/supplywechatwms/changeWatch'
changeWatch
:
API_BASE
+
'/supplywechatwms/changeWatch'
,
/**
* 问客数量
*/
getAskNum
:
API_BASE
+
'/supplywechatwms/getAskNum'
,
/**
* 问客列表
*/
askCustomerProblemListV2
:
API_BASE
+
'/supplywechatwms/askCustomerProblemListV2'
}
...
...
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