jufubao-movie 1.0.29-beta6 → 1.0.30-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.
Files changed (45) hide show
  1. package/package.json +1 -1
  2. package/src/components/JfbMovieAfterOrder/JfbMovieAfterOrder.vue +4 -3
  3. package/src/components/JfbMovieAfterOrder/JfbMovieAfterOrderLess.less +18 -19
  4. package/src/components/JfbMovieAfterOrderDetail/JfbMovieAfterOrderDetail.vue +4 -3
  5. package/src/components/JfbMovieAfterOrderDetail/JfbMovieAfterOrderDetailLess.less +18 -19
  6. package/src/components/JfbMovieCenter/JfbMovieCenter.vue +4 -3
  7. package/src/components/JfbMovieCenter/JfbMovieCenterLess.less +18 -19
  8. package/src/components/JfbMovieCode/JfbMovieCode.vue +7 -6
  9. package/src/components/JfbMovieCode/JfbMovieCodeLess.less +18 -19
  10. package/src/components/JfbMovieCodeChoose/Attr.js +84 -67
  11. package/src/components/JfbMovieCodeChoose/JfbMovieCodeChoose.vue +52 -118
  12. package/src/components/JfbMovieCodeChoose/JfbMovieCodeChooseLess.less +18 -19
  13. package/src/components/JfbMovieConfirm/Attr.js +11 -10
  14. package/src/components/JfbMovieConfirm/JfbMovieConfirm.vue +5 -4
  15. package/src/components/JfbMovieConfirm/JfbMovieConfirmLess.less +18 -19
  16. package/src/components/JfbMovieLineCinema/Attr.js +17 -14
  17. package/src/components/JfbMovieLineCinema/JfbMovieLineCinema.vue +3 -2
  18. package/src/components/JfbMovieLineCinema/JfbMovieLineCinemaLess.less +18 -19
  19. package/src/components/JfbMovieLineCinemaChoose/Attr.js +7 -7
  20. package/src/components/JfbMovieLineCinemaChoose/JfbMovieLineCinemaChoose.vue +3 -2
  21. package/src/components/JfbMovieLineCinemaChoose/JfbMovieLineCinemaChooseLess.less +18 -19
  22. package/src/components/JfbMovieLineFilm/Attr.js +15 -25
  23. package/src/components/JfbMovieLineFilm/JfbMovieLineFilm.vue +3 -2
  24. package/src/components/JfbMovieLineFilm/JfbMovieLineFilmLess.less +18 -19
  25. package/src/components/JfbMovieLineFilmInfo/Attr.js +5 -3
  26. package/src/components/JfbMovieLineFilmInfo/JfbMovieLineFilmInfo.vue +3 -3
  27. package/src/components/JfbMovieLineFilmInfo/JfbMovieLineFilmInfoLess.less +18 -19
  28. package/src/components/JfbMovieLineLineSeat/Attr.js +11 -10
  29. package/src/components/JfbMovieLineLineSeat/JfbMovieLineLineSeat.vue +6 -5
  30. package/src/components/JfbMovieLineLineSeat/JfbMovieLineLineSeatLess.less +18 -19
  31. package/src/components/JfbMovieLineLineSeat/Mock.js +2 -2
  32. package/src/components/JfbMovieLineSchedule/Attr.js +13 -8
  33. package/src/components/JfbMovieLineSchedule/JfbMovieLineSchedule.vue +9 -8
  34. package/src/components/JfbMovieLineSchedule/JfbMovieLineScheduleLess.less +18 -19
  35. package/src/components/JfbMovieOrder/JfbMovieOrder.vue +4 -3
  36. package/src/components/JfbMovieOrder/JfbMovieOrderLess.less +18 -19
  37. package/src/components/JfbMovieOrderDetail/JfbMovieOrderDetail.vue +4 -3
  38. package/src/components/JfbMovieOrderDetail/JfbMovieOrderDetailLess.less +18 -19
  39. package/src/components/JfbMoviePay/JfbMoviePay.vue +4 -3
  40. package/src/components/JfbMoviePay/JfbMoviePayLess.less +18 -19
  41. package/src/components/JfbMovieTestApi/Api.js +0 -57
  42. package/src/components/JfbMovieTestApi/Attr.js +0 -45
  43. package/src/components/JfbMovieTestApi/JfbMovieTestApi.vue +0 -77
  44. package/src/components/JfbMovieTestApi/JfbMovieTestApiLess.less +0 -80
  45. package/src/components/JfbMovieTestApi/JfbMovieTestApiMixin.js +0 -30
@@ -13,9 +13,7 @@
13
13
 
14
14
  //start
15
15
  .jfb-movie-line-cinema-choose {
16
- border: 1px dashed rgba(0, 0, 0, 0);
17
16
  box-sizing: border-box;
18
- min-height: unit(100, rpx);
19
17
 
20
18
  &__body{
21
19
  position: relative;
@@ -23,21 +21,22 @@
23
21
  z-index: 2
24
22
  }
25
23
 
26
- &.editx {
24
+ &.editx,&.editx:hover {
27
25
  position: relative;
28
- border: 1px dashed blue;
29
- box-sizing: border-box;
30
- z-index: 3
31
-
32
- }
33
-
34
- &:hover {
35
- border: 1px dashed blue;
36
- }
26
+ min-height: unit(100, rpx);
27
+ z-index: 3;
28
+ &::after {
29
+ border: 2rpx dashed blue;
30
+ content: " ";
31
+ position: absolute;
32
+ top:0;
33
+ left:0;
34
+ bottom:0;
35
+ right:0;
36
+ z-index: 4;
37
+ cursor: pointer;
38
+ }
37
39
 
38
- &.noBorder {
39
- border-color: rgba(0,0,0,0);
40
- border-width: 0;
41
40
  }
42
41
 
43
42
 
@@ -72,9 +71,9 @@
72
71
 
73
72
  /**notPreview**/
74
73
  .jfb-movie-line-cinema-choose {
75
- &:before {
76
- content: " ";
77
- display: table;
78
- }
74
+ //&:before {
75
+ //content: " ";
76
+ //display: table;
77
+ //}
79
78
  }
80
79
  /**endNotPreview**/
@@ -5,50 +5,40 @@ export default {
5
5
  advanced: [],
6
6
  content: [
7
7
  {
8
- label: '点击购票路径:', //label
9
- ele: 'xd-select-pages-path', //package 名称
10
- valueKey: 'cinema_choose_path', //form[valueKey]
8
+ label: '点击购票路径:',
9
+ ele: 'xd-select-pages-path',
10
+ valueKey: 'cinema_choose_path',
11
11
  placeholder: '请选择点击购票路径',
12
+ groupKey:'advanced',
13
+ className: 'input80',
12
14
  value: null,
13
15
  setting: {
14
16
  router: XdBus.getParentApi('getPagesTree'),
15
-
16
17
  },
17
- inline: false,
18
18
  },
19
19
  {
20
- label: '影片详情路径:', //label
21
- ele: 'xd-select-pages-path', //package 名称
22
- valueKey: 'film_info_path', //form[valueKey]
20
+ label: '影片详情路径:',
21
+ ele: 'xd-select-pages-path',
22
+ valueKey: 'film_info_path',
23
23
  placeholder: '请选择影片详情路径',
24
24
  value: null,
25
+ groupKey:'advanced',
26
+ className: 'input80',
25
27
  setting: {
26
28
  router: XdBus.getParentApi('getPagesTree'),
27
-
28
29
  },
29
- inline: false,
30
30
  },
31
31
  {
32
- label: '选择城市路径:', //label
33
- ele: 'xd-select-pages-path', //package 名称
34
- valueKey: 'choseCityPath', //form[valueKey]
32
+ label: '选择城市路径:',
33
+ ele: 'xd-select-pages-path',
34
+ valueKey: 'choseCityPath',
35
35
  placeholder: '选择城市路径路径',
36
+ groupKey:'advanced',
37
+ className: 'input80',
36
38
  value: null,
37
39
  setting: {
38
40
  router: XdBus.getParentApi('getPagesTree'),
39
-
40
41
  },
41
- inline: false,
42
42
  },
43
- // {
44
- // label: "定位地址非当前城市时",
45
- // ele: "xd-radio",
46
- // valueKey: "showSwitchCity",
47
- // value: "N",
48
- // list: [
49
- // {label: "弹框提示切换", value: "Y"},
50
- // {label: "不提示", value: "N"}
51
- // ]
52
- // },
53
43
  ],
54
44
  }
@@ -199,8 +199,9 @@
199
199
  })
200
200
  },
201
201
  watch: {
202
- container(value) {
203
- this.init(value)
202
+ container(value,oldValue) {
203
+ if(JSON.stringify(value) === JSON.stringify(oldValue)) return;
204
+ if (this.$configProject['isPreview']) this.init(value)
204
205
  },
205
206
  stateCity(n, o){
206
207
  if(n && JSON.stringify(n) != JSON.stringify(o)){
@@ -13,9 +13,7 @@
13
13
 
14
14
  //start
15
15
  .jfb-movie-line-film {
16
- border: 1px dashed rgba(0, 0, 0, 0);
17
16
  box-sizing: border-box;
18
- min-height: unit(100, rpx);
19
17
 
20
18
  &__body{
21
19
  position: relative;
@@ -23,21 +21,22 @@
23
21
  z-index: 2
24
22
  }
25
23
 
26
- &.editx {
24
+ &.editx,&.editx:hover {
27
25
  position: relative;
28
- border: 1px dashed blue;
29
- box-sizing: border-box;
30
- z-index: 3
31
-
32
- }
33
-
34
- &:hover {
35
- border: 1px dashed blue;
36
- }
26
+ min-height: unit(100, rpx);
27
+ z-index: 3;
28
+ &::after {
29
+ border: 2rpx dashed blue;
30
+ content: " ";
31
+ position: absolute;
32
+ top:0;
33
+ left:0;
34
+ bottom:0;
35
+ right:0;
36
+ z-index: 4;
37
+ cursor: pointer;
38
+ }
37
39
 
38
- &.noBorder {
39
- border-color: rgba(0,0,0,0);
40
- border-width: 0;
41
40
  }
42
41
 
43
42
 
@@ -72,9 +71,9 @@
72
71
 
73
72
  /**notPreview**/
74
73
  .jfb-movie-line-film {
75
- &:before {
76
- content: " ";
77
- display: table;
78
- }
74
+ //&:before {
75
+ //content: " ";
76
+ //display: table;
77
+ //}
79
78
  }
80
79
  /**endNotPreview**/
@@ -5,10 +5,12 @@ export default {
5
5
  advanced: [],
6
6
  content: [
7
7
  {
8
- label: '点击购票路径:', //label
9
- ele: 'xd-select-pages-path', //package 名称
10
- valueKey: 'cinema_choose_path', //form[valueKey]
8
+ label: '点击购票路径:',
9
+ ele: 'xd-select-pages-path',
10
+ valueKey: 'cinema_choose_path',
11
11
  placeholder: '请选择点击购票路径',
12
+ groupKey:'advanced',
13
+ className: 'input80',
12
14
  value: null,
13
15
  setting: {
14
16
  router: XdBus.getParentApi('getPagesTree'),
@@ -100,7 +100,6 @@ export default {
100
100
  trailer_list: [],
101
101
  cinemaChoosePath: "",
102
102
  film_id: "",
103
- //todo
104
103
  };
105
104
  },
106
105
  computed: {
@@ -109,8 +108,9 @@ export default {
109
108
  }),
110
109
  },
111
110
  watch: {
112
- container(value) {
113
- this.init(value);
111
+ container(value,oldValue) {
112
+ if(JSON.stringify(value) === JSON.stringify(oldValue)) return;
113
+ if (this.$configProject['isPreview']) this.init(value)
114
114
  },
115
115
  },
116
116
  created() {
@@ -13,9 +13,7 @@
13
13
 
14
14
  //start
15
15
  .jfb-movie-line-film-info {
16
- border: 1px dashed rgba(0, 0, 0, 0);
17
16
  box-sizing: border-box;
18
- min-height: unit(100, rpx);
19
17
 
20
18
  &__body{
21
19
  position: relative;
@@ -23,21 +21,22 @@
23
21
  z-index: 2
24
22
  }
25
23
 
26
- &.editx {
24
+ &.editx,&.editx:hover {
27
25
  position: relative;
28
- border: 1px dashed blue;
29
- box-sizing: border-box;
30
- z-index: 3
31
-
32
- }
33
-
34
- &:hover {
35
- border: 1px dashed blue;
36
- }
26
+ min-height: unit(100, rpx);
27
+ z-index: 3;
28
+ &::after {
29
+ border: 2rpx dashed blue;
30
+ content: " ";
31
+ position: absolute;
32
+ top:0;
33
+ left:0;
34
+ bottom:0;
35
+ right:0;
36
+ z-index: 4;
37
+ cursor: pointer;
38
+ }
37
39
 
38
- &.noBorder {
39
- border-color: rgba(0,0,0,0);
40
- border-width: 0;
41
40
  }
42
41
 
43
42
 
@@ -72,9 +71,9 @@
72
71
 
73
72
  /**notPreview**/
74
73
  .jfb-movie-line-film-info {
75
- &:before {
76
- content: " ";
77
- display: table;
78
- }
74
+ //&:before {
75
+ //content: " ";
76
+ //display: table;
77
+ //}
79
78
  }
80
79
  /**endNotPreview**/
@@ -5,28 +5,29 @@ export default {
5
5
  advanced: [],
6
6
  content: [
7
7
  {
8
- label: '订单确认路径:', //label
9
- ele: 'xd-select-pages-path', //package 名称
10
- valueKey: 'movie_pay_path', //form[valueKey]
8
+ label: '订单确认路径:',
9
+ ele: 'xd-select-pages-path',
10
+ valueKey: 'movie_pay_path',
11
11
  placeholder: '请选择订单确认路径',
12
+ groupKey:'advanced',
13
+ className: 'input80',
12
14
  value: null,
13
15
  setting: {
14
16
  router: XdBus.getParentApi('getPagesTree'),
15
17
 
16
18
  },
17
- inline: false,
18
19
  },
19
20
  {
20
- label: '三方支付路径:', //label
21
- ele: 'xd-select-pages-path', //package 名称
22
- valueKey: 'payPath', //form[valueKey]
23
- placeholder: '请选择支付路径',
21
+ label: '支付路径(补差):',
22
+ ele: 'xd-select-pages-path',
23
+ valueKey: 'payPath',
24
+ placeholder: '请选择支付路径(补差)',
25
+ groupKey:'advanced',
26
+ className: 'input80',
24
27
  value: null,
25
28
  setting: {
26
29
  router: XdBus.getParentApi('getPagesTree'),
27
-
28
30
  },
29
- inline: false,
30
31
  },
31
32
  ],
32
33
  }
@@ -87,9 +87,10 @@
87
87
  }
88
88
  },
89
89
  watch: {
90
- container(value) {
91
- this.init(value)
92
- }
90
+ container(value,oldValue) {
91
+ if(JSON.stringify(value) === JSON.stringify(oldValue)) return;
92
+ if (this.$configProject['isPreview']) this.init(value)
93
+ },
93
94
  },
94
95
  created() {
95
96
  this.init(this.container);
@@ -107,7 +108,7 @@
107
108
  this.scheduleId = "X3185465-84B3C1F5B8FE7EFA2E884289D20F89BB";
108
109
  }
109
110
  },
110
-
111
+
111
112
  getSeatStatus(request_seat_id) {
112
113
  this.$xdShowLoading({});
113
114
  jfbRootExec("getCinemaSeatsStatus", {
@@ -293,7 +294,7 @@
293
294
  this.$xdHideLoading()
294
295
  })
295
296
  },
296
-
297
+
297
298
  onJfbBack(options){
298
299
  this.$xdUniHelper.navigateBack();
299
300
  },
@@ -13,9 +13,7 @@
13
13
 
14
14
  //start
15
15
  .jfb-movie-line-line-seat {
16
- border: 1px dashed rgba(0, 0, 0, 0);
17
16
  box-sizing: border-box;
18
- min-height: unit(100, rpx);
19
17
 
20
18
  &__body{
21
19
  position: relative;
@@ -23,21 +21,22 @@
23
21
  z-index: 2
24
22
  }
25
23
 
26
- &.editx {
24
+ &.editx,&.editx:hover {
27
25
  position: relative;
28
- border: 1px dashed blue;
29
- box-sizing: border-box;
30
- z-index: 3
31
-
32
- }
33
-
34
- &:hover {
35
- border: 1px dashed blue;
36
- }
26
+ min-height: unit(100, rpx);
27
+ z-index: 3;
28
+ &::after {
29
+ border: 2rpx dashed blue;
30
+ content: " ";
31
+ position: absolute;
32
+ top:0;
33
+ left:0;
34
+ bottom:0;
35
+ right:0;
36
+ z-index: 4;
37
+ cursor: pointer;
38
+ }
37
39
 
38
- &.noBorder {
39
- border-color: rgba(0,0,0,0);
40
- border-width: 0;
41
40
  }
42
41
 
43
42
 
@@ -72,9 +71,9 @@
72
71
 
73
72
  /**notPreview**/
74
73
  .jfb-movie-line-line-seat {
75
- &:before {
76
- content: " ";
77
- display: table;
78
- }
74
+ //&:before {
75
+ //content: " ";
76
+ //display: table;
77
+ //}
79
78
  }
80
79
  /**endNotPreview**/
@@ -3052,7 +3052,7 @@ module.exports = {
3052
3052
  request_id: "8bf254253bba488b"
3053
3053
  },
3054
3054
  getSeatBaseInfo: {
3055
- film_id: "581",
3055
+ film_id: "200",
3056
3056
  cinema_id: "7",
3057
3057
  cinema_name: "聚福宝测试影院聚福宝测试影院聚福宝测试影院聚福宝测试影院",
3058
3058
  film_name: "碧血锦衣卫",
@@ -3073,4 +3073,4 @@ module.exports = {
3073
3073
  },
3074
3074
  request_id: "cc4bde105691814c"
3075
3075
  }
3076
- };
3076
+ };
@@ -5,26 +5,31 @@ export default {
5
5
  advanced: [],
6
6
  content: [
7
7
  {
8
- label: '排期超时时间(秒):', //label
9
- ele: 'el-input', //package 名称
8
+ label: '排期超时时间(秒):',
9
+ ele: 'el-input',
10
10
  type: 'number',
11
- valueKey: 'un_show_seconds', //form[valueKey]
11
+ valueKey: 'un_show_seconds',
12
12
  value: 15*60,
13
13
  placeholder: '请输入排期超时时间(秒)',
14
- className: 'input80', //样式名称 //input100,input80,input70,input60,input50,input40,input30,input20,
14
+ className: 'input80',
15
+ groupKey:'content',
15
16
  rules: [
16
17
  {
17
18
  required: true,
18
19
  message: '请输入排期超时时间(秒)',
19
20
  trigger: 'blur'
20
21
  },
21
- ]
22
+ ],
23
+ inline: false,
24
+ notice:'排期超时时间'
22
25
  },
23
26
  {
24
- label: '选择座位路径:', //label
25
- ele: 'xd-select-pages-path', //package 名称
26
- valueKey: 'seat_choose_path', //form[valueKey]
27
+ label: '选择座位路径:',
28
+ ele: 'xd-select-pages-path',
29
+ valueKey: 'seat_choose_path',
27
30
  placeholder: '请选择购票座位路径',
31
+ groupKey:'advanced',
32
+ className: 'input80',
28
33
  value: null,
29
34
  setting: {
30
35
  router: XdBus.getParentApi('getPagesTree'),
@@ -179,7 +179,7 @@
179
179
  import ZSwiperItem from "@zebra-ui/swiper/components/z-swiper-item/z-swiper-item.vue"
180
180
  const Color = require('color');
181
181
  import { mapState } from "vuex"
182
-
182
+
183
183
  export default {
184
184
  name: "JfbMovieLineSchedule",
185
185
  components: {
@@ -255,9 +255,10 @@
255
255
  }
256
256
  },
257
257
  watch: {
258
- container(value) {
259
- this.init(value)
260
- }
258
+ container(value,oldValue) {
259
+ if(JSON.stringify(value) === JSON.stringify(oldValue)) return;
260
+ if (this.$configProject['isPreview']) this.init(value)
261
+ },
261
262
  },
262
263
  created() {
263
264
  // console.log("layoutInfo.", this.layoutInfo, this.siteMap)
@@ -269,7 +270,7 @@
269
270
  const { cinema_id, film_id } = options;
270
271
  this.cinema_id = cinema_id;
271
272
  await this.p_getCinemaInfo();
272
-
273
+
273
274
  //根据options.film_id选中当前的影片
274
275
  if(film_id){
275
276
  let curIndex = this.list.findIndex(item => item.film_id==film_id);
@@ -369,7 +370,7 @@
369
370
  });
370
371
  this.pop_notice = pop_notice;
371
372
  this.is_pop = is_pop;
372
-
373
+
373
374
  this.renderSwiper = Date.now();
374
375
  resolve();
375
376
  }).catch(err=> {
@@ -391,7 +392,7 @@
391
392
 
392
393
  <style scoped lang="less">
393
394
  @import "./JfbMovieLineScheduleLess.less";
394
-
395
+
395
396
  .schedule_notice {
396
397
  padding: unit(15, rpx) unit(20, rpx);
397
398
  }
@@ -572,7 +573,7 @@
572
573
  font-weight: 400;
573
574
  padding: 0 40rpx;
574
575
  }
575
-
576
+
576
577
  }
577
578
  }
578
579
  }
@@ -13,9 +13,7 @@
13
13
 
14
14
  //start
15
15
  .jfb-movie-line-schedule {
16
- border: 1px dashed rgba(0, 0, 0, 0);
17
16
  box-sizing: border-box;
18
- min-height: unit(100, rpx);
19
17
 
20
18
  &__body{
21
19
  position: relative;
@@ -23,21 +21,22 @@
23
21
  z-index: 2
24
22
  }
25
23
 
26
- &.editx {
24
+ &.editx,&.editx:hover {
27
25
  position: relative;
28
- border: 1px dashed blue;
29
- box-sizing: border-box;
30
- z-index: 3
31
-
32
- }
33
-
34
- &:hover {
35
- border: 1px dashed blue;
36
- }
26
+ min-height: unit(100, rpx);
27
+ z-index: 3;
28
+ &::after {
29
+ border: 2rpx dashed blue;
30
+ content: " ";
31
+ position: absolute;
32
+ top:0;
33
+ left:0;
34
+ bottom:0;
35
+ right:0;
36
+ z-index: 4;
37
+ cursor: pointer;
38
+ }
37
39
 
38
- &.noBorder {
39
- border-color: rgba(0,0,0,0);
40
- border-width: 0;
41
40
  }
42
41
 
43
42
 
@@ -72,9 +71,9 @@
72
71
 
73
72
  /**notPreview**/
74
73
  .jfb-movie-line-schedule {
75
- &:before {
76
- content: " ";
77
- display: table;
78
- }
74
+ //&:before {
75
+ //content: " ";
76
+ //display: table;
77
+ //}
79
78
  }
80
79
  /**endNotPreview**/
@@ -130,9 +130,10 @@
130
130
  }
131
131
  },
132
132
  watch: {
133
- container(value) {
134
- this.init(value)
135
- }
133
+ container(value,oldValue) {
134
+ if(JSON.stringify(value) === JSON.stringify(oldValue)) return;
135
+ if (this.$configProject['isPreview']) this.init(value)
136
+ },
136
137
  },
137
138
  created() {
138
139
  this.init(this.container);
@@ -13,9 +13,7 @@
13
13
 
14
14
  //start
15
15
  .jfb-movie-order {
16
- border: 1px dashed rgba(0, 0, 0, 0);
17
16
  box-sizing: border-box;
18
- min-height: unit(100, rpx);
19
17
 
20
18
  &__body{
21
19
  position: relative;
@@ -23,21 +21,22 @@
23
21
  z-index: 2
24
22
  }
25
23
 
26
- &.editx {
24
+ &.editx,&.editx:hover {
27
25
  position: relative;
28
- border: 1px dashed blue;
29
- box-sizing: border-box;
30
- z-index: 3
31
-
32
- }
33
-
34
- &:hover {
35
- border: 1px dashed blue;
36
- }
26
+ min-height: unit(100, rpx);
27
+ z-index: 3;
28
+ &::after {
29
+ border: 2rpx dashed blue;
30
+ content: " ";
31
+ position: absolute;
32
+ top:0;
33
+ left:0;
34
+ bottom:0;
35
+ right:0;
36
+ z-index: 4;
37
+ cursor: pointer;
38
+ }
37
39
 
38
- &.noBorder {
39
- border-color: rgba(0,0,0,0);
40
- border-width: 0;
41
40
  }
42
41
 
43
42
 
@@ -72,9 +71,9 @@
72
71
 
73
72
  /**notPreview**/
74
73
  .jfb-movie-order {
75
- &:before {
76
- content: " ";
77
- display: table;
78
- }
74
+ //&:before {
75
+ //content: " ";
76
+ //display: table;
77
+ //}
79
78
  }
80
79
  /**endNotPreview**/