Commit 88183746 by liangjianmin

css

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