1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| import request from '@/router/axios';
|
| //编码申请树
| export const getAuthTree = (params) => {
| return request({
| url: '/api/ubcs-code/codeApplyWebManagementController/getAuthTree',
| method: 'get',
| params:{
| ...params
| }
| })
| }
| //编码申请控件
| export const getUsedTemplateByClassifyOid = (params) => {
| return request({
| url: '/api/ubcs-code/codeApplySwingController/getUsedTemplateByClassifyOid',
| method: 'get',
| params
| })
| }
| export function getCodeRule(params) {
| return request({
| url: 'api/ubcs-code/mdmEngineController/getCodeRuleByClassifyOid',
| method: 'get',
| params
| })
| }
|
|