jufubao-movie 1.0.63-beta2 → 1.0.63
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -36,9 +36,9 @@
|
|
|
36
36
|
<view v-if="loadingFilm" class="ticket_notice skeleton-wrap"></view>
|
|
37
37
|
<view v-else-if="notice" class="ticket_notice" :style="{
|
|
38
38
|
background: noticeBgColor,
|
|
39
|
-
color:
|
|
39
|
+
color: mainColorview
|
|
40
40
|
}">
|
|
41
|
-
<
|
|
41
|
+
<view>{{notice}}</view>
|
|
42
42
|
</view>
|
|
43
43
|
<view v-if="loadingFilm" class="film_data_wrap skeleton-wrap">
|
|
44
44
|
<view class="film_list_swiper">
|
|
@@ -126,19 +126,19 @@
|
|
|
126
126
|
</view>
|
|
127
127
|
</scroll-view>
|
|
128
128
|
</view>
|
|
129
|
-
<
|
|
129
|
+
<view class="schedule_notice" :style="{background:noticeBackgroundColor}" v-if="is_pop">
|
|
130
130
|
<xd-notice-bar
|
|
131
131
|
scrollable
|
|
132
132
|
:is-no-bgc="false"
|
|
133
133
|
:color="warningColor"
|
|
134
134
|
>{{popNoticeReplace}}</xd-notice-bar>
|
|
135
|
-
</
|
|
135
|
+
</view>
|
|
136
136
|
|
|
137
137
|
<view v-if="loadingList" class="schedule_list skeleton-wrap">
|
|
138
138
|
<view class="_item" v-for="ii in 5" :key="ii">
|
|
139
139
|
<view class="flex-sub">
|
|
140
140
|
<view class="_main"></view>
|
|
141
|
-
<view class="_sub"></view
|
|
141
|
+
<view class="_sub"></view>ƒ
|
|
142
142
|
</view>
|
|
143
143
|
<view class="flex-sub">
|
|
144
144
|
<view class="_main"></view>
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
</view>
|
|
154
154
|
<template v-else>
|
|
155
155
|
<view v-if="play_list.length" class="schedule_list">
|
|
156
|
-
<view class="_item" v-for="(item,ii) in play_list" :key="
|
|
156
|
+
<view class="_item" v-for="(item,ii) in play_list" :key="item.schedule_id">
|
|
157
157
|
<view class="flex-sub">
|
|
158
158
|
<view class="_main">{{item.show_time_hour}}</view>
|
|
159
159
|
<view class="_sub">{{item.close_time_hour}}散场</view>
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
import ZSwiper from "@zebra-ui/swiper/components/z-swiper/z-swiper.vue"
|
|
199
199
|
import ZSwiperItem from "@zebra-ui/swiper/components/z-swiper-item/z-swiper-item.vue"
|
|
200
200
|
//#endif
|
|
201
|
-
|
|
201
|
+
|
|
202
202
|
|
|
203
203
|
const Color = require('color');
|
|
204
204
|
import { mapState } from "vuex"
|