|
@@ -0,0 +1,44 @@
|
|
|
+<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>
|