duy 2 tygodni temu
rodzic
commit
fee334d490
2 zmienionych plików z 2 dodań i 2 usunięć
  1. 1 1
      src/api/modules/tasks/flow.js
  2. 1 1
      src/views/tasks/flow.vue

+ 1 - 1
src/api/modules/tasks/flow.js

@@ -78,7 +78,7 @@ export default {
     //新增流程新的/blade-business/fixedFlow/saveFixedFlow
     async saveFixedFlow(form) {
         return HcApi({
-            url: '/api/blade-business/fixedFlow/save',
+            url: '/api/blade-business/fixedFlow/saveFixedFlow',
             method: 'post',
             data: form,
         })

+ 1 - 1
src/views/tasks/flow.vue

@@ -123,7 +123,7 @@ const tableLoading = ref(false)
 const tableListData = ref([])
 
 const tableListColumn = ref([
-    { key: 'fixedName', name: '流程名称' },
+    { key: 'fixedFlowName', name: '流程名称' },
     { key: 'linkUserJoinString', name: '流程详情' },
     { key: 'action', name: '操作', width: '200', align: 'center' },
 ])