origanization.vue 514 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <template>
  2. <view class="">
  3. <!-- 组织架构 -->
  4. <!-- 枣泉 -->
  5. <view v-if="mine_code == 'zaoquan'">
  6. <t-o-communication></t-o-communication>
  7. </view>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. // 当前煤矿编码
  15. mine_code:"",
  16. }
  17. },
  18. onLoad() {
  19. // 初始化当前煤矿编码
  20. this.mine_code = uni.getStorageSync('mine_code')
  21. },
  22. methods: {
  23. }
  24. }
  25. </script>
  26. <style lang="scss">
  27. page{
  28. background-color: #F3F8F7;
  29. }
  30. </style>