jufubao-base 1.0.187-beta2 → 1.0.187-beta3

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.
@@ -37,7 +37,7 @@ export default {
37
37
  ele: 'xd-radio',
38
38
  valueKey: 'is_show_product',
39
39
  groupKey:'content',
40
- value:data['is_show_product']|| '',
40
+ value:data['is_show_product'] || 'Y',
41
41
  placeholder: '请选择',
42
42
  list: [
43
43
  {"label": "是", "value": "Y"},
@@ -457,8 +457,11 @@
457
457
  //外站配置地址
458
458
  if(entry.redirect_type === 'URL') {
459
459
  if(regHttp.test(entry.redirect_data['path']) || regSp.test(entry.redirect_data['path'])) {
460
+ let urlPath = entry.redirect_data['path'];
461
+ if(urlPath.indexOf('?') === -1) urlPath = `${urlPath}?x-common=${nsp}&vs=${new Date().getTime()}`;
462
+ else urlPath = `${urlPath}&x-common=${nsp}&vs=${new Date().getTime()}`;
460
463
  this.$xdUniHelper.redirectTo({
461
- url:`${entry.redirect_data['path']}?x-common=${nsp}&vs=${new Date().getTime()}${cardPathStr}`
464
+ url:urlPath
462
465
  }, false)
463
466
  }
464
467
  else {
@@ -38,12 +38,15 @@ export default {
38
38
  groupKey:'content',
39
39
  value: data['newLabel'] || null,
40
40
  defaultValue: data['newLabel'],
41
+ setting: {
42
+ isNeedSwitch: false,
43
+ },
41
44
  list: [
42
45
  {
43
46
  icon: "iconpiao",
44
47
  label: "票券",
45
48
  value: 'card',
46
- sort: 1
49
+ sort: 1,
47
50
  },
48
51
  {
49
52
  icon: "iconyuanbao",