Showing
2 changed files
with
3 additions
and
3 deletions
| ... | @@ -2535,7 +2535,7 @@ export default { | ... | @@ -2535,7 +2535,7 @@ export default { |
| 2535 | } else { | 2535 | } else { |
| 2536 | let flow_id = getFlowId(); | 2536 | let flow_id = getFlowId(); |
| 2537 | let _path = urlQuery._path? urlQuery._path : ''; | 2537 | let _path = urlQuery._path? urlQuery._path : ''; |
| 2538 | - state.preview_form_url = `/admin/?a=flow&t=view&p=${_path}&_flow=${flow_id}&_flow_node=${model.id}`; | 2538 | + state.preview_form_url = `/admin/?a=flow&t=view&m=mod&p=${_path}&_flow=${flow_id}&_flow_node=${model.id}`; |
| 2539 | } | 2539 | } |
| 2540 | } | 2540 | } |
| 2541 | 2541 | ... | ... |
| 1 | <!-- | 1 | <!-- |
| 2 | * @Date: 2023-11-01 10:18:53 | 2 | * @Date: 2023-11-01 10:18:53 |
| 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com | 3 | * @LastEditors: hookehuyr hookehuyr@gmail.com |
| 4 | - * @LastEditTime: 2024-07-12 17:43:10 | 4 | + * @LastEditTime: 2024-07-13 17:41:22 |
| 5 | * @FilePath: /vue-flow-editor/doc/selectUserView.vue | 5 | * @FilePath: /vue-flow-editor/doc/selectUserView.vue |
| 6 | * @Description: 成员列表选择控件 | 6 | * @Description: 成员列表选择控件 |
| 7 | --> | 7 | --> |
| ... | @@ -792,7 +792,7 @@ const onClearSearch = () => { | ... | @@ -792,7 +792,7 @@ const onClearSearch = () => { |
| 792 | * @param {*} val | 792 | * @param {*} val |
| 793 | */ | 793 | */ |
| 794 | const onSearchInput = (val) => { | 794 | const onSearchInput = (val) => { |
| 795 | - axios.get('/admin/?a=search_user_dept_role&word=' + val) | 795 | + axios.get('/admin/?a=search_user_dept_role&m=mod&word=' + val) |
| 796 | .then(res => { | 796 | .then(res => { |
| 797 | if (res.data.code) { | 797 | if (res.data.code) { |
| 798 | searchUserList.value = res.data.data; | 798 | searchUserList.value = res.data.data; | ... | ... |
-
Please register or login to post a comment