hookehuyr

fix 直接请求的接口需要补参数

......@@ -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}`;
}
}
......
<!--
* @Date: 2023-11-01 10:18:53
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-07-12 17:43:10
* @LastEditTime: 2024-07-13 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;
......