> 返回字段說明
| 字段 | 名稱 | 說明 |
| --- | --- | --- |
| content| 申請內容 | 數組格式 |
| form_title| 審批表單名稱 | |
| status_cancel| 申請人撤回狀態 | 是否撤回狀態【 0正常,1撤回】。如果此項值為**1**,則列表狀態顯示**撤回**;如果此項值為**0**,則列表狀態顯示**審批狀態**; |
| status_check| 審批狀態 | 審批狀態【0未審批/審批中,1審批通過,2審批駁回】 |
> 接口數據所處頁面區域,如下圖

~~~[api]
get:/v1/approvesys/formContent/get
*form_id#表單id
*content_id#審批內容id
<<<
success
{
"code": 0,
"msg": "ok",
"data": {
"id": 17,
"open_id": "0490ec1e8af0a2710f2baf64fc0b01c7",
"content_id": "5f2a270443c7cd058e28138da602fff2",
"content": [
{
"title": "單行文本",
"value": "咯哦"
},
{
"title": "多行文本",
"value": "咯么"
},
{
"title": "日期",
"value": "2018-12-08"
},
{
"title": "日期時間",
"value": "2018-12-08 14:57"
},
{
"title": "金額",
"value": "6556"
},
{
"title": "單選",
"value": "選項2"
},
{
"title": "開關",
"value": "true"
},
{
"title": "下拉框",
"value": "選項3"
}
],
"form_id": "64129274e911d52a85b4ce02a81243ca",
"form_title": "模板demo",
"status_cancel": 0,
"status_check": 2,
"status_del": 0,
"timestamp": 1544252316,
"timeformat": "2018/12/08 14:58"
}
}
<<<
error
~~~