Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
data-table
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
hookehuyr
2025-06-04 18:38:21 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
4249a6838af9822bff132444fd3c8a84957ecfa8
4249a683
1 parent
78c3f9f6
fix 大义工需要传参需求, 把URL所有参数传递到接口里面
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
src/components/GroupField/index.vue
src/views/index.vue
src/components/GroupField/index.vue
View file @
4249a68
<!--
* @Date: 2024-05-27 14:28:57
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 202
4-08-07 18:14:11
* @LastEditTime: 202
5-06-04 18:32:57
* @FilePath: /data-table/src/components/GroupField/index.vue
* @Description: 组集合输入控件
-->
...
...
@@ -31,7 +31,6 @@
<script setup>
import { v4 as uuidv4 } from "uuid";
import { styleColor } from "@/constant.js";
import { queryFormAPI } from "@/api/form.js";
import { useRoute } from "vue-router";
import { createComponentType } from "@/hooks/useComponentType";
import _ from 'lodash';
...
...
src/views/index.vue
View file @
4249a68
<!--
* @Date: 2022-07-18 10:22:22
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2025-06-04 18:
15:14
* @LastEditTime: 2025-06-04 18:
35:50
* @FilePath: /data-table/src/views/index.vue
* @Description: 首页
-->
...
...
@@ -391,7 +391,8 @@ onMounted(async () => {
document
.querySelector("body")
.setAttribute("style", `background-color: ${styleColor.backgroundColor}`);
const { data, flow_process_list, code } = await queryFormAPI({ form_code: $route.query.code, page_type, data_id, flow_node_code, force_back, openid: iframe_openid, x_cycle, volunteer_source }); // flow_node_code 表示随机选择的流程节点的ID
// const { data, flow_process_list, code } = await queryFormAPI({ form_code: $route.query.code, page_type, data_id, flow_node_code, force_back, openid: iframe_openid, x_cycle, volunteer_source }); // flow_node_code 表示随机选择的流程节点的ID
const { data, flow_process_list, code } = await queryFormAPI({ form_code: $route.query.code, ...$route.query }); // flow_node_code 表示随机选择的流程节点的ID
const form_data = data;
// 处理审批意见显示
if (code) {
...
...
Please
register
or
login
to post a comment