Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
imac-vue
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
1730532197@qq.com
2021-12-15 17:14:49 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
92509529be58a5e719c54ea6a05d369bbf5cb237
92509529
1 parent
cbec370a
lwj
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
src/views/systemConfig/userConfig/index.vue
src/views/systemConfig/userConfig/index.vue
View file @
9250952
...
...
@@ -488,12 +488,13 @@
submitForm: function() {
this.$refs["form"].validate(valid => {
if (valid) {
let formdata=JSON.parse(JSON.stringify(this.form));
//是否开启高地价
this.form.highLowPriceFlg =this.form
.highLowPriceFlg?1:0;
formdata.highLowPriceFlg =formdata
.highLowPriceFlg?1:0;
//是否预审
this.form.isNeedRequired =this.form
.isNeedRequired?1:0;
formdata.isNeedRequired =formdata
.isNeedRequired?1:0;
//处理数据
saveOrUpdate(
this.form
).then(response => {
saveOrUpdate(
formdata
).then(response => {
if (response.code === 200) {
this.msgSuccess("保存成功");
this.open = false;
...
...
Please
register
or
login
to post a comment