Commit 151be183 authored by jyx's avatar jyx

代码优化

parent 2b43b53b
...@@ -126,7 +126,17 @@ ...@@ -126,7 +126,17 @@
}, },
computed: { computed: {
showEmpty: function() { showEmpty: function() {
return isEmpty(this.dataList); console.log(this.dataList)
if (isEmpty(this.dataList)) {
return true
} else {
if (typeof this.dataList == 'object') {
if (this.dataList.list != undefined) {
return isEmpty(this.dataList.list)
}
}
}
return false
}, },
scrollStyle: function() { scrollStyle: function() {
return { return {
......
...@@ -20,9 +20,10 @@ ...@@ -20,9 +20,10 @@
}, },
methods: { methods: {
goWareHouse() { goWareHouse() {
uni.switchTab({ uni.$emit('goWareHouse')
url: '/pages/warehouse/warehouse' // uni.switchTab({
}); // url: '/pages/warehouse/warehouse'
// });
} }
}, },
} }
......
...@@ -86,6 +86,11 @@ ...@@ -86,6 +86,11 @@
mounted() { mounted() {
// 渲染完成 初始化首页数据 // 渲染完成 初始化首页数据
this.loadComponentData(); this.loadComponentData();
let that = this
uni.$on('goWareHouse', function(data) {
that.tabChange(1)
})
}, },
methods: { methods: {
tabChange(index) { tabChange(index) {
......
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 to comment