123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <view>
- <es-nav-title title="医生拉新" bg="none"></es-nav-title>
-
-
- <!-- <view class="img" :style="'background-image: url('+img+');'"></view> -->
-
- <image :src="img" style="width: 100%;height: auto;display: block;" mode="widthFix"></image>
-
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- img:'/static/images/other/user/share-img.jpg',
-
- }
- },
- onLoad(options) {
-
-
- },
- methods: {
-
- }
- }
- </script>
- <style>
- /* .img{
- position: fixed;
- top:0;
- left:0;
- width: 100%;
- height: 100%;
- background-size: 100% auto;
- background-repeat: no-repeat;
- } */
- </style>
|