mirror of
https://gitee.com/Donal/ofd.js.git
synced 2024-11-29 18:38:55 +08:00
Merge remote-tracking branch 'origin/dev' into dev
This commit is contained in:
commit
ba71d070ed
84
README.md
84
README.md
@ -37,6 +37,90 @@ parseOfdDocument({
|
||||
});
|
||||
```
|
||||
|
||||
## 服务接口
|
||||
|
||||
### OFD转PDF
|
||||
|
||||
URL:http://donal-tong.ticp.io/api/ofd/convertPdf
|
||||
|
||||
请求方式:POST
|
||||
|
||||
报文格式:Content-Type: application/json
|
||||
|
||||
请求参数:
|
||||
|
||||
| 参数 | 说明 | 类型 | 是否必填 |
|
||||
| ----------- | ------------------------------------------------------------ | ------- | -------- |
|
||||
| ofdBase64 | 待转换的OFD版式文件,BASE64编码的字符串 | String | 是 |
|
||||
|
||||
|
||||
请求参数示例:
|
||||
|
||||
```json
|
||||
{
|
||||
"ofdBase64":"{{ofdBase64}}"
|
||||
}
|
||||
```
|
||||
|
||||
返回数据:
|
||||
|
||||
| 数据 | 说明 |
|
||||
| ------- | ------------------------------------------------------ |
|
||||
| code | 返回码。"0"表示成功,其余表示失败,失败原因参考message |
|
||||
| message | 请求结果信息 |
|
||||
| data | 转后的pdf文件,BASE64编码的字符串 |
|
||||
|
||||
返回数据示例:
|
||||
|
||||
```json
|
||||
{
|
||||
"code": "0",
|
||||
"data": "xxx",
|
||||
"message": "成功"
|
||||
}
|
||||
```
|
||||
|
||||
### PDF转OFD
|
||||
|
||||
URL:http://donal-tong.ticp.io/api/ofd/convertOfd
|
||||
|
||||
请求方式:POST
|
||||
|
||||
报文格式:Content-Type: application/json
|
||||
|
||||
请求参数:
|
||||
|
||||
| 参数 | 说明 | 类型 | 是否必填 |
|
||||
| ----------- | ------------------------------------------------------------ | ------- | -------- |
|
||||
| pdfBase64 | 待转换的Pdf,BASE64编码的字符串 | String | 是 |
|
||||
|
||||
|
||||
请求参数示例:
|
||||
|
||||
```json
|
||||
{
|
||||
"pdfBase64":"{{pdfBase64}}"
|
||||
}
|
||||
```
|
||||
|
||||
返回数据:
|
||||
|
||||
| 数据 | 说明 |
|
||||
| ------- | ------------------------------------------------------ |
|
||||
| code | 返回码。"0"表示成功,其余表示失败,失败原因参考message |
|
||||
| message | 请求结果信息 |
|
||||
| data | 转后的ofd文件,BASE64编码的字符串 |
|
||||
|
||||
返回数据示例:
|
||||
|
||||
```json
|
||||
{
|
||||
"code": "0",
|
||||
"data": "xxx",
|
||||
"message": "成功"
|
||||
}
|
||||
```
|
||||
|
||||
## 愿景
|
||||
希望能做到pdf.js的高度
|
||||
|
||||
|
@ -403,8 +403,8 @@ export default {
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (this.file.size > 20 * 1024 * 1024) {
|
||||
this.$alert('error', '文件大小需 < 20M', {
|
||||
if (this.file.size > 100 * 1024 * 1024) {
|
||||
this.$alert('error', '文件大小需 < 100M', {
|
||||
confirmButtonText: '确定',
|
||||
callback: action => {
|
||||
this.$message({
|
||||
@ -444,8 +444,8 @@ export default {
|
||||
});
|
||||
return;
|
||||
}
|
||||
if (this.pdfFile.size > 20 * 1024 * 1024) {
|
||||
this.$alert('error', '文件大小需 < 20M', {
|
||||
if (this.pdfFile.size > 100 * 1024 * 1024) {
|
||||
this.$alert('error', '文件大小需 < 100M', {
|
||||
confirmButtonText: '确定',
|
||||
callback: action => {
|
||||
this.$message({
|
||||
|
Loading…
Reference in New Issue
Block a user