origanization.vue 478 B

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