jufubao-movie 1.0.38-beta1 → 1.0.39-beta1
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 +1 -1
- package/src/components/JfbMovieLineCinemaChoose/JfbMovieLineCinemaChoose.vue +1 -0
- package/src/components/JfbMovieLineFilmInfo/JfbMovieLineFilmInfo.vue +2 -3
- package/src/components/JfbMovieLineSchedule/JfbMovieLineSchedule.vue +7 -1
- package/src/components/JfbMovieTfkFilmList/Attr.js +2 -0
- package/src/components/JfbMovieTfkFilmList/ContentItem.vue +1 -0
- package/src/components/JfbMovieTfkFilmList/JfbMovieTfkFilmList.vue +0 -2
- package/src/components/JfbMovieTfkFilmRecommend/JfbMovieTfkFilmRecommend.vue +1 -1
package/package.json
CHANGED
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
<view class="film_sub">主演:{{ film.leading_role }}</view>
|
|
36
36
|
<view class="film_sub">地区:{{ film.country || "中国大陆" }}</view>
|
|
37
37
|
<view class="film_sub">上映:{{ film.open_time }}</view>
|
|
38
|
+
<view class="film_sub" v-if="film.duration">时长:{{ film.duration }} 分钟</view>
|
|
38
39
|
</view>
|
|
39
40
|
</view>
|
|
40
41
|
</view>
|
|
@@ -28,15 +28,14 @@
|
|
|
28
28
|
<view class="film_other">
|
|
29
29
|
<view class="film_name_score">
|
|
30
30
|
<view class="film_name">{{ film.show_name }}</view>
|
|
31
|
-
<view v-if="film.remark" class="film_score">{{
|
|
32
|
-
film.remark
|
|
33
|
-
}}</view>
|
|
31
|
+
<view v-if="film.remark" class="film_score">{{film.remark }}</view>
|
|
34
32
|
</view>
|
|
35
33
|
<view class="film_type">{{ film.type }}</view>
|
|
36
34
|
<view class="film_sub">导演:{{ film.director }}</view>
|
|
37
35
|
<view class="film_sub">主演:{{ film.leading_role }}</view>
|
|
38
36
|
<view class="film_sub">地区:中国大陆</view>
|
|
39
37
|
<view class="film_sub">上映:{{ film.open_time }}</view>
|
|
38
|
+
<view v-if="film.duration" class="film_sub">时长:{{ film.duration }} 分钟</view>
|
|
40
39
|
</view>
|
|
41
40
|
</view>
|
|
42
41
|
<view class="film_opera">
|
|
@@ -266,7 +266,13 @@
|
|
|
266
266
|
},
|
|
267
267
|
filmTypeAll(){
|
|
268
268
|
const { filmInfo } = this;
|
|
269
|
-
|
|
269
|
+
let data = [];
|
|
270
|
+
if(filmInfo.duration){
|
|
271
|
+
data.push(filmInfo.duration + ' 分钟');
|
|
272
|
+
}
|
|
273
|
+
let other = [filmInfo.language, filmInfo.type, filmInfo.director, filmInfo.show_version_list].filter(i=>i);
|
|
274
|
+
data = data.concat(other)
|
|
275
|
+
return data.join(" | ");
|
|
270
276
|
},
|
|
271
277
|
noticeBgColor(){
|
|
272
278
|
return Color(this.mainColor).alpha(0.1).toString();
|
|
@@ -307,7 +307,7 @@
|
|
|
307
307
|
created() {
|
|
308
308
|
this.isPreview = this.$configProject.isPreview;
|
|
309
309
|
this.backgroundColor = Color(this.warningColor).alpha(0.2).toString();
|
|
310
|
-
this.init(this.container
|
|
310
|
+
this.init(this.container);
|
|
311
311
|
},
|
|
312
312
|
methods: {
|
|
313
313
|
toFilmInfo(film_id){
|