| 12345678910111213141516171819202122232425262728 |
- <template>
- <view class="default_page" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
- <cus-header title='官方企业微信'></cus-header>
- <image :src="imgBase+'add_weixin_bg.png'" mode="widthFix" :style="{'min-height':(h-mt)+'px'}"></image>
- </view>
- </template>
- <script>
- export default {
- data(){
- return {
- imgBase:this.$imgBase
- }
- },
- methods:{
-
- }
- }
- </script>
- <style scoped lang="scss">
- .default_page{
- box-sizing: border-box;
- image{
- width: 100%;
- }
- }
- </style>
|