jufubao-base 1.0.264 → 1.0.265

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-base",
3
- "version": "1.0.264",
3
+ "version": "1.0.265",
4
4
  "private": false,
5
5
  "description": "聚福宝业务组件基础插件包",
6
6
  "main": "index.js",
@@ -324,7 +324,7 @@ export default {
324
324
  inline: false,
325
325
  notice: '轮播速度设置仅在“<span style="color:red">轮播图显示</span>”生效,单位:<span style="color:red">秒</span>',
326
326
  },
327
- params['isCarousel'] === 2 && {
327
+ (params['isCarousel'] === 2 || params['isCarousel'] === 3) && {
328
328
  labelInline: true,
329
329
  label: '导航数量:',
330
330
  ele: 'el-input',
@@ -356,14 +356,13 @@ export default {
356
356
  notice: '在使用非通屏显示类型广告位之外的样式时,<span style="color: red">(显示索引+标题|显示索引)</span>使用"<span style="color: red">显示圆点</span>"',
357
357
  inline: false,
358
358
  },
359
- {
359
+ params['isCarousel']!==3&&{
360
360
  label: '导航显示行数:',
361
361
  ele: 'xd-radio',
362
362
  valueKey: 'jdRows',
363
363
  groupKey:'content',
364
364
  value: params.jdRows,
365
- defaultValue: params['isCarousel']===3?1:params.jdRows,
366
- disabled: params['isCarousel']===3,
365
+ defaultValue: params.jdRows,
367
366
  className: 'input60',
368
367
  labelInline: true,
369
368
  list: [
@@ -247,6 +247,8 @@
247
247
  this.isCarousel = getContainerPropsValue(container, 'content.isCarousel', 1);
248
248
  if(this.isCarousel===3){
249
249
  this.carouselType='slider'
250
+ } else {
251
+ this.carouselType=''
250
252
  }
251
253
  this.isCarousel = this.isCarousel=== 2
252
254
  this.carouselTime = Number(getContainerPropsValue(container, 'content.carouselTime', 5)) * 1000;