Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
vue-flow-editor
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2024-07-13 17:46:51 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
84c7d7e187dc792744b2d1e94d11d1abe3422c4f
84c7d7e1
1 parent
4e936673
fix 直接请求的接口需要补参数
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
doc/index.vue
doc/selectUserView.vue
doc/index.vue
View file @
84c7d7e
...
...
@@ -2535,7 +2535,7 @@ export default {
} else {
let flow_id = getFlowId();
let _path = urlQuery._path? urlQuery._path : '';
state.preview_form_url = `/admin/?a=flow&t=view&p=${_path}&_flow=${flow_id}&_flow_node=${model.id}`;
state.preview_form_url = `/admin/?a=flow&t=view&
m=mod&
p=${_path}&_flow=${flow_id}&_flow_node=${model.id}`;
}
}
...
...
doc/selectUserView.vue
View file @
84c7d7e
<!--
* @Date: 2023-11-01 10:18:53
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-07-1
2 17:43:10
* @LastEditTime: 2024-07-1
3 17:41:22
* @FilePath: /vue-flow-editor/doc/selectUserView.vue
* @Description: 成员列表选择控件
-->
...
...
@@ -792,7 +792,7 @@ const onClearSearch = () => {
* @param {*} val
*/
const onSearchInput = (val) => {
axios.get('/admin/?a=search_user_dept_role&word=' + val)
axios.get('/admin/?a=search_user_dept_role&
m=mod&
word=' + val)
.then(res => {
if (res.data.code) {
searchUserList.value = res.data.data;
...
...
Please
register
or
login
to post a comment