centaline-data-driven 1.3.1 → 1.3.2

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.
@@ -32,6 +32,8 @@ const Detail = function (source,para ,callBack) {
32
32
  _commissionList:null,
33
33
  get mediaAlbums() {
34
34
  return data.mediaAlbums||[];
35
+ }, get noMediaUrl() {
36
+ return data.noMediaUrl||"";
35
37
  },
36
38
  get title() {
37
39
  return data.title;
@@ -98,6 +98,9 @@ const Router = function (source) {
98
98
  get isSearchPageWithList() {
99
99
  return source.pageStyle === Enum.PageStyle.SearchPageWithList;
100
100
  },
101
+ get isUrlInLayer(){
102
+ return source.pageStyle === Enum.PageStyle.UrlInLayer;
103
+ },
101
104
  get isOpenUrlInBrowse() {
102
105
  return source.actionType === Enum.ActionType.OpenUrlInBrowse;
103
106
  },
@@ -544,7 +544,12 @@ const Enum = {
544
544
  /// <summary>
545
545
  /// 查询列表选择页(如:客户选择)
546
546
  /// </summary>
547
- SearchPageWithList: 7
547
+ SearchPageWithList: 7,
548
+
549
+ /// <summary>
550
+ /// URL页面(弹层)
551
+ /// </summary>
552
+ UrlInLayer: 8,
548
553
  },
549
554
 
550
555
  /// <summary>