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.
18 lines
387 B
18 lines
387 B
import http from '../utils/http/index.js'
|
|
// 获取拜访记录列表
|
|
export function getVisitRecordList(data) {
|
|
return http.get(
|
|
{
|
|
url: '/yyt-uec/get/supplier/visit-record-list',
|
|
data
|
|
},
|
|
{ hideLoading: true }
|
|
)
|
|
}
|
|
// 新增拜访记录
|
|
export function createVisitRecord(data) {
|
|
return http.post({
|
|
url: '/yyt-uec/create/supplier/visit-record',
|
|
data
|
|
})
|
|
}
|