origanization.vue 609 B

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