123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- import request from '@/utils/request'
- // 字典值yzdqId
- export function getDictionaryFn(data) {
- return request({
- url: '/system/dict/data/type/'+data,
- method: 'get',
- type:true
- })
- }
- // 参数设置
- export function getconfigKeyFn(data) {
- return request({
- url: '/system/config/scoreWatermark/'+data,
- method: 'get',
- type:true
- })
- }
- // // 流程发起时获取下一节点
- // export function getflowableNextRegFn(data) {
- // return request({
- // 'url': '/flowable/task/nextFlowNodeByStart',
- // 'method': 'post',
- // data:data
- // })
- // }
- // // 发起流程
- // export function getflowableRegFn(id,data) {
- // return request({
- // 'url': '/flowable/definition/start/'+id,
- // 'method': 'post',
- // data:data
- // })
- // }
- // //获取流程定义列表
- // export function getflowlistFn(data) {
- // return request({
- // 'url': '/flowable/definition/list',
- // 'method': 'get',
- // 'data':data
- // })
- // }
- // //获取自己发起的流程
- // export function getflowMyFn(data) {
- // return request({
- // 'url': '/flowable/task/myProcess',
- // 'method': 'get',
- // 'data':data
- // })
- // }
|