Commit 2f35dc51 by LJM

入库理货

parent e750f4ab
.tally-index {
height: 100%;
background-color: #f00;
}
......@@ -184,6 +184,11 @@
"style": {
"navigationBarTitleText": "手动合箱"
}
}, {
"path": "pages/tally/index",
"style": {
"navigationBarTitleText": "入库理货"
}
}],
"globalStyle": {
"navigationBarTextStyle": "black",
......
......@@ -132,6 +132,11 @@
name: '新增异常',
iconfont: 'icon-jinggao1',
tips: ''
},
{
name: '入库理货',
iconfont: 'icon-jinggao1',
tips: ''
}
]
};
......@@ -259,6 +264,10 @@
uni.navigateTo({
url: '/pages/tallyGoods/addException'
});
} else if (item.name == '入库理货') {
uni.navigateTo({
url: '/pages/tally/index'
});
} else {
uni.showModal({
title: '提示',
......
<template>
<view class="tally-index">
</view>
</template>
<script>
export default {
data() {
return {
};
},
onLoad(option) {
},
onShow() {
},
methods: {
}
};
</script>
<style scoped lang="scss">
@import '@/assets/css/tally/index.scss';
</style>
\ No newline at end of file
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