| | |
| | | }) |
| | | } |
| | | |
| | | export const gridCodeRule = (params) => { |
| | | export const getRegexStr = (params) => { |
| | | return request({ |
| | | url: '/api/ubcs-code/mdmRule/gridCodeRule', |
| | | url: '/api/ubcs-code/codeRuleCharacterController/getRegexStr', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | | }, |
| | | } |
| | | }) |
| | | } |
| | | |
| | | export const getSelectList = (params) => { |
| | | return request({ |
| | | url: '/api/ubcs-code/codeRuleCharacterController/selectList', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | | } |
| | | }) |
| | | } |
| | | |
| | | export const addSave = (codeRuleCharacterVO) => { |
| | | return request({ |
| | | url: '/api/ubcs-code/codeRuleCharacterController/addSave', |
| | | method: 'post', |
| | | data:codeRuleCharacterVO |
| | | }) |
| | | } |
| | | |
| | | export const editSave = (codeRuleCharacterVO) => { |
| | | return request({ |
| | | url: '/api/ubcs-code/codeRuleCharacterController/editSave', |
| | | method: 'post', |
| | | data:codeRuleCharacterVO |
| | | }) |
| | | } |
| | | |
| | | export const deleteSave = (codeRuleCharacterVO) => { |
| | | return request({ |
| | | url: '/api/ubcs-code/codeRuleCharacterController/delete', |
| | | method: 'post', |
| | | data:codeRuleCharacterVO |
| | | }) |
| | | } |