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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jufubao-movie",
3
- "version": "1.0.38-beta1",
3
+ "version": "1.0.39-beta1",
4
4
  "private": false,
5
5
  "description": "聚福宝在线选座业务组件插件包",
6
6
  "main": "index.js",
@@ -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
- return [filmInfo.language, filmInfo.type, filmInfo.director, filmInfo.show_version_list].filter(i=>i).join(" | ");
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();
@@ -461,6 +461,7 @@ export default {
461
461
  });
462
462
  },
463
463
  },
464
+
464
465
  {
465
466
  ele: 'title',
466
467
  label: '列表样式设置',
@@ -563,6 +564,7 @@ export default {
563
564
  });
564
565
  },
565
566
  },
567
+
566
568
  {
567
569
  ele: 'title',
568
570
  label: '影片选择路径设置',
@@ -145,6 +145,7 @@
145
145
  height: 100%;
146
146
  box-sizing: border-box;
147
147
  width: 160rpx;
148
+ min-height: 200rpx;
148
149
 
149
150
  & .score {
150
151
  height: 40rpx;
@@ -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, true);
310
+ this.init(this.container);
311
311
  },
312
312
  methods: {
313
313
  toFilmInfo(film_id){