Browse Source

完善流程抄送

master
yunuo970428 2 years ago
parent
commit
698ee60142
  1. 8
      supervise-portal-ui/src/api/system/postManage/index.js
  2. 4
      supervise-portal-ui/src/views/copyofprocess/liuchengchasongguanli.vue

8
supervise-portal-ui/src/api/system/postManage/index.js

@ -76,3 +76,11 @@ export function selectList(data){
params: data params: data
}) })
} }
// 查询所有流程名称
export function selectFlowList(){
return request({
url: '/flowable/v1/flow/selectFlowList',
method: 'get'
})
}

4
supervise-portal-ui/src/views/copyofprocess/liuchengchasongguanli.vue

@ -57,7 +57,7 @@
<script> <script>
import { pageList, delBySids } from '@/api/system/liuchengchaosong/liuchengchaosong' import { pageList, delBySids } from '@/api/system/liuchengchaosong/liuchengchaosong'
import { pullDown } from '@/api/system/postManage/index' import { selectFlowList } from '@/api/system/postManage/index'
import Pagination from '@/components/pagination' import Pagination from '@/components/pagination'
import pageye from '@/components/pagination/pageye' import pageye from '@/components/pagination/pageye'
import ButtonBar from '@/components/ButtonBar' import ButtonBar from '@/components/ButtonBar'
@ -121,7 +121,7 @@ export default {
}, },
methods: { methods: {
init() { init() {
pullDown({ type: 'flow' }).then((res) => { selectFlowList().then((res) => {
if (res.success) { if (res.success) {
this.flow_list = res.data this.flow_list = res.data
} }

Loading…
Cancel
Save