Commit 8e4b48d7 by liangjianmin

fix(scanTally): 修正扫码理货页面标题显示错误

- 修改pages.json中扫码理货页面的navigationBarTitleText为“扫码理货”
- 将理货记录按钮标题从“理货记录”添加到扫码理货页面的app-plus配置中
- 修复扫码理货页面标题与功能不符的问题
parent e7cadc67
Showing with 20 additions and 1 deletions
......@@ -459,7 +459,19 @@
}, {
"path": "pages/scanTally/index",
"style": {
"navigationBarTitleText": "扫描理货"
"navigationBarTitleText": "扫码理货",
"app-plus": {
"titleNView": {
"buttons": [{
"index": "0",
"text": "理货记录",
"fontSize": "15px",
"color": "#1969F9",
"float": "right",
"width": "100px"
}]
}
}
}
}],
"globalStyle": {
......
......@@ -570,6 +570,13 @@
}
}
},
onNavigationBarButtonTap(e) {
if (e.index == 0) {
uni.navigateTo({
url: '/pages/tallyReceive/record'
});
}
},
methods: {
/**
* 搜索输入防抖处理
......
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