提交 8e5b58f9 authored 作者: lidongxu's avatar lidongxu

refactor(promotion/display_schedule_dashboard): 修复:店内执行上报_看板_大区战区分析默认显示的数据不对问题

上级 54456110
...@@ -57,7 +57,10 @@ ...@@ -57,7 +57,10 @@
} }
isLoading.value = false isLoading.value = false
} }
getTableList()
const { proxy } = getCurrentInstance()
const isDaQuZQ = proxy.checkPermi(['promotion:dashboard:list-show'])
getTableList(isDaQuZQ ? '大区战区-分析' : '城市经理-分析')
</script> </script>
<style lang="scss"> <style lang="scss">
......
...@@ -90,6 +90,7 @@ ...@@ -90,6 +90,7 @@
} }
isLoading.value = false isLoading.value = false
} }
getTableList() const isDaQuZQ = proxy.checkPermi(['promotion:dashboard:list-show'])
getTableList(isDaQuZQ ? '大区战区-分析' : '城市经理-分析')
</script> </script>
...@@ -86,6 +86,8 @@ ...@@ -86,6 +86,8 @@
} }
isLoading.value = false isLoading.value = false
} }
getTableList() const { proxy } = getCurrentInstance()
const isDaQuZQ = proxy.checkPermi(['promotion:dashboard:list-show'])
getTableList(isDaQuZQ ? '大区战区-分析' : '城市经理-分析')
</script> </script>
\ No newline at end of file
...@@ -86,7 +86,8 @@ ...@@ -86,7 +86,8 @@
} }
isLoading.value = false isLoading.value = false
} }
getTableList() const isDaQuZQ = proxy.checkPermi(['promotion:dashboard:list-show'])
getTableList(isDaQuZQ ? '大区战区-分析' : '城市经理-分析')
</script> </script>
<style scoped></style> <style scoped></style>
\ No newline at end of file
...@@ -82,7 +82,9 @@ ...@@ -82,7 +82,9 @@
} }
isLoading.value = false isLoading.value = false
} }
getTableList() const { proxy } = getCurrentInstance()
const isDaQuZQ = proxy.checkPermi(['promotion:dashboard:list-show'])
getTableList(isDaQuZQ ? '大区战区-分析' : '城市经理-分析')
</script> </script>
<style scoped <style scoped
......
...@@ -88,7 +88,8 @@ ...@@ -88,7 +88,8 @@
} }
isLoading.value = false isLoading.value = false
} }
getTableList() const isDaQuZQ = proxy.checkPermi(['promotion:dashboard:list-show'])
getTableList(isDaQuZQ ? '大区战区-分析' : '城市经理-分析')
</script> </script>
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论