production.vue 623 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <view>
  3. <!-- 宁东运营部 -->
  4. <view v-if="mine_code == 'ningdongyunying'">
  5. <t-p-ningdongyunying></t-p-ningdongyunying>
  6. </view>
  7. <!-- 石槽村 -->
  8. <view v-if="mine_code == 'shicaocun'">
  9. <t-p-shicaocun></t-p-shicaocun>
  10. </view>
  11. </view>
  12. </template>
  13. <script>
  14. export default {
  15. data() {
  16. return {
  17. // 当前煤矿编码
  18. mine_code:"",
  19. }
  20. },
  21. onLoad() {
  22. console.log(uni.getStorageSync('mine_code'))
  23. // 初始化当前煤矿编码
  24. this.mine_code = uni.getStorageSync('mine_code')
  25. },
  26. methods: {
  27. }
  28. }
  29. </script>
  30. <style lang="scss">
  31. </style>