经过4天的努力总算把 两个模块开发出来了,经过一晚上的在云服务器的配置,总算可以发不了哈哈

This commit is contained in:
simple321vip
2022-04-05 23:34:16 +08:00
parent 5c78d43302
commit 1a74970092
11 changed files with 308 additions and 72 deletions
+5 -2
View File
@@ -1,10 +1,13 @@
import request from '../utils/request'
import Qs from 'qs'
const search_bookmark = (params: Object) => {
return request({
url: '/bookmark',
method: 'get',
headers: {},
params: params
params: params,
paramsSerializer: (params) => {
return Qs.stringify(params, { arrayFormat: 'repeat' })
},
})
}