权证发起转让

This commit is contained in:
唐明明
2021-09-18 17:13:47 +08:00
parent ac4552a3ee
commit b7cacb38c7
12 changed files with 4128 additions and 3184 deletions

View File

@@ -47,12 +47,29 @@ const marketsPay = (id, platform) => {
})
}
//
// 转让权证信息
const marketsCreateInfo = symbol => {
return request({
url: 'markets/user/markets/create',
data: { symbol }
})
}
// 提交权证转让
const marketsCreate = data => {
return request({
url: 'markets/user/markets/create',
method: 'POST',
data
})
}
export {
markets,
marketsLogs,
marketsInfo,
marketsBuy,
marketsPay
marketsPay,
marketsCreateInfo,
marketsCreate
}