Commit 2ce69291 by liangjianmin

feat(home): 添加扫描理货入口页面

- 在 pages.json 中新增扫描理货页面配置
- 在首页 index.vue 的导航列表中加入扫描理货入口
- 新增扫描理货页面的scss样式文件 scanTally/index.scss
- 保持首页其他功能入口无变化
parent 5fce9aaf
......@@ -456,6 +456,11 @@
"style": {
"navigationBarTitleText": "三方送检"
}
}, {
"path": "pages/scanTally/index",
"style": {
"navigationBarTitleText": "扫描理货"
}
}],
"globalStyle": {
"navigationBarTextStyle": "black",
......
......@@ -28,6 +28,12 @@
</view>
<text class="text">理货</text>
</navigator>
<navigator class="box-li column rowCenter verCenter" url="/pages/scanTally/index" hover-class="none">
<view class="box row rowCenter verCenter">
<image src="/static/home/@2x(5).png"></image>
</view>
<text class="text">扫描理货</text>
</navigator>
<!-- <navigator class="box-li column rowCenter verCenter" url="/pages/putaway/pack" hover-class="none">
<view class="box row rowCenter verCenter">
<image src="/static/home/@2x(8).png"></image>
......
<template>
<view class="scanTally">
</view>
</template>
<script>
export default {
data() {
return {};
}
};
</script>
<style scoped lang="scss">
@import '@/assets/css/scanTally/index.scss';
</style>
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