1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <template>
- <view class="back-content">
- <!-- 轮播图 -->
- <swiper class="top-ad-swiper" :indicator-dots="false" :autoplay="true" :interval="5000" :duration="600" :circular="true">
- <swiper-item v-for="(item,index) in imageTopList" :key="index">
- <div class="swiper-item uni-bg-red">
- <!-- <image class="swiper-item-imgse" :fade-show='true' :src="item.photo"></image> -->
- <u-image mode="scaleToFill" width="750upx" height="400upx" :src="item.photo"></u-image>
- </div>
- </swiper-item>
- </swiper>
- <view class="back-text">
- <view class="text-item">
- 常青二路店
- </view>
- <view class="text-item">
- <view>处理人</view>
- <view>张三丰</view>
- <view class="">
- 2020-08-07 到期
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- components: {
- },
- data() {
- return {
- // 顶部轮播图片
- imageTopList:[],
- }
- },
- onLoad() {
-
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss" scoped>
- .back-content {
- .top-ad-swiper{
- height: 340upx;
- }
- .swiper-item-imgse{
- width: 750upx;
- height: 340upx;
- }
- }
- </style>
|