Commit 83fc417e by LJM

css

parent 5473a441
...@@ -3,3 +3,4 @@ ...@@ -3,3 +3,4 @@
/unpackage /unpackage
/*.hbuilderx /*.hbuilderx
/.DS_Store /.DS_Store
/node_modules
\ No newline at end of file
...@@ -11,6 +11,10 @@ ...@@ -11,6 +11,10 @@
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
} }
.icon-a-10cangkucangchu3:before {
content: "\e7a0";
}
.icon-a-10cangkucangchu1:before { .icon-a-10cangkucangchu1:before {
content: "\e79e"; content: "\e79e";
} }
......
...@@ -5,6 +5,26 @@ ...@@ -5,6 +5,26 @@
"navigationBarTitleText": "供应链WMS系统" "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", "path": "pages/scan/index",
"style": { "style": {
"navigationBarTitleText": "扫描" "navigationBarTitleText": "扫描"
...@@ -178,6 +198,11 @@ ...@@ -178,6 +198,11 @@
"text": "首页" "text": "首页"
}, },
{ {
"pagePath": "pages/tallyGoods/exception",
"iconPath": "static/4.png",
"selectedIconPath": "static/4s.png",
"text": "异常"
}, {
"pagePath": "pages/mine/index", "pagePath": "pages/mine/index",
"iconPath": "static/3.png", "iconPath": "static/3.png",
"selectedIconPath": "static/3s.png", "selectedIconPath": "static/3s.png",
......
...@@ -49,17 +49,16 @@ ...@@ -49,17 +49,16 @@
</template> </template>
<script> <script>
import { API } from '@/util/api.js'; import { API } from '@/util/api.js';
import zyGrid from '../../components/zy-grid/zy-grid.vue'; import zyGrid from '../../components/zy-grid/zy-grid.vue';
export default { export default {
data() { data() {
return { return {
is_login: false, is_login: false,
userInfo: {}, userInfo: {},
rawData: '', rawData: '',
gridList: [ gridList: [{
{
name: '快递回单上传', name: '快递回单上传',
iconfont: 'icon-a-juxing1', iconfont: 'icon-a-juxing1',
tips: '' tips: ''
...@@ -128,6 +127,11 @@ export default { ...@@ -128,6 +127,11 @@ export default {
name: '理货确认', name: '理货确认',
iconfont: 'icon-a-10cangkucangchu2', iconfont: 'icon-a-10cangkucangchu2',
tips: '' tips: ''
},
{
name: '新增异常',
iconfont: 'icon-a-10cangkucangchu2',
tips: ''
} }
] ]
}; };
...@@ -241,6 +245,10 @@ export default { ...@@ -241,6 +245,10 @@ export default {
uni.navigateTo({ uni.navigateTo({
url: '/pages/tallyGoods/confirm' url: '/pages/tallyGoods/confirm'
}); });
} else if (item.name == '新增异常') {
uni.navigateTo({
url: '/pages/tallyGoods/addException'
});
} else { } else {
uni.showModal({ uni.showModal({
title: '提示', title: '提示',
...@@ -261,9 +269,9 @@ export default { ...@@ -261,9 +269,9 @@ export default {
components: { components: {
zyGrid zyGrid
} }
}; };
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
@import '../../assets/css/home/index.scss'; @import '../../assets/css/home/index.scss';
</style> </style>
\ No newline at end of file
No preview for this file type
...@@ -208,7 +208,15 @@ const API = { ...@@ -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'
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment