You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
310 B
16 lines
310 B
4 weeks ago
|
import request from '@/utils/request'
|
||
|
|
||
|
|
||
|
export const getCode = (time: any) => {
|
||
|
return request({
|
||
|
url: '/sys/randomImage/' + time,
|
||
|
})
|
||
|
}
|
||
|
// 注册
|
||
|
export const sturegister = (data: any) => {
|
||
|
return request({
|
||
|
url: '/sys/user/sturegister',
|
||
|
method: 'POST',
|
||
|
data,
|
||
|
})
|
||
|
}
|