Commit 88183746 by liangjianmin

css

parent 8856960d
.tally{
}
\ No newline at end of file
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
flex: 1; flex: 1;
height: 177rpx; height: 177rpx;
border-right: 1px solid #e6edf0; border-right: 1px solid #e6edf0;
border-bottomt: 1px solid #e6edf0; border-bottom: 1px solid #e6edf0;
&:nth-of-type(3n) { &:nth-of-type(3n) {
border-right: 1px solid transparent; border-right: 1px solid transparent;
} }
...@@ -83,7 +83,7 @@ ...@@ -83,7 +83,7 @@
box-shadow: 0px 9rpx 10rpx 0px rgba(0, 0, 0, 0.11); box-shadow: 0px 9rpx 10rpx 0px rgba(0, 0, 0, 0.11);
border-radius: 43rpx; border-radius: 43rpx;
margin: 0 auto; margin: 0 auto;
.iconfont { .icon-juxing2 {
font-size: 48rpx; font-size: 48rpx;
color: #ffffff; color: #ffffff;
margin-right: 28rpx; margin-right: 28rpx;
......
...@@ -32,7 +32,7 @@ export default { ...@@ -32,7 +32,7 @@ export default {
methods: { methods: {
gridClick(item, index) { gridClick(item, index) {
//格子菜单点击事件 //格子菜单点击事件
this.$emit('gridClickChange', item) this.$emit('gridClickChange', item);
} }
} }
}; };
...@@ -81,5 +81,8 @@ export default { ...@@ -81,5 +81,8 @@ export default {
.grid-item-4 { .grid-item-4 {
width: calc(100% / 4); width: calc(100% / 4);
} }
.disabled {
color: #9CA8AD !important;
}
} }
</style> </style>
...@@ -66,6 +66,11 @@ ...@@ -66,6 +66,11 @@
"navigationBarTitleText": "作业确认" "navigationBarTitleText": "作业确认"
} }
}, { }, {
"path": "pages/goods/tally",
"style": {
"navigationBarTitleText": "理货列表"
}
}, {
"path": "pages/mine/login", "path": "pages/mine/login",
"style": { "style": {
"navigationBarTitleText": "登录" "navigationBarTitleText": "登录"
......
<template>
<view class="tally">
</view>
</template>
<script>
import { API } from '@/util/api.js';
export default {
data() {
return {
};
},
onShow() {
this.getData();
},
methods: {
getData() {
this.request(API.userInfo, 'POST', {}, false).then(res => {});
}
}
};
</script>
<style scoped lang="scss">
@import '../../assets/css/goods/tally.scss';
</style>
...@@ -68,12 +68,12 @@ export default { ...@@ -68,12 +68,12 @@ export default {
}, },
{ {
name: '上架', name: '上架',
iconfont: 'icon-a-juxing11', iconfont: 'icon-a-juxing11 disabled',
tips: '' tips: ''
}, },
{ {
name: '拣货', name: '拣货',
iconfont: 'icon-juxing4', iconfont: 'icon-juxing4 disabled',
tips: '' tips: ''
}, },
{ {
...@@ -157,6 +157,10 @@ export default { ...@@ -157,6 +157,10 @@ export default {
uni.navigateTo({ uni.navigateTo({
url: '/pages/goods/receiving' url: '/pages/goods/receiving'
}); });
} else if (item.name == '理货作业') {
uni.navigateTo({
url: '/pages/goods/tally'
});
} else if (item.name == '仓内作业') { } else if (item.name == '仓内作业') {
uni.navigateTo({ uni.navigateTo({
url: '/pages/goods/warehouseOperation' url: '/pages/goods/warehouseOperation'
......
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