workbench.vue 445 B

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