add pic upload service

mgy
Dawn_Ocean 2024-04-08 18:57:13 +08:00
parent 51407930bb
commit d1d01f0ad1
3 changed files with 7 additions and 3 deletions

View File

@ -248,7 +248,8 @@ Request
{
"token": "token_test",
"id": "id",
"content" : "为什么 PD 不能充电呢?"
"content": "为什么 PD 不能充电呢?",
"pic": ["https://....jpg"]
}
```

View File

@ -79,6 +79,7 @@ export class Comment extends Component {
showAddBtn={this.state.files.length !== 3}
count={3}
files={this.state.files}
sizeType={['compressed']}
onChange={this.handlePicChange.bind(this)}
/>
</View>

View File

@ -11,11 +11,13 @@ export function submitComment(that: Comment) {
isLoading: true,
});
Taro.request({
url: getUrl('/report'),
url: getUrl('/ticket/addnote'),
method: 'POST',
data: {
token: wechatUser.getToken(),
comment: that.state.comment,
content: that.state.comment,
id: that.props.id,
pic: that.state.files,
},
})
.then((res) => {