1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- import {httpApi} from "../../request/httpApi";
- export default {
- //分页数据
- async getPageData(form) {
- return httpApi({
- url: '/api/blade-business/fixedFlow/page',
- method: 'get',
- params: form
- })
- },
- //获取系统所有角色划分
- async queryAllRoleList(form) {
- return httpApi({
- url: '/api/blade-business/fixedFlow/queryAllRoleList',
- method: 'get',
- params: form
- });
- },
- //详情
- async queryFixedFlowDetail(form) {
- return httpApi({
- url: '/api/blade-business/fixedFlow/detail',
- method: 'get',
- params: form
- });
- },
- //新增
- async addFixedFlowData(form) {
- return httpApi({
- url: '/api/blade-business/fixedFlow/save',
- method: 'post',
- data: form
- });
- },
- //修改
- async updateFixedFlowData(form) {
- return httpApi({
- url: '/api/blade-business/fixedFlow/update',
- method: 'post',
- data: form
- });
- },
- }
|