mirror of
https://gitee.com/dromara/RuoYi-Vue-Plus.git
synced 2026-09-19 01:48:47 +08:00
80 lines
2.1 KiB
HTTP
80 lines
2.1 KiB
HTTP
### 批量上传字体
|
|
POST http://localhost:19200/h5/font/create
|
|
Content-Type: application/json
|
|
|
|
[
|
|
{
|
|
"id": 1,
|
|
"sourceId": "GD",
|
|
"name": "OpenSans-Bold",
|
|
"preview": {
|
|
"url": "https://st0.dancf.com/csc/49/fonts/0/20200809-105104-c105.svg",
|
|
"width": 490,
|
|
"height": 80,
|
|
"partial_video": "",
|
|
"video": "",
|
|
"hex": "",
|
|
"duration": 0
|
|
},
|
|
"price": null,
|
|
"items": [],
|
|
"content": {
|
|
"family": "Open Sans",
|
|
"alias": "Open Sans Bold",
|
|
"style": "normal",
|
|
"weight": 700,
|
|
"woff": "https://gd-filems.dancf.com/gaoding/editor/20240116-211715-jaeea.woff",
|
|
"ttf": "https://gd-filems.dancf.com/gaoding/editor/20240116-211715-kiige.ttf",
|
|
"lang": "en",
|
|
"origin_file": {
|
|
"size": 104120,
|
|
"url": "https://st0.dancf.com/csc/49/fonts/0/20200809-105059-cc06.ttf"
|
|
},
|
|
"woff_size": 56092,
|
|
"ttf_size": 92500,
|
|
"meta_data": {
|
|
"ascent": 2189,
|
|
"descent": -600,
|
|
"emSize": 2048,
|
|
"typoAscent": 2189,
|
|
"typoDescent": -600,
|
|
"typoLineGap": 0,
|
|
"winAscent": 2189,
|
|
"winDescent": 600,
|
|
"capitalHeight": 1462,
|
|
"underlinePosition": -154,
|
|
"underlineThickness": 102,
|
|
"fsType": 0,
|
|
"hheadAscent": 2189,
|
|
"hheadDescent": -600,
|
|
"hheadLineGap": 0,
|
|
"xheight": 1118
|
|
}
|
|
},
|
|
"content_id": null,
|
|
"content_url": "https://gd-filems.dancf.com/xi19e5/xi19e5/0/32d51454-451e-4b80-a8b2-138fa5d185e750.json?auth_key=1763092800-10a7b6d1071b4787b7225660db3f71a1-0-8c6b2cbd6b9aae7a0943fd4190e16094",
|
|
"lang": "en",
|
|
"alias": "Open Sans Bold",
|
|
"authorization_id": 26,
|
|
"user_over_role": 0,
|
|
"sale_type": 0,
|
|
"createTime": 1602230400,
|
|
"updateTime": 1602230400
|
|
}
|
|
]
|
|
|
|
### 分页查询字体
|
|
GET http://localhost:19200/h5/font/page?name=OpenSans&type=en&pageNum=1&pageSize=10
|
|
Accept: application/json
|
|
|
|
### 根据字体族名称列表查询字体
|
|
POST http://localhost:19200/h5/font/list
|
|
Content-Type: application/json
|
|
|
|
[
|
|
"Open Sans"
|
|
]
|
|
|
|
### 根据ID获取字体详情
|
|
GET http://localhost:19200/h5/font/1
|
|
Accept: application/json |