23 lines
497 B
JavaScript
23 lines
497 B
JavaScript
import request from '@/utils/request'
|
|
|
|
export function getExtractDataTableNameList() {
|
|
return request({
|
|
url: '/property/dataRunName/extractDataTableName',
|
|
method: 'post',
|
|
})
|
|
}
|
|
|
|
export function findTableValue(dataId,name) {
|
|
return request({
|
|
url: '/property/dataRunName/findTableValue?dataId='+dataId+"&tableName="+name,
|
|
method: 'post',
|
|
})
|
|
}
|
|
|
|
export function selectBasicList() {
|
|
return request({
|
|
url: '/property/dataRunName/selectBasicList',
|
|
method: 'post',
|
|
})
|
|
}
|