1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="">
- <!-- 组织架构 -->
- <!-- 枣泉 -->
- <view v-if="mine_code == 'zaoquan'">
- <t-o-zaoquan></t-o-zaoquan>
- </view>
-
- <view v-if="mine_code == 'ningdongyunying'">
- <t-o-ningdongyunying></t-o-ningdongyunying>
-
- <!-- <t-o-news></t-o-news> -->
- </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: #F3F8F7;
- }
- </style>
|