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.

17 lines
377 B

3 years ago
import request from "@/utils/request"
3 years ago
export function getOutDetail({ tbname,out_caigou_id,out_contract_id,out_pay_id,out_zhaobiao_id }) {
3 years ago
return request({
method: 'get',
url: '/index.php',
3 years ago
requestBase: '/old',
3 years ago
params: {
s: "/Api/flowDetail",
tbname,
3 years ago
out_caigou_id,
3 years ago
out_contract_id,
3 years ago
out_pay_id,
out_zhaobiao_id
3 years ago
}
})
}