jufubao-base 1.0.169-beta12 → 1.0.169-beta14

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.
@@ -141,13 +141,13 @@ export default {
141
141
  notice: '设置内边距,<span style="color: red">单位:像素</span>。默认值:<span style="color: red">20</span>像素',
142
142
  },
143
143
  {
144
- label: "全部-列表样式配置",
144
+ label: "全部-业务板块样式配置",
145
145
  ele: "title",
146
146
  groupKey:'style',
147
147
  size: "small",
148
148
  },
149
149
  {
150
- label: "列表背景色",
150
+ label: "业务板块背景色",
151
151
  ele: "xd-color",
152
152
  valueKey: 'allListBgColor',
153
153
  value: data['allListBgColor'] || '#FFFFFF',
@@ -167,6 +167,25 @@ export default {
167
167
  inline: false,
168
168
  notice: '设置内边距,<span style="color: red">单位:像素</span>。',
169
169
  },
170
+ {
171
+ label: "业务板块圆角",
172
+ ele: 'xd-site-select-list',
173
+ valueKey: 'allModuleRadius',
174
+ value: data['allModuleRadius'] || 0,
175
+ groupKey:'style',
176
+ placeholder: '请选择内容圆角设置',
177
+ multiple: false,
178
+ className: 'input80',
179
+ handleCustom({ action, data }) {
180
+ XdBus.getParentApi('getOptionsSettingList')({ setting_id: 'edtix_style_radius' })
181
+ .then(res => {
182
+ data.cb(res.list)
183
+ })
184
+ .catch(error => {
185
+ console.error(error);
186
+ });
187
+ },
188
+ },
170
189
  {
171
190
  label: "业务板块标题样式",
172
191
  ele: "xd-radio",
@@ -220,9 +239,107 @@ export default {
220
239
  groupKey: "style",
221
240
  type: "number",
222
241
  },
223
-
242
+ {
243
+ label: "全部 - 列表单个样式配置",
244
+ ele: "title",
245
+ groupKey:'style',
246
+ size: "small",
247
+ },
248
+ {
249
+ label: "业务板块列表单个背景色",
250
+ ele: "xd-color",
251
+ valueKey: 'allModuleItemContBgColor',
252
+ value: data['allModuleItemContBgColor'] || '#FFFFFF',
253
+ groupKey:'style',
254
+ },
255
+ {
256
+ label: "业务板块列表单个间距",
257
+ ele: "el-input",
258
+ valueKey: "allModuleItemContMargin",
259
+ value: data.allModuleItemContMargin || 20,
260
+ groupKey:'style',
261
+ type: "number",
262
+ },
263
+ {
264
+ label: "业务板块列表单个边框",
265
+ ele: "xd-border",
266
+ valueKey: 'allModuleItemContBorder',
267
+ value: data['allModuleItemContBorder'] || null,
268
+ groupKey:'style',
269
+ },
270
+ {
271
+ label: "业务板块列表单个阴影",
272
+ ele: "xd-shadow",
273
+ groupKey:'style',
274
+ valueKey: 'allModuleItemContShadow',
275
+ value: data['allModuleItemContShadow'] || null,
276
+ handleCustom({action, data}) {
277
+ XdBus.getParentApi('getOptionsSettingList')({setting_id: 'edtix_style_radius'})
278
+ .then(res => {
279
+ data.cb(res.list)
280
+ })
281
+ .catch(error => {
282
+ console.error(error);
283
+ data.cb([])
284
+ });
285
+ },
286
+ },
287
+ {
288
+ label: "业务板块列表单个内边距",
289
+ ele: "xd-margin-padding",
290
+ valueKey: "allModuleItemContPadding",
291
+ value: data['allModuleItemContPadding'] || null,
292
+ groupKey:'style',
293
+ setting: {
294
+ type: 'padding',
295
+ },
296
+ placeholder: '请设置内边距',
297
+ inline: false,
298
+ notice: '设置内边距,<span style="color: red">单位:像素</span>。默认值:<span style="color: red">20</span>像素',
299
+ },
300
+ {
301
+ label: "业务板块列表单个圆角",
302
+ ele: 'xd-site-select-list',
303
+ valueKey: 'allModuleItemContRadius',
304
+ value: data.allModuleItemContRadius || 16,
305
+ groupKey:'style',
306
+ placeholder: '请选择内容圆角设置',
307
+ multiple: false,
308
+ className: 'input80',
309
+ handleCustom({ action, data }) {
310
+ XdBus.getParentApi('getOptionsSettingList')({ setting_id: 'edtix_style_radius' })
311
+ .then(res => {
312
+ data.cb(res.list)
313
+ })
314
+ .catch(error => {
315
+ console.error(error);
316
+ });
317
+ },
318
+ },
224
319
 
225
320
  {
321
+ label: '选择综合入口类型:',
322
+ ele: 'xd-site-select-list',
323
+ valueKey: 'entryGroupId',
324
+ value: data.entryGroupId || 'default',
325
+ placeholder: '请选择综合入口类型',
326
+ multiple: false,
327
+ groupKey:'content',
328
+ className: 'input50',
329
+ rules: [
330
+ {required: true, message: '请选择综合入口类型', trigger: ['blur', 'change']}
331
+ ],
332
+ handleCustom({action, data}) {
333
+ XdBus.getParentApi('getEntryGroupOption')({key: Date.now()})
334
+ .then(res => {
335
+ data.cb(res.list)
336
+ })
337
+ .catch(error => {
338
+ console.error(error);
339
+ });
340
+ },
341
+ },
342
+ data.entryGroupId && {
226
343
  label: "搜索范围",
227
344
  ele: "xd-search-setting-options",
228
345
  valueKey: 'searchScope',
@@ -231,8 +348,11 @@ export default {
231
348
  placeholder: '请选择内容圆角设置',
232
349
  multiple: false,
233
350
  className: 'input80',
351
+ setting: {
352
+ group_id: data.entryGroupId || 'default',
353
+ },
234
354
  handleCustom({ action, data }) {
235
- XdBus.getParentApi('getSearchSettingOptions')()
355
+ XdBus.getParentApi('getSearchSettingOptions')({group_id: 'default', ...data.params})
236
356
  .then(res => {
237
357
  data.cb(res.list)
238
358
  })
@@ -100,12 +100,10 @@
100
100
  },
101
101
  methods:{
102
102
  handleDetail(item){
103
- console.log('handleDetail.item',item,item.id);
104
- this.$emit('on-film-detail',item.id);
103
+ this.$emit('on-film-detail',item);
105
104
  },
106
105
  handleBuy(item){
107
- console.log('handleDetail.item',item,item.id);
108
- this.$emit('on-buy',item.id);
106
+ this.$emit('on-buy',item);
109
107
  }
110
108
  }
111
109
  }
@@ -162,7 +162,9 @@ export default {
162
162
  },
163
163
  methods:{
164
164
  handleDetail(){
165
- this.$emit('on-product-detail', this.item);
165
+ if(this.item.status === 'ok') {
166
+ this.$emit('on-product-detail', this.item);
167
+ }
166
168
  }
167
169
  }
168
170
  }
@@ -32,17 +32,17 @@
32
32
  <template v-if="type_other !== 2">
33
33
  <view
34
34
  v-for="item in dataList"
35
- :key="item.id"
35
+ :key="item.cuid"
36
36
  :style="{
37
- marginBottom:$parentVm.outSpacing + 'rpx',
38
- padding:contMarginComp,
39
- borderRadius:$parentVm.contRradius+ 'rpx',
40
- border: $parentVm.contBorder,
41
- boxShadow:$parentVm.contShadow,
42
- width: (type_code === 'product' && type_other === 2) ? (outItemProduct + 'rpx'): 'auto',
43
- height: heightRpx,
44
- backgroundColor: $parentVm.contBgColor
45
- }">
37
+ marginBottom:$parentVm.outSpacing + 'rpx',
38
+ padding:contMarginComp,
39
+ borderRadius:$parentVm.contRradius+ 'rpx',
40
+ border: $parentVm.contBorder,
41
+ boxShadow:$parentVm.contShadow,
42
+ width: (type_code === 'product' && type_other === 2) ? (outItemProduct + 'rpx'): 'auto',
43
+ height: heightRpx,
44
+ backgroundColor: $parentVm.contBgColor
45
+ }">
46
46
  <content-film
47
47
  type="hot"
48
48
  v-if="type_code === 'film'"
@@ -52,8 +52,8 @@
52
52
  :out-spacing="$parentVm.outSpacing"
53
53
  :color="$parentVm.mainColor"
54
54
  :border-radius="$parentVm.imgRradius"
55
- @on-film-detail="(film_id)=>{$parentVm.handleFilmDetail(film_id, dataConfig)}"
56
- @on-buy="(film_id)=>{$parentVm.handleBuy(film_id, dataConfig)}"
55
+ @on-film-detail="(film)=>{$parentVm.handleFilmDetail(film, dataConfig)}"
56
+ @on-buy="(film)=>{$parentVm.handleBuy(film, dataConfig)}"
57
57
  ></content-film>
58
58
  <content-cinema
59
59
  v-if="type_code === 'cinema'"
@@ -99,7 +99,7 @@
99
99
  <view
100
100
  v-if="productTowList[listKey] !== null"
101
101
  v-for="item in productTowList[listKey]"
102
- :key="item.id"
102
+ :key="item.cuid"
103
103
  :style="{
104
104
  marginBottom:$parentVm.outSpacing + 'rpx',
105
105
  padding:contMarginComp,
@@ -127,7 +127,6 @@
127
127
  </view>
128
128
  </view>
129
129
  </view>
130
-
131
130
  </view>
132
131
  </view>
133
132
  </template>
@@ -225,7 +224,7 @@ export default {
225
224
  hasNoData: false,
226
225
 
227
226
  page_token:'1',
228
- page_size: 20,
227
+ page_size: 100,
229
228
 
230
229
  //参数
231
230
  type_code:'',
@@ -258,7 +257,9 @@ export default {
258
257
  this.onCusReloadList();
259
258
  },500)
260
259
  },
260
+
261
261
  tabId(){
262
+ this.handleClear();
262
263
  this.parseTab()
263
264
  this.onCusReloadList();
264
265
  },
@@ -281,8 +282,6 @@ export default {
281
282
  parseTab(){
282
283
  let tabs = this.tabId.split('@');
283
284
  this.type_code = tabs[1];
284
- this.search_range = tabs[0]
285
- this.is_open_city = tabs[2];
286
285
  if(this.type_code === 'product'){
287
286
  this.type_other = Number(tabs[3]);
288
287
  if(this.type_other === 2) this.skeletonCount = 12
@@ -292,13 +291,15 @@ export default {
292
291
  this.skeletonCount = 6;
293
292
  this.type_other = null
294
293
  }
294
+ this.search_range = tabs[0]
295
+ this.is_open_city = tabs[2];
295
296
  },
296
297
 
297
298
  handleClear(){
298
299
  this.is_open_city = 'N';
299
300
  this.dataConfig = null;
300
301
  this.page_token = '1';
301
- this.dataList = null;
302
+ this.dataList = [];
302
303
  this.productTowList = {
303
304
  left:null,
304
305
  right:null,
@@ -325,20 +326,23 @@ export default {
325
326
 
326
327
 
327
328
  getList(){
329
+ let time = new Date().getTime();
330
+
328
331
  //无关键字不搜索
329
332
  if(this.keyword === '') {
330
333
  return;
331
334
  }
332
- //this.$xdShowLoading({});
335
+ this.$xdShowLoading({});
336
+ console.log(new Date().getTime()-time)
333
337
  this.$emit('on-list', {
334
338
  params:this.getParams,
335
339
  cb:(res)=>{
336
-
340
+ console.log(new Date().getTime()-time)
337
341
  //无数据处理
338
342
  if(res === null){
339
343
  this.hasNoData = true;
340
344
  this.dataList = [];
341
- this.page_token = ''
345
+ this.page_token = '1'
342
346
  this.$xdHideLoading();
343
347
  return
344
348
  }
@@ -348,10 +352,7 @@ export default {
348
352
 
349
353
  //整理为统一ID
350
354
  res.items = res.items.map((item,index)=>{
351
- if(!item.id){
352
- item.id = item.product_id || item.resource_shop_id || item.cinema_id
353
- }
354
- //item.list_title = `${index} - ${ item.list_title}`
355
+ item.cuid = `${this.$xdUniHelper.randomChar(5)}_${item.product_id || item.resource_shop_id || item.cinema_id || item.film_id}`
355
356
  return item;
356
357
  })
357
358
 
@@ -371,7 +372,11 @@ export default {
371
372
  this.dataList = (this.dataList||[]).concat(res.items);
372
373
  this.page_token = res.next_page_token
373
374
  this.hasNoData = false;
374
- this.$xdHideLoading();
375
+ this.$nextTick(()=>{
376
+ setTimeout(()=>{
377
+ this.$xdHideLoading();
378
+ },300)
379
+ })
375
380
  }
376
381
  })
377
382
  }
@@ -74,7 +74,6 @@
74
74
  import extsMixins from "@/mixins/extsMixins";
75
75
  import listMixins from "./listMixins";
76
76
  import CustomList from "./CustomList.vue";
77
- import search from './search';
78
77
  import AllList from "./AllList.vue";
79
78
 
80
79
  export default {
@@ -110,11 +109,19 @@
110
109
  searchScope: [],
111
110
  allListBgColor: "",
112
111
  allModulePadding: {},
112
+ allModuleRadius: 0,
113
113
  allModuleTitleBgColor: {},
114
114
  allModuleTitlePadding: {},
115
115
  allModuleMoreStyle: "",
116
116
  allModuleMargin: 20,
117
117
  allModuleTitleStyle: "",
118
+ allModuleItemContBorder: {},
119
+ allModuleItemContMargin: 20,
120
+ allModuleItemContShadow: {},
121
+ allModuleItemContPadding: {},
122
+ allModuleItemContRadius: 16,
123
+ allModuleItemContBgColor: "#FFFFFF",
124
+
118
125
  }
119
126
  },
120
127
  computed: {
@@ -212,6 +219,9 @@
212
219
  }
213
220
  cb(res.list)
214
221
  }else{
222
+ if(this.isPreview){
223
+ return cb(res.list.find(item => item.type === this.tabId.split("@")[1]))
224
+ }
215
225
  if(res.list.length > 0) cb(res.list[0])
216
226
  else cb(null)
217
227
  }
@@ -239,11 +249,18 @@
239
249
  this.searchScope = getContainerPropsValue(container, 'content.searchScope', []);
240
250
  this.allListBgColor = getContainerPropsValue(container, 'content.allListBgColor', '');
241
251
  this.allModulePadding = getContainerPropsValue(container, 'content.allModulePadding', {});
252
+ this.allModuleRadius = getContainerPropsValue(container, 'content.allModuleRadius', 0);
242
253
  this.allModuleTitleBgColor = getContainerPropsValue(container, 'content.allModuleTitleBgColor', '');
243
254
  this.allModuleTitlePadding = getContainerPropsValue(container, 'content.allModuleTitlePadding', {});
244
255
  this.allModuleMoreStyle = getContainerPropsValue(container, 'content.allModuleMoreStyle', "");
245
256
  this.allModuleMargin = getContainerPropsValue(container, 'content.allModuleMargin', 20);
246
257
  this.allModuleTitleStyle = getContainerPropsValue(container, 'content.allModuleTitleStyle', "");
258
+ this.allModuleItemContBorder = getContainerPropsValue(container, 'content.allModuleItemContBorder', {});
259
+ this.allModuleItemContMargin = getContainerPropsValue(container, 'content.allModuleItemContMargin', 20);
260
+ this.allModuleItemContShadow = getContainerPropsValue(container, 'content.allModuleItemContShadow', {});
261
+ this.allModuleItemContPadding = getContainerPropsValue(container, 'content.allModuleItemContPadding', {});
262
+ this.allModuleItemContRadius = getContainerPropsValue(container, 'content.allModuleItemContRadius', 16);
263
+ this.allModuleItemContBgColor = getContainerPropsValue(container, 'content.allModuleItemContBgColor', '#FFFFFF');
247
264
 
248
265
  if(this.$configProject['isPreview']){
249
266
  this.menuList = this.searchScope;
@@ -4,15 +4,16 @@ module.exports = {
4
4
  getTfkSearchList: {
5
5
  list: [
6
6
  {
7
+ tab: "1@product@Y@2",
7
8
  type: "product",
8
9
  name: "蛋糕",
9
10
  detail_redirect_data:
10
- '{"dir":"wtxsaas","host":"sandbox-website-05.jufubao.cn","path":"\\/main\\/order\\/detail","appType":"h5","site_id":"17928cc37788be02","site_url":"https:\\/\\/sandbox-website-05.jufubao.cn\\/wtxsaas\\/main\\/order\\/detail","frontPath":"\\/wtxsaas\\/main\\/order\\/detail","fixed_business_code":""}',
11
+ '{"dir":"market","host":"sandbox-website-05.jufubao.cn","path":"\\/main\\/mall\\/detail","appType":"h5","site_id":"17928cc37788be02","site_url":"https:\\/\\/sandbox-website-05.jufubao.cn\\/market\\/main\\/mall\\/detail","frontPath":"\\/market\\/main\\/mall\\/detail","fixed_business_code":""}',
11
12
  detail1_redirect_data: "",
12
13
  more_redirect_data: "",
13
- sort: 0,
14
+ sort: 3,
14
15
  setting_id: 1,
15
- next_page_token: 'a:2:{i:0;d:1705.0785;i:1;s:8:"60030143";}',
16
+ next_page_token: 'a:2:{i:0;d:704.99896;i:1;s:8:"60030078";}',
16
17
  items: [
17
18
  {
18
19
  brand_id: 100003,
@@ -28,39 +29,132 @@ module.exports = {
28
29
  sale_price: 3000,
29
30
  status: "ok",
30
31
  thumb: "/uploads/20231215/b2ce0235129aa592044f96343f25c338.jpeg"
32
+ },
33
+ {
34
+ brand_id: 30000,
35
+ brand_name: "其他",
36
+ list_title: "清代戏剧文化史论/北京大学明清研究丛书",
37
+ market_price: 2600,
38
+ market_tags: [],
39
+ product_id: 60029756,
40
+ product_name: "清代戏剧文化史论/北京大学明清研究丛书",
41
+ product_type: "good",
42
+ promo_price: 0,
43
+ sale_num: 0,
44
+ sale_price: 2195,
45
+ status: "ok",
46
+ thumb:
47
+ "https://img1.winxuancdn.com/1305/10251305_9.jpg?1530683968642"
48
+ },
49
+ {
50
+ brand_id: 30000,
51
+ brand_name: "其他",
52
+ list_title: "亚洲的崛起(傅骊元文集)/北京大学经济学院教授文库",
53
+ market_price: 5000,
54
+ market_tags: [],
55
+ product_id: 60030080,
56
+ product_name: "亚洲的崛起(傅骊元文集)/北京大学经济学院教授文库",
57
+ product_type: "good",
58
+ promo_price: 0,
59
+ sale_num: 0,
60
+ sale_price: 4219,
61
+ status: "ok",
62
+ thumb:
63
+ "https://img2.winxuancdn.com/9564/10309564_9.jpg?1530754178039"
64
+ },
65
+ {
66
+ brand_id: 30000,
67
+ brand_name: "其他",
68
+ list_title:
69
+ "保险.社会保障与经济改革(孙祁祥文集)/北京大学经济学院教授文库",
70
+ market_price: 5200,
71
+ market_tags: [],
72
+ product_id: 60030078,
73
+ product_name:
74
+ "保险.社会保障与经济改革(孙祁祥文集)/北京大学经济学院教授文库",
75
+ product_type: "good",
76
+ promo_price: 0,
77
+ sale_num: 0,
78
+ sale_price: 4388,
79
+ status: "ok",
80
+ thumb:
81
+ "https://img3.winxuancdn.com/9416/10309416_9.jpg?1530754178039"
31
82
  }
32
83
  ]
33
84
  },
34
85
  {
86
+ tab: "5@shop@N@1",
35
87
  type: "shop",
36
88
  name: "门店",
37
- detail_redirect_data: "",
38
- detail1_redirect_data: "",
89
+ detail_redirect_data:
90
+ '{"dir":"market","host":"sandbox-website-05.jufubao.cn","path":"\\/main\\/cake\\/storedetail","appType":"h5","site_id":"17928cc37788be02","site_url":"https:\\/\\/sandbox-website-05.jufubao.cn\\/market\\/main\\/cake\\/storedetail","frontPath":"\\/market\\/main\\/cake\\/storedetail","fixed_business_code":""}',
91
+ detail1_redirect_data:
92
+ '{"dir":"market","host":"sandbox-website-05.jufubao.cn","path":"\\/main\\/cashier\\/index","appType":"h5","site_id":"17928cc37788be02","site_url":"https:\\/\\/sandbox-website-05.jufubao.cn\\/market\\/main\\/cashier\\/index","frontPath":"\\/market\\/main\\/cashier\\/index","fixed_business_code":""}',
39
93
  more_redirect_data: "",
40
- sort: 1,
94
+ sort: 4,
41
95
  setting_id: 5,
42
- next_page_token: "a:1:{i:0;d:4.4;}",
96
+ next_page_token: "a:2:{i:0;d:20670.991802209974;i:1;d:0;}",
43
97
  items: [
44
98
  {
45
- brand_id: 0,
46
- brand_name: "",
99
+ brand_id: 20003,
100
+ brand_name: "幸福西饼",
101
+ brand_type: "MA",
102
+ business_status: "1",
103
+ consume_mode: ["STOD", "CODE", "SELL", "SELF"],
104
+ consume_mode_name: "",
105
+ distance: "21km",
106
+ is_support_jhd: false,
107
+ address: "河北廊坊市三河市燕郊镇河北廊坊燕郊润旭",
108
+ province_name: "",
109
+ city_name: "",
110
+ area_name: "",
111
+ street_name: "",
112
+ phone: "18843854566",
113
+ resource_shop_id:
114
+ "eyJyZXNvdXJjZV9zaG9wX2lkIjozMTg1NDY4LCJzaG9wX2lkIjo1MjY0OH0",
115
+ resource_shop_name: "福司令渠道门店",
47
116
  shop_icon:
48
- "https://dimg04.uat.qa.nt.ctripcorp.com/images/1lo4a12000007fyeg8D96.gif",
49
- distance: 4,
50
- business_status: "5",
51
- full_address: "北京北京北京市东城区景山前街4号",
52
- phone: "",
53
- consume_mode: ["TRAVEL"],
117
+ "https://jfbcake.oss-cn-beijing.aliyuncs.com/uploads/20220629/dda58a5983eeae3cfdea8bccc7cea714.jpg",
118
+ shop_id: 52648,
119
+ shop_tags: [],
120
+ stars: 0,
121
+ time_slot_name: "08:00-21:00",
122
+ params: {
123
+ version: 2
124
+ }
125
+ },
126
+ {
127
+ brand_id: 20004,
128
+ brand_name: "幸福西饼",
129
+ brand_type: "MA",
130
+ business_status: "1",
131
+ consume_mode: ["STOD", "CODE", "SELL", "SELF"],
54
132
  consume_mode_name: "",
55
- shop_id: 1052782,
56
- resource_shop_id: 8000302,
57
- resource_shop_name: "故宫-测试1-攻略修改",
58
- shop_tags: {},
59
- stars: 2
133
+ distance: "21km",
134
+ is_support_jhd: false,
135
+ address: "河北廊坊市三河市燕郊镇河北廊坊燕郊润旭",
136
+ province_name: "",
137
+ city_name: "",
138
+ area_name: "",
139
+ street_name: "",
140
+ phone: "18843854566",
141
+ resource_shop_id:
142
+ "eyJyZXNvdXJjZV9zaG9wX2lkIjozMTg1NDY4LCJzaG9wX2lkqewqweH0",
143
+ resource_shop_name: "福司令渠道门店",
144
+ shop_icon:
145
+ "https://jfbcake.oss-cn-beijing.aliyuncs.com/uploads/20220629/dda58a5983eeae3cfdea8bccc7cea714.jpg",
146
+ shop_id: 526428,
147
+ shop_tags: [],
148
+ stars: 0,
149
+ time_slot_name: "08:00-21:00",
150
+ params: {
151
+ version: 2
152
+ }
60
153
  }
61
154
  ]
62
155
  },
63
156
  {
157
+ tab: "10@cinema@Y@1",
64
158
  type: "cinema",
65
159
  name: "影院",
66
160
  detail_redirect_data:
@@ -68,21 +162,79 @@ module.exports = {
68
162
  detail1_redirect_data:
69
163
  '{"dir":"apply06","host":"sandbox-website-05.jufubao.cn","path":"\\/main\\/movie\\/cdetailnew","appType":"h5","site_id":"17928cc37788be02","site_url":"https:\\/\\/sandbox-website-05.jufubao.cn\\/apply06\\/main\\/movie\\/cdetailnew","frontPath":"\\/apply06\\/main\\/movie\\/cdetailnew","fixed_business_code":""}',
70
164
  more_redirect_data: "",
71
- sort: 3,
165
+ sort: 1,
72
166
  setting_id: 10,
73
167
  next_page_token: 1,
74
168
  items: [
75
169
  {
76
- address: "朝阳区安慧里三区10 (北辰购物中心对面)",
77
- brand_id: 0,
78
- brand_name: "",
79
- cinema_id: 6771413,
80
- cinema_name: "北京剧院",
81
- cinema_type: ["SEAT"],
82
- cinema_type_name: ["在线选座"],
83
- distance: "",
170
+ address: "河北省廊坊市三河市燕郊经济技术开发区汉王路34号",
171
+ brand_id: 16,
172
+ brand_name: "万达院线jls",
173
+ cinema_id: 8000121,
174
+ cinema_name: "电影门店jls-20231204(新建)北京",
175
+ cinema_type: ["SELL", "CODE"],
176
+ cinema_type_name: ["线下核销", "电子码"],
177
+ distance: "21.9km",
84
178
  is_open: "Y",
85
- shop_icon: ""
179
+ shop_icon:
180
+ "https://jfbcake.oss-cn-beijing.aliyuncs.com/uploads/20221018/5c1f49a47055a452ac6c5a3efd9d5174.jpg"
181
+ },
182
+ {
183
+ address: "燕高路西侧实验小学南侧",
184
+ brand_id: 16,
185
+ brand_name: "万达院线jls",
186
+ cinema_id: 7,
187
+ cinema_name:
188
+ "聚福宝测试影院聚福宝测试影院聚福宝测试影院聚福宝测试影院",
189
+ cinema_type: ["SEAT", "SELL"],
190
+ cinema_type_name: ["在线选座", "线下核销"],
191
+ distance: "20.8km",
192
+ is_open: "Y",
193
+ shop_icon:
194
+ "https://jfbcake.oss-cn-beijing.aliyuncs.com/uploads/20221018/5c1f49a47055a452ac6c5a3efd9d5174.jpg"
195
+ }
196
+ ]
197
+ },
198
+ {
199
+ tab: "11@film@Y@1",
200
+ type: "film",
201
+ name: "影片",
202
+ detail_redirect_data:
203
+ '{"dir":"market","host":"sandbox-website-05.jufubao.cn","path":"\\/main\\/movie\\/choose","appType":"h5","site_id":"17928cc37788be02","site_url":"https:\\/\\/sandbox-website-05.jufubao.cn\\/market\\/main\\/movie\\/choose","frontPath":"\\/market\\/main\\/movie\\/choose","fixed_business_code":""}',
204
+ detail1_redirect_data:
205
+ '{"dir":"market","host":"sandbox-website-05.jufubao.cn","path":"\\/main\\/movie\\/detail","appType":"h5","site_id":"17928cc37788be02","site_url":"https:\\/\\/sandbox-website-05.jufubao.cn\\/market\\/main\\/movie\\/detail","frontPath":"\\/market\\/main\\/movie\\/detail","fixed_business_code":""}',
206
+ more_redirect_data: "",
207
+ sort: 2,
208
+ setting_id: 11,
209
+ next_page_token: 1,
210
+ items: [
211
+ {
212
+ film_id: 130,
213
+ director: "",
214
+ is_can_buy: false,
215
+ language: "汉语普通话",
216
+ leading_role:
217
+ "费翔,李雪健,黄渤,于适,陈牧驰,娜然,此沙,武亚凡,夏雨,袁泉,王洛勇,侯雯元,黄曦彦,李昀锐,杨玏,陈坤",
218
+ open_time: 1689782400,
219
+ poster:
220
+ "https://gw.alicdn.com/tfscom/i1/O1CN01w8TjZl1xzSq3CothJ_!!6000000006514-0-alipicbeacon.jpg_320x320.jpg",
221
+ remark: "9.1分",
222
+ show_name: "封神第一部",
223
+ type: "剧情,奇幻"
224
+ },
225
+ {
226
+ film_id: 131,
227
+ director: "",
228
+ is_can_buy: false,
229
+ language: "汉语普通话",
230
+ leading_role:
231
+ "费翔,李雪健,黄渤,于适,陈牧驰,娜然,此沙,武亚凡,夏雨,袁泉,王洛勇,侯雯元,黄曦彦,李昀锐,杨玏,陈坤",
232
+ open_time: 1689782400,
233
+ poster:
234
+ "https://gw.alicdn.com/tfscom/i1/O1CN01w8TjZl1xzSq3CothJ_!!6000000006514-0-alipicbeacon.jpg_320x320.jpg",
235
+ remark: "9.1分",
236
+ show_name: "封神第二部",
237
+ type: "剧情,奇幻"
86
238
  }
87
239
  ]
88
240
  }