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
2024-07-06 22:54:14 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1562482752d70f4008d94afaa8ce2ee18a97ed5f
15624827
1 parent
ebcef493
fix 为空可能的报错问题
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
src/views/index.vue
src/views/index.vue
View file @
1562482
<!--
* @Date: 2022-07-18 10:22:22
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-07-0
5 10:44:37
* @LastEditTime: 2024-07-0
6 22:49:28
* @FilePath: /data-table/src/views/index.vue
* @Description: 首页
-->
...
...
@@ -267,7 +267,7 @@ const myForm = ref(null);
const approval_actions = ref([]);
setTimeout(() => {
// 审核操作列表数据
approval_actions.value = formSetting.value.flow_node_action_list.map((item) => { return { name: item.btnText, id: item.id } });
approval_actions.value = formSetting.value.flow_node_action_list
?
.map((item) => { return { name: item.btnText, id: item.id } });
}, 500);
const onApprovalSelect = (item) => {
flow_node_action_id.value = item.id;
...
...
Please
register
or
login
to post a comment