diff --git a/hb_client/src/api/user.js b/hb_client/src/api/user.js
index 8edf3ab..ac708c3 100644
--- a/hb_client/src/api/user.js
+++ b/hb_client/src/api/user.js
@@ -30,6 +30,14 @@ export function getUserList(query) {
})
}
+export function getOrganizationList(query) {
+ return request({
+ url: '/system/organization/',
+ method: 'get',
+ params: query
+ })
+}
+
export function getUser(id) {
return request({
url: `/system/user/${id}/`,
diff --git a/hb_client/src/views/workflow/customfield.vue b/hb_client/src/views/workflow/customfield.vue
index 76b154f..b9bda45 100644
--- a/hb_client/src/views/workflow/customfield.vue
+++ b/hb_client/src/views/workflow/customfield.vue
@@ -148,9 +148,10 @@ export default {
hasJsonFlag:true, // json是否验证通过
hasJsonFlag1:true, // json是否验证通过
hasJsonFlag2:true, // json是否验证通过
- customfieldList: {
- count:0
- },
+ // customfieldList: {
+ // count:0
+ // },
+ customfieldList:[],
options: [{
value: 'string',
label: '文本'
diff --git a/hb_client/src/views/workflow/state.vue b/hb_client/src/views/workflow/state.vue
index e103b8c..8c7062c 100644
--- a/hb_client/src/views/workflow/state.vue
+++ b/hb_client/src/views/workflow/state.vue
@@ -76,7 +76,7 @@