Initial commit

This commit is contained in:
一休哥哥6666
2026-06-14 14:39:51 +08:00
commit e186d45bec
1484 changed files with 305925 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
import request from '@/utils/request'
// 查询产品下拉选项
export function listProductOptions(tenantId) {
return request({
url: '/jysystem/product/options',
method: 'get',
params: { tenantId }
})
}