🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
**简要描述** - 评价订单 **请求URL:** - ` index/Order/orderComment ` **参数:** |参数名|必选|类型|说明| |:---- |:---|:----- |----- | |token | 是 | string | 用户token | |order_sn | 是 | string | 无 | |- info | 是 | arr | 评价信息 | |goods_id | 是 | int | 商品id | |product_score | 是 | int | 商品分数(1~5) | |service_score | 是 | int | 服务分数(1~5) | |content | 是 | int | 评价内容 | |imgs | 是 | int | 评价图片,最多8张 | **请求示例** ``` $.post(url + 'index/Order/orderComment', { user_id : 1, order_sn :'NO202004096402241942541', info : [ { goods_id: 35, product_score: 5, service_score: 4, content: '东西很好,好评', imgs: '/uploads/20200318/5babdac5c158b5ed2a9d7d62aa977c08.jpg,/uploads/20200318/3a07384869546915db4e21da9c6d0de1.jpgg' }, { goods_id: 36, product_score: 4, service_score: 5, content: '东西很好,好评好评', imgs: '' } ] }, function (res) { console.log(JSON.parse(res)); }); ``` **返回示例** ``` { "code": 1, "msg": "操作成功", "data": "" } ```