yxh
2025-12-26 e2d9cc31cd1c36b6bb9d00e31e20f5fd56c8e2f3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import request from '@/utils/request'
 
 
 
//差旅费上报
export function getSubsidy(cityCode) {
  return request({
    url: '/project/travelcity/getSubsidy/' + cityCode,
    method: 'get'
  })
}
 
// 新增出差城市
export function addtravelcity(data) {
  return request({
    url: '/project/travelcity/add',
    method: 'post',
    data: data
  })
}