2.14.2 • Published 7 months ago

@wii/cms-sdk v2.14.2

Weekly downloads
-
License
-
Repository
-
Last release
7 months ago

wii-cms-sdk

内容中心 SDK,提供内容选取功能

安装

npm install @wii/cms-sdk

使用

实例化

import CMSSDK from '@wii/cms-sdk';

const cms = new CMSSDK({
  url: '',
  skey: '',
  sourceId: '',
  type: 1,
});

打开选择器

cms.show({
  type: 1,
  callback: ({ list }) => {
    console.log(list);
  },
});

关闭选择器

cms.hide();

SDK 配置 - SDKOptions

export interface SDKOptions {
  url: string; // 素材中心选择器地址
  skey: string; // 鉴权 token
  type?: string; // 内容类型,article: 文章,resource: 资源;
  code?: string; // 子类型编码;
  width?: number; // 弹窗宽度
  height?: number; // 弹窗内容区高度
  mode?: 'multiple' // 多选、单选,默认单选
  maxCount?: number; // 最大选择数量
  onAuth?: () => void; // 鉴权失败回调
}
2.11.0

9 months ago

2.14.1

7 months ago

2.14.2

7 months ago

2.12.1

7 months ago

2.14.0

7 months ago

2.12.2

7 months ago

2.10.1

1 year ago

2.10.0

1 year ago

2.9.2

1 year ago