1234567891011121314151617181920212223242526272829303132 |
- <template>
- <view class="headers">
- <t-w-application :mine_code="mine_code"></t-w-application>
- </view>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- // 当前煤矿编码
- mine_code: "",
- };
- },
- onLoad() {
- // 初始化当前煤矿编码
- this.mine_code = uni.getStorageSync('mine_code')
- },
- methods:{
-
- }
-
- }
- </script>
- <style lang="scss">
- page{
- background-color: #f5f5f5;
- }
- </style>
|