```javascript
WXAPI.orderReputation({
  postJsonString: 'postJsonString的Json格式的字符串'
})
```
+ postJsonString 评价内容
postJsonString例子:
```json
{
    "token": "45fce34a-cae3-428e-827a-471cef71b30f",
    "orderId": "1283544",
    "reputations": [
        {
            "id": "2040703",
            "reputation": 2,
            "remark": "非常好",
            "pics": [
                "https://7.s2m.cc/cuser/951/2022/01/13/4c432164-d55f-4f07-806d-55de1bd51768.png"
            ]
        }
    ]
}
```
+ token 当前用户登陆凭证
+ orderId 评价的订单id
+ reputations 数组,存放订单里面的每一个商品信息的满意度
    - id 订单详情返回的商品信息记录的id
    - reputation 0 差评 1 中评 2 好评
    - remark 评价内容,一般由用户输入
    - pics 买家秀图片数据
```json
{
    "code": 0,
    "msg": "success"
}
```