用户中心和采购计划完善

This commit is contained in:
砂糖
2025-10-13 17:51:27 +08:00
parent 8db5eb7707
commit d0520e7872
48 changed files with 4833 additions and 713 deletions

View File

@@ -0,0 +1,10 @@
// 汇率API直接请求第三方服务
import request from "@/util/oaRequest"
// 获取美元兑人民币汇率dateStr可选便于后续扩展
export async function getExchangeRate(dateStr) {
return request({
url: '/oa/exchangeRate/usd2cny',
date: dateStr
})
}