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-13 19:10:23 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ea2b00ecf1930549c40ceb740ed2c8f722e77bf5
ea2b00ec
1 parent
021286f5
fix
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
src/views/index.vue
src/views/index.vue
View file @
ea2b00e
<!--
* @Date: 2022-07-18 10:22:22
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-07-13 19:
08:45
* @LastEditTime: 2024-07-13 19:
10:13
* @FilePath: /data-table/src/views/index.vue
* @Description: 首页
-->
...
...
@@ -1018,7 +1018,7 @@ const onSubmit = async (values) => {
submitStatus.value = false;
}
} else if (page_type === 'edit') { // 编辑表单提交
// 把historyData历史数据合并到postData.value提交数据里面
//
显示的数据不是完整的数据,
把historyData历史数据合并到postData.value提交数据里面
for (let key in historyData.value) {
if (!(key in postData.value)) {
postData.value[key] = historyData.value[key];
...
...
@@ -1045,7 +1045,7 @@ const onSubmit = async (values) => {
submitStatus.value = false;
}
} else if (page_type === 'flow') { // 流程表单提交
// 把historyData历史数据合并到postData.value提交数据里面
//
显示的数据不是完整的数据,
把historyData历史数据合并到postData.value提交数据里面
for (let key in historyData.value) {
if (!(key in postData.value)) {
postData.value[key] = historyData.value[key];
...
...
Please
register
or
login
to post a comment