1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <template>
- <view class="content">
- <view class="header">
- <image src="../../static/img/tjbgc.png" mode="widthFix" class="bgc"></image>
- </view>
- </view>
- </template>
- <script>
- import maoScroll from '@/components/mao-scroll/mao-scroll.vue';
- export default {
- components: {
- maoScroll
- },
- data() {
- return {
- background: {
- backgroundColor: '#2E303A',
- backgroundColor: 'red',
- },
- }
- },
- onLoad: function(option) {
- },
- destroyed() {
- },
- onUnload() {
- },
- methods: {
- }
- }
- </script>
- <style scoped lang="scss">
- .bgc {
- width: 100vw;
- }
- </style>
|