2024-04-02 11:32:29 +08:00
|
|
|
import request from '@/utils/request'
|
|
|
|
|
|
|
|
|
|
// 标签
|
|
|
|
|
export function labelFieldList(fieldType) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/manage/labelfieldinfo/labelFieldList?fieldType=${fieldType}`,
|
|
|
|
|
method: 'get',
|
|
|
|
|
})
|
2024-06-03 15:22:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//上传图片
|
|
|
|
|
export function richTextPictureUrl(data) {
|
|
|
|
|
return request({
|
|
|
|
|
url: `/common/richTextPictureUrl`,
|
|
|
|
|
method: 'post',
|
|
|
|
|
data
|
|
|
|
|
})
|
2024-04-02 11:32:29 +08:00
|
|
|
}
|