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
2022-12-06 17:41:50 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a9649f56c29cf433019ee94595deff7eaa5cfc4b
a9649f56
1 parent
2ffb7db9
fix
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
src/App.vue
src/App.vue
View file @
a9649f5
...
...
@@ -2,7 +2,7 @@
* @Author: hookehuyr hookehuyr@gmail.com
* @Date: 2022-05-26 23:52:36
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2022-12-06 1
6:52:3
3
* @LastEditTime: 2022-12-06 1
7:40:4
3
* @FilePath: /data-table/src/App.vue
* @Description:
-->
...
...
@@ -73,7 +73,7 @@ onMounted(async () => {
// });
// 数据收集设置
const code = getUrlParams(location.href) ? getUrlParams(location.href).code : '';
const { data
, extend
} = await getFormSettingAPI({ form_code: code });
const { data } = await getFormSettingAPI({ form_code: code });
const form_setting = {};
if (data.length) {
data[0].property_list.forEach((prop) => {
...
...
@@ -84,7 +84,7 @@ onMounted(async () => {
? prop["setting_value"]
: prop["setting_value"][0],
};
Object.assign(form_setting, obj,
extend
);
Object.assign(form_setting, obj,
data[0]['extend']
);
});
}
// 缓存表单设置
...
...
Please
register
or
login
to post a comment